blob: c33a45f99b8d3f38959f1bf549741c81ede7d4b7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<?php
/**
* Button area for showing the add widgets panel
*/
?>
<div class="elgg-widget-add-control">
<?php
echo elgg_view('output/url', array(
'href' => '#widgets-add-panel',
'text' => elgg_echo('widgets:add'),
'class' => 'elgg-button elgg-button-action',
'rel' => 'toggle',
'is_trusted' => true,
));
?>
</div>
|