diff options
| author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-11-22 23:29:32 +0000 | 
|---|---|---|
| committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-11-22 23:29:32 +0000 | 
| commit | 64aac7499efec62ba1da5f5b533042d3365cc50f (patch) | |
| tree | 1d92da12119e3b2502b354f92ba505eb798eda2c /engine/classes | |
| parent | da4c15449dd48b3135ac14924e04c88bed8da427 (diff) | |
| download | elgg-64aac7499efec62ba1da5f5b533042d3365cc50f.tar.gz elgg-64aac7499efec62ba1da5f5b533042d3365cc50f.tar.bz2 | |
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
Diffstat (limited to 'engine/classes')
| -rw-r--r-- | engine/classes/ElggSite.php | 10 | 
1 files changed, 8 insertions, 2 deletions
| 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; | 
