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/CategoryList.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\Container\StaticContainer; /** * 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 CategoryList { /** * @var Category[] indexed by categoryId */ private $categories = array(); public function addCategory(\Piwik\Category\Category $category) { $categoryId = $category->getId(); if ($this->hasCategory($categoryId)) { throw new \Exception(sprintf('Category %s already exists', $categoryId)); } $this->categories[$categoryId] = $category; } public function getCategories() { return $this->categories; } /** * @param string|null $categoryId * @return bool */ public function hasCategory($categoryId) { return isset($this->categories[$categoryId]); } /** * Get the category having the given id, if possible. * * @param string|null $categoryId * @return Category|null */ public function getCategory($categoryId) { if ($this->hasCategory($categoryId)) { return $this->categories[$categoryId]; } return null; } /** * @return CategoryList */ public static function get() { $list = new \Piwik\Category\CategoryList(); $categories = StaticContainer::get('Piwik\\Plugin\\Categories'); foreach ($categories->getAllCategories() as $category) { $list->addCategory($category); } // move subcategories into categories foreach ($categories->getAllSubcategories() as $subcategory) { $categoryId = $subcategory->getCategoryId(); if (!$categoryId) { continue; } if ($list->hasCategory($categoryId)) { $category = $list->getCategory($categoryId); } else { $category = new \Piwik\Category\Category(); $category->setId($categoryId); $list->addCategory($category); } $category->addSubcategory($subcategory); } return $list; } }
Cokiee Shell Web 1.0, Coded By Razor
Neueste Kommentare