diff options
| author | Sem <sembrestels@riseup.net> | 2014-01-22 04:05:47 +0100 | 
|---|---|---|
| committer | Sem <sembrestels@riseup.net> | 2014-01-22 04:05:47 +0100 | 
| commit | 68614b769f4ae4f28c3f395f47b68baba7c48c64 (patch) | |
| tree | 2c5a744a3859d27883f92b72aef9cf81f1a947d0 /engine/lib/deprecated-1.8.php | |
| parent | 69e2d8c5d8732042c9319aef1fdea45a82b63e42 (diff) | |
| parent | c0295c275d6edbca6c6c8bb51dc199150d0d5fc3 (diff) | |
| download | elgg-68614b769f4ae4f28c3f395f47b68baba7c48c64.tar.gz elgg-68614b769f4ae4f28c3f395f47b68baba7c48c64.tar.bz2 | |
Merge branch 'release/1.8.1'
Diffstat (limited to 'engine/lib/deprecated-1.8.php')
| -rw-r--r-- | engine/lib/deprecated-1.8.php | 66 | 
1 files changed, 56 insertions, 10 deletions
| diff --git a/engine/lib/deprecated-1.8.php b/engine/lib/deprecated-1.8.php index 4b9d41543..91068d047 100644 --- a/engine/lib/deprecated-1.8.php +++ b/engine/lib/deprecated-1.8.php @@ -87,7 +87,7 @@ function list_entities_from_access_id($access_id, $entity_type = "", $entity_sub  	elgg_deprecated_notice("All list_entities* functions were deprecated in 1.8.  Use elgg_list_entities* instead.", 1.8);  	echo elgg_list_entities_from_access_id(array('access_id' => $access_id, -		'types' => $entity_type, 'subtypes' => $entity_subtype, 'owner_guids' => $owner_guid, +		'type' => $entity_type, 'subtype' => $entity_subtype, 'owner_guids' => $owner_guid,  		'limit' => $limit, 'full_view' => $fullview, 'list_type_toggle' => $listtypetoggle,  		'pagination' => $pagination,));  } @@ -1314,8 +1314,8 @@ function list_entities_from_metadata($meta_name, $meta_value = "", $entity_type  	$options = array(  		'metadata_name' => $meta_name,  		'metadata_value' => $meta_value, -		'types' => $entity_type, -		'subtypes' => $entity_subtype, +		'type' => $entity_type, +		'subtype' => $entity_subtype,  		'limit' => $limit,  		'offset' => $offset,  		'count' => TRUE, @@ -2120,8 +2120,8 @@ $fullview = true, $listtypetoggle = false, $pagination = true, $order_by = '') {  		'relationship' => $relationship,  		'relationship_guid' => $relationship_guid,  		'inverse_relationship' => $inverse_relationship, -		'types' => $type, -		'subtypes' => $subtype, +		'type' => $type, +		'subtype' => $subtype,  		'owner_guid' => $owner_guid,  		'order_by' => $order_by,  		'limit' => $limit, @@ -2566,9 +2566,9 @@ $owner_guid = "", $owner_relationship = "") {  				'relationship' => $owner_relationship,  				'relationship_guid' => $owner_guid[0],  				'inverse_relationship' => FALSE, -				'types' => 'user', -				'subtypes' => $subtype, -				'limit' => 9999)) +				'type' => 'user', +				'subtype' => $subtype, +				'limit' => false))  			) {  				$friendsarray = array(); @@ -2721,8 +2721,8 @@ function get_site_collections($site_guid, $subtype = "", $limit = 10, $offset =  		'relationship' => 'member_of_site',  		'relationship_guid' => $site_guid,  		'inverse_relationship' => TRUE, -		'types' => 'collection', -		'subtypes' => $subtype, +		'type' => 'collection', +		'subtype' => $subtype,  		'limit' => $limit,  		'offset' => $offset  	)); @@ -3414,6 +3414,7 @@ function list_annotations($entity_guid, $name = "", $limit = 25, $asc = true) {   * @param unknown_type $timeupper   * @param unknown_type $calculation   * @internal Don't use this at all. + * @deprecated 1.8 Use elgg_get_annotations()   */  function elgg_deprecated_annotation_calculation($entity_guid = 0, $entity_type = "", $entity_subtype = "",  $name = "", $value = "", $value_type = "", $owner_guid = 0, $timelower = 0, @@ -4667,6 +4668,7 @@ function display_widget(ElggObject $widget) {   *   * @param ElggEntity $entity   * @return int Number of comments + * @deprecated 1.8 Use ElggEntity->countComments()   */  function elgg_count_comments($entity) {  	elgg_deprecated_notice('elgg_count_comments() is deprecated by ElggEntity->countComments()', 1.8); @@ -4772,3 +4774,47 @@ function default_page_handler($page, $handler) {  	return FALSE;  } + +/** + * Invalidate this class's entry in the cache. + * + * @param int $guid The entity guid + * + * @return void + * @access private + * @deprecated 1.8 + */ +function invalidate_cache_for_entity($guid) { +	elgg_deprecated_notice('invalidate_cache_for_entity() is a private function and should not be used.', 1.8); +	_elgg_invalidate_cache_for_entity($guid); +} + +/** + * Cache an entity. + * + * Stores an entity in $ENTITY_CACHE; + * + * @param ElggEntity $entity Entity to cache + * + * @return void + * @access private + * @deprecated 1.8 + */ +function cache_entity(ElggEntity $entity) { +	elgg_deprecated_notice('cache_entity() is a private function and should not be used.', 1.8); +	_elgg_cache_entity($entity); +} + +/** + * Retrieve a entity from the cache. + * + * @param int $guid The guid + * + * @return ElggEntity|bool false if entity not cached, or not fully loaded + * @access private + * @deprecated 1.8 + */ +function retrieve_cached_entity($guid) { +	elgg_deprecated_notice('retrieve_cached_entity() is a private function and should not be used.', 1.8); +	return _elgg_retrieve_cached_entity($guid); +} | 
