From 64aac7499efec62ba1da5f5b533042d3365cc50f Mon Sep 17 00:00:00 2001 From: cash Date: Mon, 22 Nov 2010 23:29:32 +0000 Subject: Fixes #2488 "return" was missing in ElggSite::getObjects() (also updated some documentation) git-svn-id: http://code.elgg.org/elgg/trunk@7423 36083f99-b078-4883-b0ff-0f9b5a30f544 --- engine/classes/ElggSite.php | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'engine/classes/ElggSite.php') diff --git a/engine/classes/ElggSite.php b/engine/classes/ElggSite.php index aa94b9fd2..68a720bfe 100644 --- a/engine/classes/ElggSite.php +++ b/engine/classes/ElggSite.php @@ -277,6 +277,9 @@ class ElggSite extends ElggEntity { /** * Returns an array of ElggObject entities that belong to the site. * + * @warning This only returns objects that have been explicitly added to the + * site through addObject() + * * @param string $subtype Entity subtype * @param int $limit Limit * @param int $offset Offset @@ -284,7 +287,7 @@ class ElggSite extends ElggEntity { * @return array */ public function getObjects($subtype = "", $limit = 10, $offset = 0) { - get_site_objects($this->getGUID(), $subtype, $limit, $offset); + return get_site_objects($this->getGUID(), $subtype, $limit, $offset); } /** @@ -317,9 +320,10 @@ class ElggSite extends ElggEntity { * @param int $offset Offset * * @return unknown - * @todo Unimplemented + * @deprecated 1.8 Was never implemented */ public function getCollections($subtype = "", $limit = 10, $offset = 0) { + elgg_deprecated_notice("ElggSite::getCollections() is deprecated", 1.8); get_site_collections($this->getGUID(), $subtype, $limit, $offset); } @@ -348,6 +352,7 @@ class ElggSite extends ElggEntity { * @link http://docs.elgg.org/Tutorials/WalledGarden * * @return void + * @since 1.8.0 */ public function checkWalledGarden() { global $CONFIG; @@ -371,6 +376,7 @@ class ElggSite extends ElggEntity { * @param string $url Defaults to the current URL. * * @return bool + * @since 1.8.0 */ public function isPublicPage($url = '') { global $CONFIG; -- cgit v1.2.3