mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-26 13:44:19 +01:00
- Add ObjectFactory for ObjectDetails, ObjectCard, ... - Update SCSS files to integrate its components Note: A big part of the CSS is hardcoded in cmdbAbstract for now as we still need to discuss / work on the migration of the cmdbAbstract APIs (DisplayBareHeader, DisplayBareProperties, ...)
17 lines
424 B
PHP
17 lines
424 B
PHP
<?php
|
|
/*
|
|
* @copyright Copyright (C) 2010-2020 Combodo SARL
|
|
* @license http://opensource.org/licenses/AGPL-3.0
|
|
*/
|
|
|
|
namespace Combodo\iTop\Application\UI\Layout\Object;
|
|
|
|
|
|
use Combodo\iTop\Application\UI\Component\Panel\Panel;
|
|
|
|
class ObjectDetails extends Panel
|
|
{
|
|
// Overloaded constants
|
|
public const BLOCK_CODE = 'ibo-object-details';
|
|
public const HTML_TEMPLATE_REL_PATH = 'layouts/object/object-details/layout';
|
|
} |