diff options
Diffstat (limited to 'engine/classes')
54 files changed, 59 insertions, 59 deletions
| diff --git a/engine/classes/APIException.php b/engine/classes/APIException.php index 377538c36..b6e1c347b 100644 --- a/engine/classes/APIException.php +++ b/engine/classes/APIException.php @@ -8,4 +8,4 @@   * @package    Elgg.Core   * @subpackage Exceptions.Stub   */ -class APIException extends Exception {}
\ No newline at end of file +class APIException extends Exception {} diff --git a/engine/classes/CallException.php b/engine/classes/CallException.php index 02c580a52..22b8f14f5 100644 --- a/engine/classes/CallException.php +++ b/engine/classes/CallException.php @@ -7,4 +7,4 @@   * @package    Elgg.Core   * @subpackage Exceptions.Stub   */ -class CallException extends Exception {}
\ No newline at end of file +class CallException extends Exception {} diff --git a/engine/classes/ClassNotFoundException.php b/engine/classes/ClassNotFoundException.php index 5170b5333..6a9bcd327 100644 --- a/engine/classes/ClassNotFoundException.php +++ b/engine/classes/ClassNotFoundException.php @@ -7,4 +7,4 @@   * @package    Elgg.Core   * @subpackage Exceptions   */ -class ClassNotFoundException extends ClassException {}
\ No newline at end of file +class ClassNotFoundException extends ClassException {} diff --git a/engine/classes/CronException.php b/engine/classes/CronException.php index 3604c21b9..86370ef31 100644 --- a/engine/classes/CronException.php +++ b/engine/classes/CronException.php @@ -7,4 +7,4 @@   * @package    Elgg   * @subpackage Exceptions.Stub   */ -class CronException extends Exception {}
\ No newline at end of file +class CronException extends Exception {} diff --git a/engine/classes/ElggAccess.php b/engine/classes/ElggAccess.php index 68607962b..6f8d9bb4b 100644 --- a/engine/classes/ElggAccess.php +++ b/engine/classes/ElggAccess.php @@ -63,4 +63,4 @@ class ElggAccess {  		return $prev;  	} -}
\ No newline at end of file +} diff --git a/engine/classes/ElggAnnotation.php b/engine/classes/ElggAnnotation.php index 913d909c5..10f4269cf 100644 --- a/engine/classes/ElggAnnotation.php +++ b/engine/classes/ElggAnnotation.php @@ -104,4 +104,4 @@ class ElggAnnotation extends ElggExtender {  	public function getObjectFromID($id) {  		return get_annotation($id);  	} -}
\ No newline at end of file +} diff --git a/engine/classes/ElggCache.php b/engine/classes/ElggCache.php index 549772d6d..2e697e0bb 100644 --- a/engine/classes/ElggCache.php +++ b/engine/classes/ElggCache.php @@ -239,4 +239,4 @@ abstract class ElggCache implements  	function offsetExists($offset) {  		return isset($this->$offset);  	} -}
\ No newline at end of file +} diff --git a/engine/classes/ElggData.php b/engine/classes/ElggData.php index 5e1130349..3470ee1cf 100644 --- a/engine/classes/ElggData.php +++ b/engine/classes/ElggData.php @@ -302,4 +302,4 @@ abstract class ElggData implements  	public function offsetExists($offset) {  		return array_key_exists($offset, $this->attributes);  	} -}
\ No newline at end of file +} diff --git a/engine/classes/ElggDiskFilestore.php b/engine/classes/ElggDiskFilestore.php index 774054842..11b2bd947 100644 --- a/engine/classes/ElggDiskFilestore.php +++ b/engine/classes/ElggDiskFilestore.php @@ -202,7 +202,7 @@ class ElggDiskFilestore extends ElggFilestore {  	public function getFilenameOnFilestore(ElggFile $file) {  		$owner = $file->getOwnerEntity();  		if (!$owner) { -			$owner = get_loggedin_user(); +			$owner = elgg_get_logged_in_user_entity();  		}  		if ((!$owner) || (!$owner->username)) { @@ -396,4 +396,4 @@ class ElggDiskFilestore extends ElggFilestore {  		return false;  	} -}
\ No newline at end of file +} diff --git a/engine/classes/ElggEntity.php b/engine/classes/ElggEntity.php index 13b08a122..cf716b37d 100644 --- a/engine/classes/ElggEntity.php +++ b/engine/classes/ElggEntity.php @@ -80,8 +80,8 @@ abstract class ElggEntity extends ElggData implements  		$this->attributes['type'] = NULL;  		$this->attributes['subtype'] = NULL; -		$this->attributes['owner_guid'] = get_loggedin_userid(); -		$this->attributes['container_guid'] = get_loggedin_userid(); +		$this->attributes['owner_guid'] = elgg_get_logged_in_user_guid(); +		$this->attributes['container_guid'] = elgg_get_logged_in_user_guid();  		$this->attributes['site_guid'] = NULL;  		$this->attributes['access_id'] = ACCESS_PRIVATE; @@ -1368,7 +1368,7 @@ abstract class ElggEntity extends ElggData implements  		$this->attributes['subtype'] = $data->getAttribute('subclass');  		// Set owner -		$this->attributes['owner_guid'] = get_loggedin_userid(); // Import as belonging to importer. +		$this->attributes['owner_guid'] = elgg_get_logged_in_user_guid(); // Import as belonging to importer.  		// Set time  		$this->attributes['time_created'] = strtotime($data->getAttribute('published')); @@ -1445,4 +1445,4 @@ abstract class ElggEntity extends ElggData implements  		return $entity_tags;  	} -}
\ No newline at end of file +} diff --git a/engine/classes/ElggFileCache.php b/engine/classes/ElggFileCache.php index c27e9aa32..8304372dc 100644 --- a/engine/classes/ElggFileCache.php +++ b/engine/classes/ElggFileCache.php @@ -208,4 +208,4 @@ class ElggFileCache extends ElggCache {  			}  		}  	} -}
\ No newline at end of file +} diff --git a/engine/classes/ElggFilestore.php b/engine/classes/ElggFilestore.php index 61ce167d0..16430feac 100644 --- a/engine/classes/ElggFilestore.php +++ b/engine/classes/ElggFilestore.php @@ -136,4 +136,4 @@ abstract class ElggFilestore {  	 * @return bool  	 */  	abstract public function exists(ElggFile $file); -}
\ No newline at end of file +} diff --git a/engine/classes/ElggGroup.php b/engine/classes/ElggGroup.php index 81c1db138..c709eb3a6 100644 --- a/engine/classes/ElggGroup.php +++ b/engine/classes/ElggGroup.php @@ -285,7 +285,7 @@ class ElggGroup extends ElggEntity  	 */  	public function isMember($user = 0) {  		if (!($user instanceof ElggUser)) { -			$user = get_loggedin_user(); +			$user = elgg_get_logged_in_user_entity();  		}  		if (!($user instanceof ElggUser)) {  			return false; @@ -380,4 +380,4 @@ class ElggGroup extends ElggEntity  			'description',  		));  	} -}
\ No newline at end of file +} diff --git a/engine/classes/ElggHMACCache.php b/engine/classes/ElggHMACCache.php index 8d994d013..c2f468815 100644 --- a/engine/classes/ElggHMACCache.php +++ b/engine/classes/ElggHMACCache.php @@ -96,4 +96,4 @@ class ElggHMACCache extends ElggCache {  		delete_data("DELETE from {$CONFIG->dbprefix}hmac_cache where ts<$expires");  	} -}
\ No newline at end of file +} diff --git a/engine/classes/ElggMetadata.php b/engine/classes/ElggMetadata.php index 12e458629..1c72b1bf0 100644 --- a/engine/classes/ElggMetadata.php +++ b/engine/classes/ElggMetadata.php @@ -106,4 +106,4 @@ class ElggMetadata extends ElggExtender {  	public function getObjectFromID($id) {  		return get_metadata($id);  	} -}
\ No newline at end of file +} diff --git a/engine/classes/ElggObject.php b/engine/classes/ElggObject.php index 1d15bb305..c47cd217f 100644 --- a/engine/classes/ElggObject.php +++ b/engine/classes/ElggObject.php @@ -184,4 +184,4 @@ class ElggObject extends ElggEntity {  			'description',  		));  	} -}
\ No newline at end of file +} diff --git a/engine/classes/ElggPlugin.php b/engine/classes/ElggPlugin.php index c682319e3..b82e92fba 100644 --- a/engine/classes/ElggPlugin.php +++ b/engine/classes/ElggPlugin.php @@ -818,4 +818,4 @@ class ElggPlugin extends ElggObject {  			return remove_entity_relationship($this->guid, 'active_plugin', $site->guid);  		}  	} -}
\ No newline at end of file +} diff --git a/engine/classes/ElggPluginManifest.php b/engine/classes/ElggPluginManifest.php index bef099dcd..fcd0094c4 100644 --- a/engine/classes/ElggPluginManifest.php +++ b/engine/classes/ElggPluginManifest.php @@ -655,4 +655,4 @@ class ElggPluginManifest {  		return $return;  	} -}
\ No newline at end of file +} diff --git a/engine/classes/ElggPluginManifestParser.php b/engine/classes/ElggPluginManifestParser.php index dce46cbb4..b0480d4d8 100644 --- a/engine/classes/ElggPluginManifestParser.php +++ b/engine/classes/ElggPluginManifestParser.php @@ -99,4 +99,4 @@ abstract class ElggPluginManifestParser {  	 * @return bool  	 */  	abstract public function parse(); -}
\ No newline at end of file +} diff --git a/engine/classes/ElggPluginManifestParser17.php b/engine/classes/ElggPluginManifestParser17.php index 0ca2d6511..5658ee804 100644 --- a/engine/classes/ElggPluginManifestParser17.php +++ b/engine/classes/ElggPluginManifestParser17.php @@ -79,4 +79,4 @@ class ElggPluginManifestParser17 extends ElggPluginManifestParser {  		return false;  	} -}
\ No newline at end of file +} diff --git a/engine/classes/ElggPluginManifestParser18.php b/engine/classes/ElggPluginManifestParser18.php index c74b23e32..38734f6b4 100644 --- a/engine/classes/ElggPluginManifestParser18.php +++ b/engine/classes/ElggPluginManifestParser18.php @@ -94,4 +94,4 @@ class ElggPluginManifestParser18 extends ElggPluginManifestParser {  		return true;  	} -}
\ No newline at end of file +} diff --git a/engine/classes/ElggPluginPackage.php b/engine/classes/ElggPluginPackage.php index cc23dcf21..7b033a9d8 100644 --- a/engine/classes/ElggPluginPackage.php +++ b/engine/classes/ElggPluginPackage.php @@ -595,4 +595,4 @@ class ElggPluginPackage {  		return $this->id;  	} -}
\ No newline at end of file +} diff --git a/engine/classes/ElggRelationship.php b/engine/classes/ElggRelationship.php index 0faaf875e..31ef73adb 100644 --- a/engine/classes/ElggRelationship.php +++ b/engine/classes/ElggRelationship.php @@ -220,4 +220,4 @@ class ElggRelationship extends ElggData implements  		return $this->relationship;  	} -}
\ No newline at end of file +} diff --git a/engine/classes/ElggSession.php b/engine/classes/ElggSession.php index 8a3bed84a..13a33736c 100644 --- a/engine/classes/ElggSession.php +++ b/engine/classes/ElggSession.php @@ -148,4 +148,4 @@ class ElggSession implements ArrayAccess {  	function del($key) {  		return $this->offsetUnset($key);  	} -}
\ No newline at end of file +} diff --git a/engine/classes/ElggSharedMemoryCache.php b/engine/classes/ElggSharedMemoryCache.php index 6d6a3d625..f5f11d2c7 100644 --- a/engine/classes/ElggSharedMemoryCache.php +++ b/engine/classes/ElggSharedMemoryCache.php @@ -37,4 +37,4 @@ abstract class ElggSharedMemoryCache extends ElggCache {  	public function getNamespace() {  		return $this->namespace;  	} -}
\ No newline at end of file +} diff --git a/engine/classes/ElggSite.php b/engine/classes/ElggSite.php index 6ab6a9aef..0237421e0 100644 --- a/engine/classes/ElggSite.php +++ b/engine/classes/ElggSite.php @@ -357,7 +357,7 @@ class ElggSite extends ElggEntity {  	public function checkWalledGarden() {  		global $CONFIG; -		if ($CONFIG->walled_garden && !isloggedin()) { +		if ($CONFIG->walled_garden && !elgg_is_logged_in()) {  			// hook into the index system call at the highest priority  			elgg_register_plugin_hook_handler('index', 'system', 'elgg_walled_garden_index', 1); diff --git a/engine/classes/ElggStaticVariableCache.php b/engine/classes/ElggStaticVariableCache.php index a846ab60f..787d35a32 100644 --- a/engine/classes/ElggStaticVariableCache.php +++ b/engine/classes/ElggStaticVariableCache.php @@ -93,4 +93,4 @@ class ElggStaticVariableCache extends ElggSharedMemoryCache {  		ElggStaticVariableCache::$__cache[$namespace] = array();  	} -}
\ No newline at end of file +} diff --git a/engine/classes/ElggUser.php b/engine/classes/ElggUser.php index 333792513..b2303c525 100644 --- a/engine/classes/ElggUser.php +++ b/engine/classes/ElggUser.php @@ -307,7 +307,7 @@ class ElggUser extends ElggEntity  	 * @return true|false  	 */  	function isFriend() { -		return $this->isFriendOf(get_loggedin_userid()); +		return $this->isFriendOf(elgg_get_logged_in_user_guid());  	}  	/** diff --git a/engine/classes/ElggWidget.php b/engine/classes/ElggWidget.php index dae61de68..0eb83913b 100644 --- a/engine/classes/ElggWidget.php +++ b/engine/classes/ElggWidget.php @@ -191,4 +191,4 @@ class ElggWidget extends ElggObject {  		return true;  	} -}
\ No newline at end of file +} diff --git a/engine/classes/ErrorResult.php b/engine/classes/ErrorResult.php index d4766b3d2..afad4c740 100644 --- a/engine/classes/ErrorResult.php +++ b/engine/classes/ErrorResult.php @@ -51,4 +51,4 @@ class ErrorResult extends GenericResult {  		// Return a new error object.  		return new ErrorResult($message, $code, $exception);  	} -}
\ No newline at end of file +} diff --git a/engine/classes/ExportException.php b/engine/classes/ExportException.php index 11781d91b..ae8a8e41b 100644 --- a/engine/classes/ExportException.php +++ b/engine/classes/ExportException.php @@ -6,4 +6,4 @@   * @subpackage Exception   *   */ -class ExportException extends DataFormatException {}
\ No newline at end of file +class ExportException extends DataFormatException {} diff --git a/engine/classes/Exportable.php b/engine/classes/Exportable.php index 1adcd781e..0c1ea5282 100644 --- a/engine/classes/Exportable.php +++ b/engine/classes/Exportable.php @@ -20,4 +20,4 @@ interface Exportable {  	 * @return array  	 */  	public function getExportableValues(); -}
\ No newline at end of file +} diff --git a/engine/classes/Friendable.php b/engine/classes/Friendable.php index 588f9ec5a..c308b4598 100644 --- a/engine/classes/Friendable.php +++ b/engine/classes/Friendable.php @@ -101,4 +101,4 @@ interface Friendable {  	 * @return int  	 */  	public function countObjects($subtype = ""); -}
\ No newline at end of file +} diff --git a/engine/classes/GenericResult.php b/engine/classes/GenericResult.php index bb8a7e76e..e42e924d1 100644 --- a/engine/classes/GenericResult.php +++ b/engine/classes/GenericResult.php @@ -122,4 +122,4 @@ abstract class GenericResult {  		return $result;  	} -}
\ No newline at end of file +} diff --git a/engine/classes/ImportException.php b/engine/classes/ImportException.php index 14287fdf2..909c599d5 100644 --- a/engine/classes/ImportException.php +++ b/engine/classes/ImportException.php @@ -5,4 +5,4 @@   * @package    Elgg.Core   * @subpackage Exception   */ -class ImportException extends DataFormatException {}
\ No newline at end of file +class ImportException extends DataFormatException {} diff --git a/engine/classes/Locatable.php b/engine/classes/Locatable.php index 980256cbb..0977dde99 100644 --- a/engine/classes/Locatable.php +++ b/engine/classes/Locatable.php @@ -46,4 +46,4 @@ interface Locatable {  	 * @return string  	 */  	public function getLocation(); -}
\ No newline at end of file +} diff --git a/engine/classes/Loggable.php b/engine/classes/Loggable.php index 40690f87a..b9e8bf26b 100644 --- a/engine/classes/Loggable.php +++ b/engine/classes/Loggable.php @@ -62,4 +62,4 @@ interface Loggable {  	 * @deprecated 1.8 Use getOwnerGUID() instead  	 */  	public function getObjectOwnerGUID(); -}
\ No newline at end of file +} diff --git a/engine/classes/LoginException.php b/engine/classes/LoginException.php index 9189a6afd..7546fa36f 100644 --- a/engine/classes/LoginException.php +++ b/engine/classes/LoginException.php @@ -7,4 +7,4 @@   * @package    Elgg.Core   * @subpackage Exceptions.Stub   */ -class LoginException extends Exception {}
\ No newline at end of file +class LoginException extends Exception {} diff --git a/engine/classes/Notable.php b/engine/classes/Notable.php index e36699dfc..0c21af27d 100644 --- a/engine/classes/Notable.php +++ b/engine/classes/Notable.php @@ -38,4 +38,4 @@ interface Notable {  	 * @return int  	 */  	public function getCalendarEndTime(); -}
\ No newline at end of file +} diff --git a/engine/classes/ODDEntity.php b/engine/classes/ODDEntity.php index acdfe2f71..ab3a49168 100644 --- a/engine/classes/ODDEntity.php +++ b/engine/classes/ODDEntity.php @@ -103,4 +103,4 @@ class ODDRelationship extends ODD {  	protected function getTagName() {  		return "relationship";  	} -}
\ No newline at end of file +} diff --git a/engine/classes/PluginException.php b/engine/classes/PluginException.php index 56cf29596..a74303695 100644 --- a/engine/classes/PluginException.php +++ b/engine/classes/PluginException.php @@ -8,4 +8,4 @@   * @package    Elgg.Core   * @subpackage Exception   */ -class PluginException extends Exception {}
\ No newline at end of file +class PluginException extends Exception {} diff --git a/engine/classes/RegistrationException.php b/engine/classes/RegistrationException.php index 05af35a01..5246efc25 100644 --- a/engine/classes/RegistrationException.php +++ b/engine/classes/RegistrationException.php @@ -6,4 +6,4 @@   * @package    Elgg.Core   * @subpackage Exceptions   */ -class RegistrationException extends InstallationException {}
\ No newline at end of file +class RegistrationException extends InstallationException {} diff --git a/engine/classes/SuccessResult.php b/engine/classes/SuccessResult.php index f68ddd39e..c8578a2cf 100644 --- a/engine/classes/SuccessResult.php +++ b/engine/classes/SuccessResult.php @@ -31,4 +31,4 @@ class SuccessResult extends GenericResult {  		// Return a new error object.  		return new SuccessResult($result);  	} -}
\ No newline at end of file +} diff --git a/engine/classes/XMLRPCArrayParameter.php b/engine/classes/XMLRPCArrayParameter.php index c0d358d5a..a8edccba7 100644 --- a/engine/classes/XMLRPCArrayParameter.php +++ b/engine/classes/XMLRPCArrayParameter.php @@ -53,4 +53,4 @@ class XMLRPCArrayParameter extends XMLRPCParameter  		return "<array><data>$params</data></array>";  	} -}
\ No newline at end of file +} diff --git a/engine/classes/XMLRPCBase64Parameter.php b/engine/classes/XMLRPCBase64Parameter.php index eb82b24a8..7db0a761c 100644 --- a/engine/classes/XMLRPCBase64Parameter.php +++ b/engine/classes/XMLRPCBase64Parameter.php @@ -25,4 +25,4 @@ class XMLRPCBase64Parameter extends XMLRPCParameter {  	function __toString() {  		return "<value><base64>{$value}</base64></value>";  	} -}
\ No newline at end of file +} diff --git a/engine/classes/XMLRPCBoolParameter.php b/engine/classes/XMLRPCBoolParameter.php index c53d9ad14..607841cb8 100644 --- a/engine/classes/XMLRPCBoolParameter.php +++ b/engine/classes/XMLRPCBoolParameter.php @@ -27,4 +27,4 @@ class XMLRPCBoolParameter extends XMLRPCParameter {  		$code = ($this->value) ? "1" : "0";  		return "<value><boolean>{$code}</boolean></value>";  	} -}
\ No newline at end of file +} diff --git a/engine/classes/XMLRPCCall.php b/engine/classes/XMLRPCCall.php index 3b33f3cee..8eeba0c29 100644 --- a/engine/classes/XMLRPCCall.php +++ b/engine/classes/XMLRPCCall.php @@ -59,4 +59,4 @@ class XMLRPCCall {  		// parameters  		$this->params = $xml->children[1]->children;  	} -}
\ No newline at end of file +} diff --git a/engine/classes/XMLRPCDateParameter.php b/engine/classes/XMLRPCDateParameter.php index 35e02fb37..93bbbd8f5 100644 --- a/engine/classes/XMLRPCDateParameter.php +++ b/engine/classes/XMLRPCDateParameter.php @@ -30,4 +30,4 @@ class XMLRPCDateParameter extends XMLRPCParameter {  		$value = date('c', $this->value);  		return "<value><dateTime.iso8601>{$value}</dateTime.iso8601></value>";  	} -}
\ No newline at end of file +} diff --git a/engine/classes/XMLRPCErrorResponse.php b/engine/classes/XMLRPCErrorResponse.php index c3dbd0373..425c075cc 100644 --- a/engine/classes/XMLRPCErrorResponse.php +++ b/engine/classes/XMLRPCErrorResponse.php @@ -33,4 +33,4 @@ class XMLRPCErrorResponse extends XMLRPCResponse {  	public function __toString() {  		return "<methodResponse><fault><value>{$this->parameters[0]}</value></fault></methodResponse>";  	} -}
\ No newline at end of file +} diff --git a/engine/classes/XMLRPCParameter.php b/engine/classes/XMLRPCParameter.php index 5fac33201..ffbad8082 100644 --- a/engine/classes/XMLRPCParameter.php +++ b/engine/classes/XMLRPCParameter.php @@ -13,4 +13,4 @@ abstract class XMLRPCParameter {  	 */  	function __construct() { } -}
\ No newline at end of file +} diff --git a/engine/classes/XMLRPCResponse.php b/engine/classes/XMLRPCResponse.php index 2a0319431..a6256d385 100644 --- a/engine/classes/XMLRPCResponse.php +++ b/engine/classes/XMLRPCResponse.php @@ -68,4 +68,4 @@ abstract class XMLRPCResponse {  	public function addBoolean($value) {  		$this->addParameter(new XMLRPCBoolParameter($value));  	} -}
\ No newline at end of file +} diff --git a/engine/classes/XMLRPCStructParameter.php b/engine/classes/XMLRPCStructParameter.php index 754c92616..694ddf5df 100644 --- a/engine/classes/XMLRPCStructParameter.php +++ b/engine/classes/XMLRPCStructParameter.php @@ -52,4 +52,4 @@ class XMLRPCStructParameter extends XMLRPCParameter {  		return "<value><struct>$params</struct></value>";  	} -}
\ No newline at end of file +} diff --git a/engine/classes/XMLRPCSuccessResponse.php b/engine/classes/XMLRPCSuccessResponse.php index 2f452ef42..e02e82c5c 100644 --- a/engine/classes/XMLRPCSuccessResponse.php +++ b/engine/classes/XMLRPCSuccessResponse.php @@ -19,4 +19,4 @@ class XMLRPCSuccessResponse extends XMLRPCResponse {  		return "<methodResponse><params>$params</params></methodResponse>";  	} -}
\ No newline at end of file +} diff --git a/engine/classes/XmlElement.php b/engine/classes/XmlElement.php index 64d54e6b0..280bba664 100644 --- a/engine/classes/XmlElement.php +++ b/engine/classes/XmlElement.php @@ -17,4 +17,4 @@ class XmlElement {  	/** Child elements */  	public $children; -};
\ No newline at end of file +}; | 
