diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-03-26 15:51:35 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-03-26 15:51:35 +0000 |
commit | c13f548c43aac69f121363ffafc77a6571a71df1 (patch) | |
tree | 78f24432c882baa759d096c12c0165e86e31217e /engine/lib/widgets.php | |
parent | 34c502d94a0a729c99ad538ecf3e6e4ceeb8353e (diff) | |
download | elgg-c13f548c43aac69f121363ffafc77a6571a71df1.tar.gz elgg-c13f548c43aac69f121363ffafc77a6571a71df1.tar.bz2 |
some light standardization of the core libraries
git-svn-id: http://code.elgg.org/elgg/trunk@8843 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/lib/widgets.php')
-rw-r--r-- | engine/lib/widgets.php | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/engine/lib/widgets.php b/engine/lib/widgets.php index 21fbbcad9..b20f92f74 100644 --- a/engine/lib/widgets.php +++ b/engine/lib/widgets.php @@ -52,9 +52,10 @@ function elgg_get_widgets($user_guid, $context) { /** * Create a new widget instance * - * @param int $entity_guid GUID of entity that owns this widget - * @param string $handler The handler for this widget - * @param int $access_id If not specified, it is set to the default access level + * @param int $owner_guid GUID of entity that owns this widget + * @param string $handler The handler for this widget + * @param string $context The context for this widget + * @param int $access_id If not specified, it is set to the default access level * * @return int|false Widget GUID or false on failure * @since 1.8.0 |