aboutsummaryrefslogtreecommitdiff
path: root/engine/lib/entities.php
diff options
context:
space:
mode:
authorewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-02-15 21:33:59 +0000
committerewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-02-15 21:33:59 +0000
commit1196f73263f4050400604467200a71f2e1f0e3cb (patch)
tree61c251994263d039ae08a29683a476912c524245 /engine/lib/entities.php
parented063396330dd8b9d07d211920fe28c8a2a0b925 (diff)
downloadelgg-1196f73263f4050400604467200a71f2e1f0e3cb.tar.gz
elgg-1196f73263f4050400604467200a71f2e1f0e3cb.tar.bz2
Removed all calls to deprecated register_entity_type
git-svn-id: http://code.elgg.org/elgg/trunk@8261 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/lib/entities.php')
-rw-r--r--engine/lib/entities.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/engine/lib/entities.php b/engine/lib/entities.php
index f74be3446..45d460383 100644
--- a/engine/lib/entities.php
+++ b/engine/lib/entities.php
@@ -1909,7 +1909,7 @@ function elgg_register_entity_type($type, $subtype = null) {
* @param string $subtype The subtype to register (may be blank)
*
* @return true|false Depending on success
- * @see register_entity_type()
+ * @see elgg_register_entity_type()
*/
function unregister_entity_type($type, $subtype) {
global $CONFIG;
@@ -1947,7 +1947,7 @@ function unregister_entity_type($type, $subtype) {
* @param string $type The type of entity (object, site, user, group) or blank for all
*
* @return array|false Depending on whether entities have been registered
- * @see register_entity_type()
+ * @see elgg_register_entity_type()
*/
function get_registered_entity_types($type = null) {
global $CONFIG;
@@ -1970,7 +1970,7 @@ function get_registered_entity_types($type = null) {
}
/**
- * Returns if the entity type and subtype have been registered with {@see register_entity_type()}.
+ * Returns if the entity type and subtype have been registered with {@see elgg_register_entity_type()}.
*
* @param string $type The type of entity (object, site, user, group)
* @param string $subtype The subtype (may be blank)