blob: 2957513b67bb4d3b3e2165624a4f3c051be3d02b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<?php
?>
<div id="widget_add_button">
<?php
$options = array(
'href' => '#',
'text' => elgg_echo('widgets:add'),
'class' => 'action_button',
);
echo elgg_view('output/url', $options);
?>
</div>
|