Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
| Total | |
0.00% |
0 / 1 |
|
0.00% |
0 / 3 |
CRAP | |
0.00% |
0 / 7 |
| TaxonomyController | |
0.00% |
0 / 1 |
|
0.00% |
0 / 3 |
12 | |
0.00% |
0 / 7 |
| addForm | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 3 |
|||
| vocabularyTitle | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 2 |
|||
| termTitle | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 2 |
|||
| <?php | |
| /** | |
| * @file | |
| * Contains \Drupal\taxonomy\Controller\TaxonomyController. | |
| */ | |
| namespace Drupal\taxonomy\Controller; | |
| use Drupal\Component\Utility\Xss; | |
| use Drupal\Core\Controller\ControllerBase; | |
| use Drupal\taxonomy\TermInterface; | |
| use Drupal\taxonomy\VocabularyInterface; | |
| /** | |
| * Provides route responses for taxonomy.module. | |
| */ | |
| class TaxonomyController extends ControllerBase { | |
| /** | |
| * Returns a form to add a new term to a vocabulary. | |
| * | |
| * @param \Drupal\taxonomy\VocabularyInterface $taxonomy_vocabulary | |
| * The vocabulary this term will be added to. | |
| * | |
| * @return array | |
| * The taxonomy term add form. | |
| */ | |
| public function addForm(VocabularyInterface $taxonomy_vocabulary) { | |
| $term = $this->entityManager()->getStorage('taxonomy_term')->create(array('vid' => $taxonomy_vocabulary->id())); | |
| return $this->entityFormBuilder()->getForm($term); | |
| } | |
| /** | |
| * Route title callback. | |
| * | |
| * @param \Drupal\taxonomy\VocabularyInterface $taxonomy_vocabulary | |
| * The vocabulary. | |
| * | |
| * @return string | |
| * The vocabulary label as a render array. | |
| */ | |
| public function vocabularyTitle(VocabularyInterface $taxonomy_vocabulary) { | |
| return ['#markup' => $taxonomy_vocabulary->label(), '#allowed_tags' => Xss::getHtmlTagList()]; | |
| } | |
| /** | |
| * Route title callback. | |
| * | |
| * @param \Drupal\taxonomy\TermInterface $taxonomy_term | |
| * The taxonomy term. | |
| * | |
| * @return array | |
| * The term label as a render array. | |
| */ | |
| public function termTitle(TermInterface $taxonomy_term) { | |
| return ['#markup' => $taxonomy_term->getName(), '#allowed_tags' => Xss::getHtmlTagList()]; | |
| } | |
| } |