TaxonomyMenu.php in Taxonomy menu 8.3
Same filename in this branch
Namespace
Drupal\taxonomy_menu\EntityFile
src/Entity/TaxonomyMenu.phpView source
<?php
namespace Drupal\taxonomy_menu\Entity;
use Drupal\Core\Config\Entity\ConfigEntityBase;
use Drupal\Core\Entity\EntityStorageInterface;
use Drupal\taxonomy\Entity\Term;
use Drupal\taxonomy\TermInterface;
use Drupal\taxonomy_menu\TaxonomyMenuInterface;
/**
* Defines the TaxonomyMenu entity.
*
* @ConfigEntityType(
* id = "taxonomy_menu",
* label = @Translation("Taxonomy menu"),
* handlers = {
* "list_builder" = "Drupal\taxonomy_menu\Controller\TaxonomyMenuListBuilder",
* "form" = {
* "add" = "Drupal\taxonomy_menu\Form\TaxonomyMenuForm",
* "edit" = "Drupal\taxonomy_menu\Form\TaxonomyMenuForm",
* "delete" = "Drupal\Core\Entity\EntityDeleteForm"
* }
* },
* config_prefix = "taxonomy_menu",
* admin_permission = "administer site configuration",
* entity_keys = {
* "id" = "id",
* "label" = "label",
* "uuid" = "uuid"
* },
* links = {
* "edit-form" = "/admin/structure/taxonomy_menu/{taxonomy_menu}",
* "delete-form" = "/admin/structure/taxonomy_menu/{taxonomy_menu}/delete",
* "collection" = "/admin/structure/taxonomy_menu"
* },
* config_export = {
* "id",
* "label",
* "vocabulary",
* "depth",
* "menu",
* "expanded",
* "menu_parent",
* "description_field_name",
* "use_term_weight_order"
* }
* )
*/
class TaxonomyMenu extends ConfigEntityBase implements TaxonomyMenuInterface {
/**
* The TaxonomyMenu ID.
*
* @var string
*/
protected $id;
/**
* The TaxonomyMenu label.
*
* @var string
*/
protected $label;
/**
* The taxonomy vocabulary.
*
* @var string
* The machine name of the vocabulary this entity represents.
*/
protected $vocabulary;
/**
* The depth to generate menu items.
*
* @var int
*/
protected $depth;
/**
* The menu to embed the vocabulary.
*
* @var string
* The machine name of the menu entity.
*/
protected $menu;
/**
* The expanded mode.
*
* @var bool
*/
public $expanded;
/**
* The menu parent.
*
* @var string
*/
protected $menu_parent;
/**
* The name of the description field.
*
* @var string
* The machine name of the field to be used as the description.
*/
protected $description_field_name;
/**
* {@inheritdoc}
*/
public function getVocabulary() {
return $this->vocabulary;
}
/**
* {@inheritdoc}
*/
public function getDepth() {
return $this->depth;
}
/**
* {@inheritdoc}
*/
public function getMenu() {
return $this->menu;
}
/**
* {@inheritdoc}
*/
public function getMenuParent() {
return $this->menu_parent;
}
/**
* Return if menu items should be ordered by the terms weight.
*
* Default value is TRUE.
*
* @return bool
* True or false.
*/
public function useTermWeightOrder() {
return isset($this->use_term_weight_order) ? $this->use_term_weight_order : TRUE;
}
/**
* {@inheritdoc}
*/
public function getDescriptionFieldName() {
return $this->description_field_name;
}
/**
* {@inheritdoc}
*/
public function preSave(EntityStorageInterface $storage) {
parent::preSave($storage);
$this
->addDependency('config', 'system.menu.' . $this
->getMenu());
$this
->addDependency('config', 'taxonomy.vocabulary.' . $this
->getVocabulary());
}
/**
* {@inheritdoc}
*/
public function save() {
// Make sure we don't have any save exceptions before building menu
// definitions.
$return = parent::save();
foreach ($this
->getLinks([], TRUE) as $link_key => $link_def) {
if ($this
->isNew() || !$this
->getMenuLinkManager()
->hasDefinition($link_key)) {
$this
->getMenuLinkManager()
->addDefinition($link_key, $link_def);
}
else {
$this
->getMenuLinkManager()
->updateDefinition($link_key, $link_def);
}
}
return $return;
}
/**
* {@inheritdoc}
*/
public function delete() {
foreach (array_keys($this
->getLinks([], TRUE)) as $link_key) {
$this
->getMenuLinkManager()
->removeDefinition($link_key, FALSE);
}
parent::delete();
}
/**
* {@inheritdoc}
*/
public function getLinks(array $base_plugin_definition = [], $include_base_plugin_id = FALSE) {
/* @var $termStorage \Drupal\taxonomy\TermStorageInterface */
$termStorage = $this
->entityTypeManager()
->getStorage('taxonomy_term');
// Load taxonomy terms for tax menu vocab.
$terms = $termStorage
->loadTree($this
->getVocabulary(), 0, $this
->getDepth() + 1);
$links = [];
// Create menu links for each term in the vocabulary.
foreach ($terms as $term) {
if (!$term instanceof TermInterface) {
$term = Term::load($term->tid);
}
$mlid = $this
->buildMenuPluginId($term, $include_base_plugin_id);
$links[$mlid] = $this
->buildMenuDefinition($term, $base_plugin_definition);
}
return $links;
}
/**
* Get the Menu Link Manager.
*
* @return \Drupal\Core\Menu\MenuLinkManagerInterface
* The Menu Link Manager Service
*/
protected function getMenuLinkManager() {
return \Drupal::service('plugin.manager.menu.link');
}
/**
* {@inheritdoc}
*/
public function buildMenuPluginId(TermInterface $term, $include_base_plugin_id = TRUE) {
$plugin_id = '';
if ($include_base_plugin_id) {
$plugin_id .= 'taxonomy_menu.menu_link:';
}
$plugin_id .= 'taxonomy_menu.menu_link.' . $this
->id() . '.' . $term
->id();
return $plugin_id;
}
/**
* Generate a menu link plugin definition for a taxonomy term.
*
* @param \Drupal\taxonomy\TermInterface $term
* The taxonomy term for which to build a menu link render array.
* @param array $base_plugin_definition
* The base plugin definition to merge the link with.
*
* @return array
* The menu link plugin definition.
*/
protected function buildMenuDefinition(TermInterface $term, array $base_plugin_definition) {
$term_id = $term
->id();
$term_url = $term
->toUrl();
$taxonomy_menu_id = $this
->id();
$menu_id = $this
->getMenu();
// Determine parent link.
// TODO:
// Evaluate use case of multiple parents (should we make many menu items?)
$menu_parent_id = NULL;
/* @var $termStorage \Drupal\taxonomy\TermStorageInterface */
$termStorage = $this
->entityTypeManager()
->getStorage('taxonomy_term');
$parents = $termStorage
->loadParents($term_id);
$parents = array_values($parents);
if (is_array($parents) && count($parents) && !is_null($parents[0]) && $parents[0] != '0') {
$menu_parent_id = $this
->buildMenuPluginId($parents[0]);
}
// Note:
// if menu_parent_id is NULL, it will not update the hierarchy properly.
if (empty($menu_parent_id)) {
$menu_parent_id = str_replace($this
->getMenu() . ':', '', $this
->getMenuParent());
}
// TODO: Consider implementing a forced weight based on taxonomy tree.
// Generate link.
$arguments = [
'taxonomy_term' => $term_id,
];
$link = $base_plugin_definition;
$link += [
'id' => $this
->buildMenuPluginId($term),
'title' => $term
->label(),
'description' => $term
->getDescription(),
'menu_name' => $menu_id,
'expanded' => $this->expanded,
'metadata' => [
'taxonomy_menu_id' => $taxonomy_menu_id,
'taxonomy_term_id' => $term_id,
],
'route_name' => $term_url
->getRouteName(),
'route_parameters' => $term_url
->getRouteParameters(),
'load arguments' => $arguments,
'parent' => $menu_parent_id,
'provider' => 'taxonomy_menu',
'class' => 'Drupal\\taxonomy_menu\\Plugin\\Menu\\TaxonomyMenuMenuLink',
];
// Order by terms weight if configured for this taxonomy_menu.
if ($this
->useTermWeightOrder()) {
$link['weight'] = $term
->getWeight();
}
\Drupal::moduleHandler()
->alter('taxonomy_menu_link', $link, $term);
return $link;
}
}
Classes
Name | Description |
---|---|
TaxonomyMenu | Defines the TaxonomyMenu entity. |