PDF rausgenommen

This commit is contained in:
aschwarz
2023-01-23 11:03:31 +01:00
parent 82d562a322
commit a6523903eb
28078 changed files with 4247552 additions and 2 deletions

View File

@@ -0,0 +1,19 @@
<?php
/**
* Piwik - free/libre analytics platform
*
* @link http://piwik.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*
*/
namespace Piwik\Measurable;
use Piwik\Site;
/**
* Provides access to individual measurables.
*/
class Measurable extends Site
{
}

View File

@@ -0,0 +1,59 @@
<?php
/**
* Piwik - free/libre analytics platform
*
* @link http://piwik.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*
*/
namespace Piwik\Measurable;
class Type
{
const ID = '';
protected $name = 'General_Measurable';
protected $namePlural = 'General_Measurables';
protected $description = 'Default measurable type';
protected $howToSetupUrl = '';
public function isType($typeId)
{
// here we should add some point also check whether id matches any extended ID. Eg if
// MetaSites extends Websites, then we expected $metaSite->isType('website') to be true (maybe)
return $this->getId() === $typeId;
}
public function getId()
{
$id = static::ID;
if (empty($id)) {
$message = 'Type %s does not define an ID. Set the ID constant to fix this issue';;
throw new \Exception(sprintf($message, get_called_class()));
}
return $id;
}
public function getDescription()
{
return $this->description;
}
public function getName()
{
return $this->name;
}
public function getNamePlural()
{
return $this->namePlural;
}
public function getHowToSetupUrl()
{
return $this->howToSetupUrl;
}
}

View File

@@ -0,0 +1,58 @@
<?php
/**
* Piwik - free/libre analytics platform
*
* @link http://piwik.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*
*/
namespace Piwik\Measurable\Type;
use Piwik\Container\StaticContainer;
use Piwik\Plugin\Manager as PluginManager;
use Piwik\Measurable\Type;
class TypeManager
{
/**
* @return Type[]
*/
public function getAllTypes()
{
$components = PluginManager::getInstance()->findComponents('Type', '\\Piwik\\Measurable\\Type');
$instances = array();
foreach ($components as $component) {
$instances[] = StaticContainer::get($component);
}
return $instances;
}
public function isExistingType($typeId)
{
foreach ($this->getAllTypes() as $type) {
if ($type->getId() === $typeId) {
return true;
}
}
return false;
}
/**
* @param string $typeId
* @return Type|null
*/
public function getType($typeId)
{
foreach ($this->getAllTypes() as $type) {
if ($type->getId() === $typeId) {
return $type;
}
}
return new Type();
}
}