67 Zeilen
1.5 KiB
PHP
67 Zeilen
1.5 KiB
PHP
|
<?php
|
||
|
/**
|
||
|
* For the full copyright and license information, please view the LICENSE
|
||
|
* file that was distributed with this source code.
|
||
|
*
|
||
|
* https://www.d3data.de
|
||
|
*
|
||
|
* @copyright (C) D3 Data Development (Inh. Thomas Dartsch)
|
||
|
* @author D3 Data Development - Daniel Seifert <info@shopmodule.com>
|
||
|
* @link https://www.oxidmodule.com
|
||
|
*/
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace D3\DebugBar\Application\Models\Collectors;
|
||
|
|
||
|
use DebugBar\DataCollector\DataCollector;
|
||
|
use DebugBar\DataCollector\Renderable;
|
||
|
use OxidEsales\Eshop\Core\ShopVersion;
|
||
|
use OxidEsales\Eshop\Core\Theme;
|
||
|
use OxidEsales\Facts\Facts;
|
||
|
|
||
|
/**
|
||
|
* Collects info about OXID shop
|
||
|
*/
|
||
|
class OxidVersionCollector extends DataCollector implements Renderable
|
||
|
{
|
||
|
/**
|
||
|
* @return string
|
||
|
*/
|
||
|
public function getName()
|
||
|
{
|
||
|
return 'oxidversion';
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return array
|
||
|
*/
|
||
|
public function collect()
|
||
|
{
|
||
|
$facts = new Facts();
|
||
|
$theme = new Theme();
|
||
|
$parentThemeId = $theme->getParent() ? $theme->getParent()->getId() : '--';
|
||
|
|
||
|
return array(
|
||
|
'version' => $facts->getEdition().' '.ShopVersion::getVersion()
|
||
|
);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* {@inheritDoc}
|
||
|
*/
|
||
|
public function getWidgets()
|
||
|
{
|
||
|
$collect = $this->collect();
|
||
|
|
||
|
return [
|
||
|
"oxidversion" => [
|
||
|
"icon" => "shopping-cart",
|
||
|
"tooltip" => 'OXID Version',
|
||
|
"map" => $this->getName().".version",
|
||
|
"default" => ""
|
||
|
],
|
||
|
];
|
||
|
}
|
||
|
}
|