Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
drupal
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
drupal
Commits
4499bc88
Commit
4499bc88
authored
9 years ago
by
Jess
Browse files
Options
Downloads
Patches
Plain Diff
Issue
#2505851
by JeroenT: Remove deprecated function taxonomy_*
parent
8305be48
No related branches found
No related tags found
2 merge requests
!7452
Issue #1797438. HTML5 validation is preventing form submit and not fully...
,
!789
Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
core/modules/taxonomy/taxonomy.module
+0
-63
0 additions, 63 deletions
core/modules/taxonomy/taxonomy.module
with
0 additions
and
63 deletions
core/modules/taxonomy/taxonomy.module
+
0
−
63
View file @
4499bc88
...
...
@@ -308,69 +308,6 @@ function taxonomy_vocabulary_get_names() {
return
$names
;
}
/**
* Finds all parents of a given term ID.
*
* @param $tid
* A taxonomy term ID.
*
* @return
* An array of term objects which are the parents of the term $tid, or an
* empty array if parents are not found.
*
* @deprecated in Drupal 8.x-dev, will be removed before Drupal 8.0.
* Use \Drupal\taxonomy\TermStorageController::loadParents()
*/
function
taxonomy_term_load_parents
(
$tid
)
{
return
\Drupal
::
entityManager
()
->
getStorage
(
'taxonomy_term'
)
->
loadParents
(
$tid
);
}
/**
* Finds all children of a term ID.
*
* @param $tid
* A taxonomy term ID.
*
* @return
* An array of term objects that are the children of the term $tid, or an
* empty array when no children exist.
*
* @deprecated in Drupal 8.x-dev, will be removed before Drupal 8.0.
* Use \Drupal\taxonomy\TermStorageController::loadChildren()
*/
function
taxonomy_term_load_children
(
$tid
)
{
return
\Drupal
::
entityManager
()
->
getStorage
(
'taxonomy_term'
)
->
loadChildren
(
$tid
);
}
/**
* Create a hierarchical representation of a vocabulary.
*
* @param $vid
* The vocabulary ID to generate the tree for.
* @param $parent
* The term ID under which to generate the tree. If 0, generate the tree
* for the entire vocabulary.
* @param $max_depth
* The number of levels of the tree to return. Leave NULL to return all levels.
* @param $load_entities
* If TRUE, a full entity load will occur on the term objects. Otherwise they
* are partial objects queried directly from the {taxonomy_term_field_data}
* table to save execution time and memory consumption when listing large
* numbers of terms. Defaults to FALSE.
*
* @return
* An array of all term objects in the tree. Each term object is extended
* to have "depth" and "parents" attributes in addition to its normal ones.
* Results are statically cached. Term objects will be partial or complete
* depending on the $load_entities parameter.
*
* @deprecated in Drupal 8.x-dev, will be removed before Drupal 8.0.
* Use \Drupal\taxonomy\TermStorageController::loadTree()
*/
function
taxonomy_get_tree
(
$vid
,
$parent
=
0
,
$max_depth
=
NULL
,
$load_entities
=
FALSE
)
{
return
\Drupal
::
entityManager
()
->
getStorage
(
'taxonomy_term'
)
->
loadTree
(
$vid
,
$parent
,
$max_depth
,
$load_entities
);
}
/**
* Try to map a string to an existing term, as for glossary use.
*
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment