Files
iTop/sources/application/UI/Component/Dashlet/DashletComponent.php
2020-10-29 18:06:04 +01:00

22 lines
464 B
PHP

<?php
/**
* @copyright Copyright (C) 2010-2020 Combodo SARL
* @license http://opensource.org/licenses/AGPL-3.0
*/
namespace Combodo\iTop\Application\UI\Component\Dashlet;
use Combodo\iTop\Application\UI\UIBlock;
class DashletComponent extends UIBlock
{
public const BLOCK_CODE = 'ibo-dashlet';
public const HTML_TEMPLATE_REL_PATH = 'components/dashlet/layout';
public function __construct(?string $sId = null)
{
parent::__construct($sId);
}
}