summaryrefslogtreecommitdiff
path: root/modules/taxonomy
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2010-11-20 09:43:43 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2010-11-20 09:43:43 +0000
commited4b74024a7da131d38d973ee5688a950adaf6db (patch)
tree50e676f48ef4a9a24ef8699a361fb2598568b4a7 /modules/taxonomy
parentd54e67002b84b09b5df4c5af5775054d5dedf3aa (diff)
downloadbrdo-ed4b74024a7da131d38d973ee5688a950adaf6db.tar.gz
brdo-ed4b74024a7da131d38d973ee5688a950adaf6db.tar.bz2
#920600 by bojanz, solotandem: Fixed Document the deprecated parameter in entity_load()
Diffstat (limited to 'modules/taxonomy')
-rw-r--r--modules/taxonomy/taxonomy.module13
1 files changed, 10 insertions, 3 deletions
diff --git a/modules/taxonomy/taxonomy.module b/modules/taxonomy/taxonomy.module
index edfa7d42f..e2e99a983 100644
--- a/modules/taxonomy/taxonomy.module
+++ b/modules/taxonomy/taxonomy.module
@@ -1064,14 +1064,21 @@ class TaxonomyVocabularyController extends DrupalDefaultEntityController {
* database access if loaded again during the same page request.
*
* @see entity_load()
+ * @see EntityFieldQuery
*
* @param $tids
- * An array of taxonomy term IDs.
+ * An array of taxonomy term IDs.
* @param $conditions
- * An array of conditions to add to the query.
+ * (deprecated) An associative array of conditions on the {taxonomy_term}
+ * table, where the keys are the database fields and the values are the
+ * values those fields must have. Instead, it is preferable to use
+ * EntityFieldQuery to retrieve a list of entity IDs loadable by
+ * this function.
*
* @return
- * An array of term objects, indexed by tid.
+ * An array of term objects, indexed by tid.
+ *
+ * @todo Remove $conditions in Drupal 8.
*/
function taxonomy_term_load_multiple($tids = array(), $conditions = array()) {
return entity_load('taxonomy_term', $tids, $conditions);