blob: 89e83b09641235227d4ffb23d524e175f78af4c9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<?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',
));
?>
</div>
|