\x89PNG\r\n\x1a\n\x00\x00\x00\x0DIHDR\x00\x00\x00\x01\x00 \x00\x00\x01\x08\x06\x00\x00\x00\x1F\x15\xC4\x89\x00\x00\x00 \x0AIDATx\x9Ccb\x00\x00\x00\x06\x00\x03\x1A\x05\x9D\x00\x00 \x00\x00IEND\xAE\x42\x60\x82
| Path : /var/www/html/ob-wp-eski/core/Plugin/ |
|
B-Con CMD Config cPanel C-Rdp D-Log Info Jump Mass Ransom Symlink vHost Zone-H |
| Current File : /var/www/html/ob-wp-eski/core/Plugin/LogTablesProvider.php |
<?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\Plugin;
use Piwik\Container\StaticContainer;
use Piwik\Tracker\LogTable;
class LogTablesProvider {
/**
* @var Manager
*/
private $pluginManager;
/**
* @var LogTable[]
*/
private $tablesCache;
public function __construct(Manager $pluginManager)
{
$this->pluginManager = $pluginManager;
}
/**
* Get an instance of a specific log table if such a log table exists.
*
* @param string $tableNameWithoutPrefix eg "log_visit"
* @return LogTable|null
*/
public function getLogTable($tableNameWithoutPrefix)
{
foreach ($this->getAllLogTables() as $table) {
if ($table->getName() === $tableNameWithoutPrefix) {
return $table;
}
}
}
/**
* Get all log table instances defined by any activated and loaded plugin. The returned tables are not sorted in
* any order.
* @return LogTable[]
*/
public function getAllLogTables()
{
if (!isset($this->tablesCache)) {
$tables = $this->pluginManager->findMultipleComponents('Tracker', 'Piwik\\Tracker\\LogTable');
$this->tablesCache = array();
foreach ($tables as $table) {
$this->tablesCache[] = StaticContainer::get($table);
}
}
return $this->tablesCache;
}
}