aboutsummaryrefslogtreecommitdiff
path: root/engine/lib/tags.php
diff options
context:
space:
mode:
authorewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-02-01 07:47:49 +0000
committerewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-02-01 07:47:49 +0000
commit84553b0fd0d507d3e8a963deb5cba12d0d5f0b84 (patch)
treee359ea8bd9cc79d3249996d510657d9e752693f6 /engine/lib/tags.php
parente51f9e8699a0443a0942f0a84c30ba3a4df372c1 (diff)
downloadelgg-84553b0fd0d507d3e8a963deb5cba12d0d5f0b84.tar.gz
elgg-84553b0fd0d507d3e8a963deb5cba12d0d5f0b84.tar.bz2
Moved deprecated files from sessions.php - xml.php into deprecation files for 1.7 and 1.8
git-svn-id: http://code.elgg.org/elgg/trunk@7981 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/lib/tags.php')
-rw-r--r--engine/lib/tags.php105
1 files changed, 0 insertions, 105 deletions
diff --git a/engine/lib/tags.php b/engine/lib/tags.php
index ca46a698b..924843a29 100644
--- a/engine/lib/tags.php
+++ b/engine/lib/tags.php
@@ -245,75 +245,6 @@ function elgg_get_tags(array $options = array()) {
}
/**
- * Get an array of tags with weights for use with the output/tagcloud view.
- *
- * @deprecated 1.8 Use elgg_get_tags().
- *
- * @param int $threshold Get the threshold of minimum number of each tags to
- * bother with (ie only show tags where there are more
- * than $threshold occurances)
- * @param int $limit Number of tags to return
- * @param string $metadata_name Optionally, the name of the field you want to grab for
- * @param string $entity_type Optionally, the entity type ('object' etc)
- * @param string $entity_subtype The entity subtype, optionally
- * @param int $owner_guid The GUID of the tags owner, optionally
- * @param int $site_guid Optionally, the site to restrict to (default is the current site)
- * @param int $start_ts Optionally specify a start timestamp for tags used to
- * generate cloud.
- * @param int $end_ts Optionally specify an end timestamp for tags used to generate cloud
- *
- * @return array|false Array of objects with ->tag and ->total values, or false on failure
- */
-function get_tags($threshold = 1, $limit = 10, $metadata_name = "", $entity_type = "object",
-$entity_subtype = "", $owner_guid = "", $site_guid = -1, $start_ts = "", $end_ts = "") {
-
- elgg_deprecated_notice('get_tags() has been replaced by elgg_get_tags()', 1.8);
-
- if (is_array($metadata_name)) {
- return false;
- }
-
- $options = array();
- if ($metadata_name === '') {
- $options['tag_names'] = array();
- } else {
- $options['tag_names'] = array($metadata_name);
- }
-
- $options['threshold'] = $threshold;
- $options['limit'] = $limit;
-
- // rewrite owner_guid to container_guid to emulate old functionality
- $container_guid = $owner_guid;
- if ($container_guid) {
- $options['container_guids'] = $container_guid;
- }
-
- if ($entity_type) {
- $options['type'] = $entity_type;
- }
-
- if ($entity_subtype) {
- $options['subtype'] = $entity_subtype;
- }
-
- if ($site_guid != -1) {
- $options['site_guids'] = $site_guid;
- }
-
- if ($end_ts) {
- $options['created_time_upper'] = $end_ts;
- }
-
- if ($start_ts) {
- $options['created_time_lower'] = $start_ts;
- }
-
- $r = elgg_get_tags($options);
- return $r;
-}
-
-/**
* Returns viewable tagcloud
*
* @see elgg_get_tags
@@ -345,42 +276,6 @@ function elgg_view_tagcloud(array $options = array()) {
}
/**
- * Loads and displays a tagcloud given particular criteria.
- *
- * @deprecated 1.8 use elgg_view_tagcloud()
- *
- * @param int $threshold Get the threshold of minimum number of each tags
- * to bother with (ie only show tags where there are
- * more than $threshold occurances)
- * @param int $limit Number of tags to return
- * @param string $metadata_name Optionally, the name of the field you want to grab for
- * @param string $entity_type Optionally, the entity type ('object' etc)
- * @param string $entity_subtype The entity subtype, optionally
- * @param int $owner_guid The GUID of the tags owner, optionally
- * @param int $site_guid Optionally, the site to restrict to (default is the current site)
- * @param int $start_ts Optionally specify a start timestamp for tags used to
- * generate cloud.
- * @param int $end_ts Optionally specify an end timestamp for tags used to generate
- * cloud.
- *
- * @return string The HTML (or other, depending on view type) of the tagcloud.
- */
-function display_tagcloud($threshold = 1, $limit = 10, $metadata_name = "", $entity_type = "object",
-$entity_subtype = "", $owner_guid = "", $site_guid = -1, $start_ts = "", $end_ts = "") {
-
- elgg_deprecated_notice('display_tagcloud() was deprecated by elgg_view_tagcloud()!', 1.8);
-
- $tags = get_tags($threshold, $limit, $metadata_name, $entity_type,
- $entity_subtype, $owner_guid, $site_guid, $start_ts, $end_ts);
-
- return elgg_view('output/tagcloud', array(
- 'value' => $tags,
- 'type' => $entity_type,
- 'subtype' => $entity_subtype,
- ));
-}
-
-/**
* Registers a metadata name as containing tags for an entity.
* This is required if you are using a non-standard metadata name
* for your tags.