blob: 001ec9c62cdcfcb1b390bc5c2063c28ce520e882 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<?php
function widget_help(&$a, &$o, $conf) {
$o .= "<p>Shows likes<br>Search ";
}
function widget_args(){
return Array("KEY");
}
function widget_content(&$a, &$o, $conf){
$o .= " #TODO# ";
}
|