more comanchisation (I declare this to be a word)

This commit is contained in:
friendica 2013-12-09 00:41:49 -08:00
parent 00f4ee2717
commit d8c632ada2

View File

@ -1,5 +1,18 @@
<?php /** @file */ <?php /** @file */
function list_widgets() {
$widgets = array(
'profile' => t('Displays a full channel profile'),
'tagcloud' => t('Tag cloud of webpage categories'),
'collections' => t('List and filter by collection'),
'suggestions' => t('Show a couple of channel suggestion'),
'follow' => t('Provide a channel follow form')
);
$arr = array('widgets' => $widgets);
call_hooks('list_widgets',$arr);
return $arr['widgets'];
}
function widget_profile($args) { function widget_profile($args) {
$a = get_app(); $a = get_app();