diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-03-19 18:41:01 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-03-19 18:41:01 +0000 |
commit | 75f324233f2658e8f78e23b44777c611615c9351 (patch) | |
tree | 57c2d58dec7c7ff947df4e704c1984b6dfda6cf3 | |
parent | 199b22e79c6c9f6673fc2c65c28fcc2a2078fab3 (diff) | |
download | elgg-75f324233f2658e8f78e23b44777c611615c9351.tar.gz elgg-75f324233f2658e8f78e23b44777c611615c9351.tar.bz2 |
added documentation headers to the core widgets
git-svn-id: http://code.elgg.org/elgg/trunk@8775 36083f99-b078-4883-b0ff-0f9b5a30f544
-rw-r--r-- | views/default/widgets/friends/content.php | 5 | ||||
-rw-r--r-- | views/default/widgets/new_users/content.php | 3 | ||||
-rw-r--r-- | views/default/widgets/online_users/content.php | 3 |
3 files changed, 6 insertions, 5 deletions
diff --git a/views/default/widgets/friends/content.php b/views/default/widgets/friends/content.php index 7e3584b1e..4c5ef5b4a 100644 --- a/views/default/widgets/friends/content.php +++ b/views/default/widgets/friends/content.php @@ -1,14 +1,9 @@ <?php - /** - * Elgg Friends * Friend widget display view * - * @package ElggFriends - * @subpackage Core */ - // owner of the widget $owner = $vars['entity']->getOwnerEntity(); diff --git a/views/default/widgets/new_users/content.php b/views/default/widgets/new_users/content.php index cfa7d8bda..207a67a9d 100644 --- a/views/default/widgets/new_users/content.php +++ b/views/default/widgets/new_users/content.php @@ -1,4 +1,7 @@ <?php +/** + * New users admin widget + */ echo elgg_list_entities(array( 'type' => 'user', diff --git a/views/default/widgets/online_users/content.php b/views/default/widgets/online_users/content.php index e1ff69811..d81ff3705 100644 --- a/views/default/widgets/online_users/content.php +++ b/views/default/widgets/online_users/content.php @@ -1,3 +1,6 @@ <?php +/** + * Online users widget + */ echo $users_online = get_online_users();
\ No newline at end of file |