13 lines
197 B
PHP
13 lines
197 B
PHP
<?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# ";
|
|
} |