Files
iTop/datamodels/2.x/itop-portal-base/portal/src/Brick/ManageBrick.php
odain-cbd 696e2c9565 N°4720 - Remove old unreferenced methods or pages that are @deprecated (#747)
* N°4720 - Remove old unreferenced methods that are @deprecated

* N°4720-Config addson getter/setter removal

* small deprecation removal

* revert @deprecation 3.3 removal: ResizeImageToFit

* small deprecation removal

* revert deprecation 3.3 removal: Config/GSetAddons
2025-09-11 15:52:00 +02:00

1033 lines
28 KiB
PHP

<?php
/**
* Copyright (C) 2013-2024 Combodo SAS
*
* This file is part of iTop.
*
* iTop is free software; you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* iTop is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
*/
namespace Combodo\iTop\Portal\Brick;
use Combodo\iTop\DesignElement;
use Combodo\iTop\Portal\Service\TemplatesProvider\TemplateDefinitionDto;
use Combodo\iTop\Portal\Service\TemplatesProvider\TemplatesRegister;
use DBSearch;
use DOMFormatException;
use Exception;
use MetaModel;
use ModuleDesign;
class ManageBrick extends PortalBrick
{
/** @var string ENUM_ACTION_VIEW */
const ENUM_ACTION_VIEW = 'view';
/** @var string ENUM_ACTION_EDIT */
const ENUM_ACTION_EDIT = 'edit';
/** @var string ENUM_TILE_MODE_TEXT */
const ENUM_TILE_MODE_TEXT = 'text';
/** @var string ENUM_TILE_MODE_BADGE */
const ENUM_TILE_MODE_BADGE = 'badge';
/** @var string ENUM_TILE_MODE_PIE */
const ENUM_TILE_MODE_PIE = 'pie-chart';
/** @var string ENUM_TILE_MODE_BAR */
const ENUM_TILE_MODE_BAR = 'bar-chart';
/** @var string ENUM_TILE_MODE_TOP */
const ENUM_TILE_MODE_TOP = 'top-list';
/** @var string ENUM_DISPLAY_MODE_LIST */
const ENUM_DISPLAY_MODE_LIST = 'list';
/** @var string ENUM_DISPLAY_MODE_PIE */
const ENUM_DISPLAY_MODE_PIE = 'pie-chart';
/** @var string ENUM_DISPLAY_MODE_BAR */
const ENUM_DISPLAY_MODE_BAR = 'bar-chart';
/** @var string ENUM_PAGE_TEMPLATE_PATH_TABLE
* @deprecated since 3.2.1
* */
const ENUM_PAGE_TEMPLATE_PATH_TABLE = 'itop-portal-base/portal/templates/bricks/manage/layout-table.html.twig';
/** @var string ENUM_PAGE_TEMPLATE_PATH_CHART
* @deprecated since 3.2.1
* */
const ENUM_PAGE_TEMPLATE_PATH_CHART = 'itop-portal-base/portal/templates/bricks/manage/layout-chart.html.twig';
/** Overloaded constants */
const DEFAULT_DECORATION_CLASS_HOME = 'fas fa-tag';
const DEFAULT_DECORATION_CLASS_NAVIGATION_MENU = 'fas fa-tag fa-2x';
/**
* @deprecated 3.2.1
*/
const DEFAULT_PAGE_TEMPLATE_PATH = self::ENUM_PAGE_TEMPLATE_PATH_TABLE;
const DEFAULT_DATA_LOADING = self::ENUM_DATA_LOADING_LAZY;
/**
* @deprecated 3.2.1
*/
const DEFAULT_TILE_TEMPLATE_PATH = 'itop-portal-base/portal/templates/bricks/manage/tile-default.html.twig';
const DEFAULT_TILE_CONTROLLER_ACTION = 'Combodo\\iTop\\Portal\\Controller\\ManageBrickController::TileAction';
/** @var string DEFAULT_OQL */
const DEFAULT_OQL = '';
/** @var string DEFAULT_OPENING_MODE */
const DEFAULT_OPENING_MODE = self::ENUM_ACTION_EDIT;
/** @var int DEFAULT_LIST_LENGTH */
const DEFAULT_LIST_LENGTH = 20;
/** @var string DEFAULT_ZLIST_FIELDS */
const DEFAULT_ZLIST_FIELDS = 'list';
/** @var bool DEFAULT_SHOW_TAB_COUNTS */
const DEFAULT_SHOW_TAB_COUNTS = false;
/** @var string DEFAULT_DISPLAY_MODE */
const DEFAULT_DISPLAY_MODE = self::ENUM_DISPLAY_MODE_LIST;
/** @var string DEFAULT_TILE_MODE */
const DEFAULT_TILE_MODE = self::ENUM_TILE_MODE_TEXT;
/** @var int DEFAULT_GROUP_LIMIT */
const DEFAULT_GROUP_LIMIT = 0;
/** @var bool DEFAULT_GROUP_SHOW_OTHERS */
const DEFAULT_GROUP_SHOW_OTHERS = true;
/** @var int DEFAULT_WIDTH */
const DEFAULT_WIDTH = 500;
/** @var array $aDisplayModes */
public static array $aDisplayModes = array(
self::ENUM_DISPLAY_MODE_LIST,
self::ENUM_DISPLAY_MODE_PIE,
self::ENUM_DISPLAY_MODE_BAR,
);
/** @var array $aTileModes */
public static array $aTileModes = array(
self::ENUM_TILE_MODE_TEXT,
self::ENUM_TILE_MODE_BADGE,
self::ENUM_TILE_MODE_PIE,
self::ENUM_TILE_MODE_BAR,
self::ENUM_TILE_MODE_TOP,
);
/** @var array $aDefaultTileData */
private static array $aDefaultTileData = [
self::ENUM_TILE_MODE_BADGE => [
'decorationCssClass' => 'fas fa-tags fa-2x',
'width' => self::DEFAULT_WIDTH,
],
self::ENUM_TILE_MODE_TOP => [
'decorationCssClass' => 'fas fa-list-ol fa-2x',
'width' => self::DEFAULT_WIDTH,
],
self::ENUM_TILE_MODE_PIE => [
'decorationCssClass' => 'fas fa-chart-pie fa-2x',
'width' => 600,
],
self::ENUM_TILE_MODE_TEXT => [
'decorationCssClass' => 'fas fa-tag fa-2x',
'width' => self::DEFAULT_WIDTH,
],
self::ENUM_TILE_MODE_BAR => [
'decorationCssClass' => 'fas fa-chart-bar fa-2x',
'width' => 600,
],
];
/** @var array $aDefaultLayoutData */
private static array $aDefaultLayoutData = [
self::ENUM_DISPLAY_MODE_LIST => [
'need_details' => true,
],
self::ENUM_DISPLAY_MODE_PIE => [
'need_details' => false,
],
self::ENUM_DISPLAY_MODE_BAR => [
'need_details' => false,
],
];
// Overloaded variables
public static $sRouteName = 'p_manage_brick';
/** @var string $sOql */
protected $sOql;
/** @var string $sOpeningMode */
protected $sOpeningMode;
/** @var array $aGrouping */
protected $aGrouping;
/** @var array $aFields */
protected $aFields;
/** @var array $aExportFields */
protected $aExportFields;
/** @var bool $bShowTabCounts */
protected $bShowTabCounts;
/** @var array $aAvailableDisplayModes */
protected $aAvailableDisplayModes = array();
/** @var string $sDefaultDisplayMode */
protected $sDefaultDisplayMode;
/** @var string $sTileMode */
protected $sTileMode;
/** @var int $iGroupLimit */
protected $iGroupLimit;
/** @var bool $bGroupShowOthers */
protected $bGroupShowOthers;
/** @var int $iDefaultListLength */
protected $iDefaultListLength;
/** @inheritdoc */
public static function RegisterTemplates(TemplatesRegister $oTemplatesRegister): void
{
parent::RegisterTemplates($oTemplatesRegister);
$oTemplatesRegister->RegisterTemplates(self::class,
TemplateDefinitionDto::Create('tile', static::TEMPLATES_BASE_PATH . 'manage/tile-default.html.twig'),
TemplateDefinitionDto::Create('tile_badge', static::TEMPLATES_BASE_PATH. 'manage/tile-badge.html.twig'),
TemplateDefinitionDto::Create('tile_chart', static::TEMPLATES_BASE_PATH . 'manage/tile-chart.html.twig'),
TemplateDefinitionDto::Create('tile_top_list', static::TEMPLATES_BASE_PATH . 'manage/tile-top-list.html.twig'),
TemplateDefinitionDto::Create('page', static::TEMPLATES_BASE_PATH . 'manage/layout.html.twig'),
TemplateDefinitionDto::Create('page_table', static::TEMPLATES_BASE_PATH . 'manage/layout-table.html.twig'),
TemplateDefinitionDto::Create('page_chart', static::TEMPLATES_BASE_PATH . 'manage/layout-chart.html.twig'),
TemplateDefinitionDto::Create('mode_chart_bar', static::TEMPLATES_BASE_PATH . 'manage/mode-bar-chart.html.twig', true, self::ENUM_DISPLAY_MODE_BAR),
TemplateDefinitionDto::Create('mode_chart_pie', static::TEMPLATES_BASE_PATH . 'manage/mode-pie-chart.html.twig', true,self::ENUM_DISPLAY_MODE_PIE),
);
}
/**
* ManageBrick constructor.
*/
public function __construct()
{
parent::__construct();
$this->sOql = static::DEFAULT_OQL;
$this->sOpeningMode = static::DEFAULT_OPENING_MODE;
$this->aGrouping = array();
$this->aFields = array();
$this->aExportFields = array();
$this->bShowTabCounts = static::DEFAULT_SHOW_TAB_COUNTS;
$this->sDefaultDisplayMode = static::DEFAULT_DISPLAY_MODE;
$this->sTileMode = static::DEFAULT_TILE_MODE;
$this->iGroupLimit = static::DEFAULT_GROUP_LIMIT;
$this->bGroupShowOthers = static::DEFAULT_GROUP_SHOW_OTHERS;
$this->iDefaultListLength = static::DEFAULT_LIST_LENGTH;
// This is hardcoded for now, we might allow area grouping on another attribute in the future
$this->AddGrouping('areas', array('attribute' => 'finalclass'));
}
/**
* Returns if the $sLayoutMode need objects details for rendering.
*
* @since 3.2.1
*
* @param string $sLayoutMode
*
* @return bool
*/
public function IsDetailsNeeded(string $sLayoutMode): bool
{
return static::$aDefaultLayoutData[$sLayoutMode]['need_details'];
}
/**
* Returns the page template path for the $sDisplayMode
*
* @since 3.2.1
*
* @param string $sDisplayMode
*
* @return string
*/
public function GetPageTemplate(string $sDisplayMode): string
{
return match ($sDisplayMode) {
self::ENUM_DISPLAY_MODE_BAR, self::ENUM_DISPLAY_MODE_PIE => $this->GetTemplatePath('page_chart'),
default => $this->GetTemplatePath('page_table'),
};
}
/**
* Returns the page template path for the $sDisplayMode
* @since 3.2.1
*
* @return string
*/
public function GetTileTemplate(): string
{
return match ($this->GetTileMode()) {
self::ENUM_TILE_MODE_BADGE => $this->GetTemplatePath('tile_badge'),
self::ENUM_TILE_MODE_PIE, self::ENUM_TILE_MODE_BAR => $this->GetTemplatePath('tile_chart'),
self::ENUM_TILE_MODE_TOP => $this->GetTemplatePath('tile_top_list'),
default => $this->GetTemplatePath('tile'),
};
}
/**
* Returns the brick oql
*
* @return string
*/
public function GetOql()
{
return $this->sOql;
}
/**
* Returns the brick's objects opening mode (edit or view)
*
* @return string
*/
public function GetOpeningMode()
{
return $this->sOpeningMode;
}
/**
* Returns the brick grouping
*
* @return array
*/
public function GetGrouping()
{
return $this->aGrouping;
}
/**
* Returns the brick fields to display in the table
*
* @return array
*/
public function GetFields()
{
return $this->aFields;
}
/**
* Returns the brick fields to export
*
* @return array
*/
public function GetExportFields()
{
return $this->aExportFields;
}
/**
* Returns if the brick should display objects count on tabs
*
* @return bool
*/
public function GetShowTabCounts()
{
return $this->bShowTabCounts;
}
/**
* Returns the brick default display mode
*
* @return string
*/
public function GetDefaultDisplayMode()
{
return $this->sDefaultDisplayMode;
}
/**
* Sets the default display mode of the brick
*
* @param string $sDefaultDisplayMode
*
* @return \Combodo\iTop\Portal\Brick\ManageBrick
*/
public function SetDefaultDisplayMode($sDefaultDisplayMode)
{
$this->sDefaultDisplayMode = $sDefaultDisplayMode;
return $this;
}
/**
* Returns the tile mode (display)
*
* @return string
*/
public function GetTileMode()
{
return $this->sTileMode;
}
/**
* @since 3.2.1
*
* @return mixed|string
*/
public function GetDecoration()
{
return static::$aDefaultTileData[$this->sTileMode]['decorationCssClass'];
}
/**
* Sets the tile mode (display)
*
* @param string $sTileMode
*
* @return \Combodo\iTop\Portal\Brick\ManageBrick
*/
public function SetTileMode($sTileMode)
{
$this->sTileMode = $sTileMode;
return $this;
}
/**
* @return mixed
*/
public function GetGroupLimit()
{
return $this->iGroupLimit;
}
/**
* @return mixed
*/
public function ShowGroupOthers()
{
return $this->bGroupShowOthers;
}
/**
* Sets the oql of the brick
*
* @param string $sOql
*
* @return \Combodo\iTop\Portal\Brick\ManageBrick
*/
public function SetOql($sOql)
{
$this->sOql = $sOql;
return $this;
}
/**
* Sets the brick's objects opening mode
*
* @param string $sOpeningMode
*
* @return \Combodo\iTop\Portal\Brick\ManageBrick
*/
public function SetOpeningMode($sOpeningMode)
{
$this->sOpeningMode = $sOpeningMode;
return $this;
}
/**
* Sets the grouping of the brick
*
* @param array $aGrouping
*
* @return \Combodo\iTop\Portal\Brick\ManageBrick
*/
public function SetGrouping($aGrouping)
{
$this->aGrouping = $aGrouping;
return $this;
}
/**
* Sets the fields of the brick
*
* @param array $aFields
*
* @return \Combodo\iTop\Portal\Brick\ManageBrick
*/
public function SetFields($aFields)
{
$this->aFields = $aFields;
return $this;
}
/**
* Sets if the brick should display objects count on tab
*
* @param bool $bShowTabCounts
*
* @return \Combodo\iTop\Portal\Brick\ManageBrick
*/
public function SetShowTabCounts($bShowTabCounts)
{
$this->bShowTabCounts = $bShowTabCounts;
return $this;
}
/**
* Returns the default lists length to display
*
* @return int
*/
public function GetDefaultListLength()
{
return $this->iDefaultListLength;
}
/**
* Sets the default lists length to display
*
* @param int $iDefaultListLength
*
* @return $this
*/
public function SetDefaultListLength($iDefaultListLength) {
$this->iDefaultListLength = $iDefaultListLength;
return $this;
}
/**
* Adds a grouping.
*
* Grouping "tabs" must be of form array("attribute" => value)
*
* @param string $sName (Must be "tabs" or -Not implemented yet, implicit grouping on y axis-)
* @param array $aGrouping
*
* @return \Combodo\iTop\Portal\Brick\ManageBrick
*/
public function AddGrouping($sName, $aGrouping)
{
$this->aGrouping[$sName] = $aGrouping;
// Sorting
if (!$this->IsGroupingByDistinctValues($sName))
{
usort($this->aGrouping[$sName]['groups'], function ($a, $b) {
if ($a['rank'] === $b['rank']) {
return 0;
}
return $a['rank'] > $b['rank'] ? 1 : -1;
});
}
return $this;
}
/**
* Removes a grouping by its name
*
* @param string $sName
*
* @return \Combodo\iTop\Portal\Brick\ManageBrick
*/
public function RemoveGrouping($sName)
{
if (isset($this->aGrouping[$sName]))
{
unset($this->aGrouping[$sName]);
}
return $this;
}
/**
* Adds a field to display from its attribute_code.
*
* @param string $sAttCode
*
* @return \Combodo\iTop\Portal\Brick\ManageBrick
*/
public function AddField($sAttCode)
{
if (!in_array($sAttCode, $this->aFields))
{
$this->aFields[] = $sAttCode;
}
return $this;
}
/**
* Removes a field
*
* @param string $sAttCode
*
* @return \Combodo\iTop\Portal\Brick\ManageBrick
*/
public function RemoveField($sAttCode)
{
if (isset($this->aFields[$sAttCode]))
{
unset($this->aFields[$sAttCode]);
}
return $this;
}
public function AddExportField($sAttCode)
{
if (!in_array($sAttCode, $this->aExportFields))
{
$this->aExportFields[] = $sAttCode;
}
return $this;
}
public function RemoveExportField($sAttCode)
{
if (isset($this->aExportFields[$sAttCode]))
{
unset($this->aExportFields[$sAttCode]);
}
return $this;
}
/**
* Returns if the brick has grouping tabs or not.
*
* @return boolean
*/
public function HasGroupingTabs()
{
return (isset($this->aGrouping['tabs']) && !empty($this->aGrouping['tabs']));
}
/**
* Returns the grouping tabs properties if exists, else returns false.
*
* @return mixed false if there is no grouping named 'tabs', otherwise the array
*/
public function GetGroupingTabs()
{
return (isset($this->aGrouping['tabs'])) ? $this->aGrouping['tabs'] : false;
}
/**
* Returns if the brick has grouping areas or not.
*
* @return boolean
*/
public function HasGroupingAreas()
{
return (isset($this->aGrouping['areas']) && !empty($this->aGrouping['areas']));
}
/**
* Returns the grouping areas properties if exists, else returns false.
*
* @return mixed false if there is no grouping named 'areas', otherwise the array
*/
public function GetGroupingAreas()
{
return (isset($this->aGrouping['areas'])) ? $this->aGrouping['areas'] : false;
}
/**
* @param string $sModeId
*
* @return \Combodo\iTop\Portal\Brick\ManageBrick
*
* @throws \Exception
*/
public function AddAvailableDisplayMode($sModeId)
{
if (!in_array($sModeId, static::$aDisplayModes))
{
throw new Exception('ManageBrick: Display mode "'.$sModeId.'" must be one of the allowed display modes ('.implode(', ',
static::$aDisplayModes).')');
}
$this->aAvailableDisplayModes[] = $sModeId;
return $this;
}
/**
* Removes $sModeId from the list of availables display modes
*
* @param string $sModeId
*
* @return \Combodo\iTop\Portal\Brick\ManageBrick
*/
public function RemoveAvailableDisplayMode($sModeId)
{
if (isset($this->aAvailableDisplayModes[$sModeId]))
{
unset($this->aAvailableDisplayModes[$sModeId]);
}
return $this;
}
/**
* Returns the available display modes for the brick (page, not tile)
*
* @return string[]
*/
public function GetAvailablesDisplayModes()
{
return $this->aAvailableDisplayModes;
}
/**
* Returns true is the groupings $sGroupingName properties exists and is of the form attribute => attribute_code.
* This is supposed to be called by the IsGroupingTabsByDistinctValues / IsGroupingAreasByDistinctValues function.
*
* @param string $sGroupingName
*
* @return boolean
*/
public function IsGroupingByDistinctValues($sGroupingName)
{
return (isset($this->aGrouping[$sGroupingName]) && isset($this->aGrouping[$sGroupingName]['attribute']) && $this->aGrouping[$sGroupingName]['attribute'] !== '');
}
/**
* Returns true is the groupings tabs properties exists and is of the form attribute => attribute_code.
* This is mostly used to know if the tabs are grouped by attribute distinct values or by meta-groups (eg : status
* in ('accepted', 'opened')).
*
* @return boolean
*/
public function IsGroupingTabsByDistinctValues()
{
return $this->IsGroupingByDistinctValues('tabs');
}
/**
* Returns true is the groupings areas properties exists and is of the form attribute => attribute_code.
* This is mostly used to know if the areas are grouped by attribute distinct values or by meta-groups (eg :
* finalclass in ('Server', 'Router')).
*
* @return boolean
*/
public function IsGroupingAreasByDistinctValues()
{
return $this->IsGroupingByDistinctValues('areas');
}
/**
* Load the brick's data from the xml passed as a ModuleDesignElement.
* This is used to set all the brick attributes at once.
*
* @param \Combodo\iTop\DesignElement $oMDElement
*
* @return \Combodo\iTop\Portal\Brick\ManageBrick
*
* @throws \Exception
* @throws \DOMFormatException
* @throws \OQLException
*/
public function LoadFromXml(DesignElement $oMDElement)
{
parent::LoadFromXml($oMDElement);
$bUseListFieldsForExport = false;
// Checking specific elements
/** @var \Combodo\iTop\DesignElement $oBrickSubNode */
foreach ($oMDElement->GetNodes('./*') as $oBrickSubNode)
{
switch ($oBrickSubNode->nodeName)
{
case 'class':
$sClass = $oBrickSubNode->GetText();
if ($sClass === '')
{
throw new DOMFormatException('ManageBrick: class tag is empty. Must contain Classname', null,
null, $oBrickSubNode);
}
$this->SetOql('SELECT '.$sClass);
break;
case 'oql':
$sOql = $oBrickSubNode->GetText();
if ($sOql === '')
{
throw new DOMFormatException('ManageBrick: oql tag is empty. Must contain OQL statement', null,
null, $oBrickSubNode);
}
$this->SetOql($sOql);
break;
case 'opening_mode':
$sOpeningMode = $oBrickSubNode->GetText(static::DEFAULT_OPENING_MODE);
if (!in_array($sOpeningMode, array(static::ENUM_ACTION_VIEW, static::ENUM_ACTION_EDIT)))
{
throw new DOMFormatException('ManageBrick: opening_mode tag value must be edit|view ("'.$sOpeningMode.'" given)',
null, null, $oBrickSubNode);
}
$this->SetOpeningMode($sOpeningMode);
break;
case 'display_modes':
/** @var \Combodo\iTop\DesignElement $oDisplayNode */
foreach ($oBrickSubNode->GetNodes('./*') as $oDisplayNode)
{
switch ($oDisplayNode->nodeName)
{
case 'availables';
/** @var \Combodo\iTop\DesignElement $oModeNode */
foreach ($oDisplayNode->GetNodes('*') as $oModeNode)
{
if (!$oModeNode->hasAttribute('id'))
{
throw new DOMFormatException('ManageBrick: Display mode must have a unique ID attribute',
0, null, $oModeNode);
}
$sModeId = $oModeNode->getAttribute('id');
if (!in_array($sModeId, static::$aDisplayModes))
{
throw new DOMFormatException('ManageBrick: Display mode has an invalid value. Expected '.implode('/',
static::$aDisplayModes.', "'.$sModeId.'" given.'),
null, null, $oModeNode);
}
$this->AddAvailableDisplayMode($sModeId);
}
break;
case 'default':
$this->SetDefaultDisplayMode($oDisplayNode->GetText(static::DEFAULT_DISPLAY_MODE));
break;
case 'tile';
$this->SetTileMode($oDisplayNode->GetText(static::DEFAULT_TILE_MODE));
if($this->sDecorationClassHome === static::DEFAULT_DECORATION_CLASS_HOME){
$this->sDecorationClassHome = static::$aDefaultTileData[$this->GetTileMode()]['decorationCssClass'];
$this->SetDecorationClassNavigationMenu(static::$aDefaultTileData[$this->GetTileMode()]['decorationCssClass']);
$this->SetDecorationClassHome(static::$aDefaultTileData[$this->GetTileMode()]['decorationCssClass']);
$this->SetWidth(static::$aDefaultTileData[$this->GetTileMode()]['width']);
}
break;
}
}
break;
case 'fields':
/** @var \Combodo\iTop\DesignElement $oFieldNode */
foreach ($oBrickSubNode->GetNodes('./field') as $oFieldNode)
{
if (!$oFieldNode->hasAttribute('id'))
{
throw new DOMFormatException('ManageBrick : Field must have a unique ID attribute', 0,
null, $oFieldNode);
}
$this->AddField($oFieldNode->getAttribute('id'));
}
break;
case 'export':
/** @var \Combodo\iTop\DesignElement $oExportNode */
foreach ($oBrickSubNode->GetNodes('./*') as $oExportNode)
{
switch ($oExportNode->nodeName)
{
case 'fields':
/** @var \Combodo\iTop\DesignElement $oFieldNode */
foreach ($oExportNode->GetNodes('./field') as $oFieldNode)
{
if (!$oFieldNode->hasAttribute('id'))
{
throw new DOMFormatException('ManageBrick : Field must have a unique ID attribute',
0,
null, $oFieldNode);
}
$this->AddExportField($oFieldNode->getAttribute('id'));
}
break;
case 'export_default_fields':
$bUseListFieldsForExport = (strtolower($oExportNode->GetText()) === 'true' ? true : false);
break;
}
}
break;
case 'default_list_length':
$iNodeDefaultListLength = (int)$oBrickSubNode->GetText(static::DEFAULT_LIST_LENGTH);
if(!in_array($iNodeDefaultListLength, array(10, 20, 50, -1),true))
{
throw new DOMFormatException(
'ManageBrick : Default list length must be contained in list length options. Expected -1/10/20/50, '.$iNodeDefaultListLength.' given.',
null,
null, $oBrickSubNode
);
}
$this->SetDefaultListLength($iNodeDefaultListLength);
break;
case 'grouping':
// Tabs grouping
/** @var \Combodo\iTop\DesignElement $oGroupingNode */
foreach ($oBrickSubNode->GetNodes('./tabs/*') as $oGroupingNode)
{
switch ($oGroupingNode->nodeName)
{
case 'show_tab_counts';
$bShowTabCounts = ($oGroupingNode->GetText(static::DEFAULT_SHOW_TAB_COUNTS) === 'true') ? true : false;
$this->SetShowTabCounts($bShowTabCounts);
break;
case 'attribute':
$sAttribute = $oGroupingNode->GetText();
if ($sAttribute !== '')
{
$this->AddGrouping('tabs', array('attribute' => $sAttribute));
}
break;
case 'limit':
$iLimit = $oGroupingNode->GetText();
if (is_numeric($iLimit))
{
$this->iGroupLimit = $iLimit;
}
break;
case 'show_others':
$this->bGroupShowOthers = ($oGroupingNode->GetText() === 'true') ? true : false;
break;
case 'groups':
$aGroups = array();
/** @var \Combodo\iTop\DesignElement $oGroupNode */
foreach ($oGroupingNode->GetNodes('./group') as $oGroupNode)
{
if (!$oGroupNode->hasAttribute('id'))
{
throw new DOMFormatException('ManageBrick : Group must have a unique ID attribute',
0, null, $oGroupNode);
}
$sGroupId = $oGroupNode->getAttribute('id');
$aGroup = array();
$aGroup['id'] = $sGroupId; // We don't put the group id as the $aGroups key because the array will be sorted later in AddGrouping, which replace array keys by integer ordered keys
/** @var \Combodo\iTop\DesignElement $oGroupProperty */
foreach ($oGroupNode->GetNodes('*') as $oGroupProperty)
{
switch ($oGroupProperty->nodeName)
{
case 'rank':
$aGroup[$oGroupProperty->nodeName] = (int)$oGroupProperty->GetText(0);
break;
case 'title':
case 'description':
case 'condition':
$aGroup[$oGroupProperty->nodeName] = $oGroupProperty->GetText();
break;
}
}
// Checking constitancy
if (!isset($aGroup['title']) || $aGroup['title'] === '')
{
throw new DOMFormatException('ManageBrick : Group must have a title tag and it must not be empty',
0, null, $oGroupNode);
}
if (!isset($aGroup['condition']) || $aGroup['condition'] === '')
{
throw new DOMFormatException('ManageBrick : Group must have a condition tag and it must not be empty',
0, null, $oGroupNode);
}
$aGroups[] = $aGroup;
}
$this->AddGrouping('tabs', array('groups' => $aGroups));
break;
}
}
break;
case 'templates':
$aTemplatesIds = static::GetTemplatesProviderService()->GetRegister()->GetProviderTemplatesIds(self::class);
/** @var TemplateDefinitionDto $oTemplateDefinition */
foreach ($aTemplatesIds as $sTemplateId) {
$oTemplateNodeList = $oBrickSubNode->GetNodes('template[@id='.ModuleDesign::XPathQuote($sTemplateId).']');
if ($oTemplateNodeList->length > 0) {
/** @var \Combodo\iTop\DesignElement $oTemplateNode */
$oTemplateNode = $oTemplateNodeList->item(0);
$this->SetTemplatePath($sTemplateId, $oTemplateNode->GetText(static::DEFAULT_TILE_TEMPLATE_PATH));
}
}
break;
}
}
// Checking if has an oql
if ($this->GetOql() === '')
{
throw new DOMFormatException('ManageBrick: must have a valid <class|oql> tag', null, null, $oMDElement);
}
// Checking that the brick has at least a display mode
if (count($this->GetAvailablesDisplayModes()) === 0)
{
$this->AddAvailableDisplayMode(static::DEFAULT_DISPLAY_MODE);
}
// Checking that default display mode in among the availables
if (!in_array($this->sDefaultDisplayMode, $this->aAvailableDisplayModes))
{
throw new DOMFormatException('ManageBrick: Default display mode "'.$this->sDefaultDisplayMode.'" must be one of the available display modes ('.implode(', ',
$this->aAvailableDisplayModes).')', null, null, $oMDElement);
}
// Checking that tile mode in among the availables
if (!in_array($this->sTileMode, static::$aTileModes))
{
throw new DOMFormatException('ManageBrick: Tile mode "'.$this->sTileMode.'" must be one of the allowed tile modes ('.implode(', ',
static::$aTileModes).')', null, null, $oMDElement);
}
// Checking if specified fields, if not we put those from the details zlist
if (empty($this->aFields))
{
$sClass = DBSearch::FromOQL($this->GetOql());
$aFields = MetaModel::FlattenZList(MetaModel::GetZListItems($sClass->GetClass(),
static::DEFAULT_ZLIST_FIELDS));
$this->SetFields($aFields);
}
// Default Export Fields
if ($bUseListFieldsForExport)
{
foreach ($this->GetFields() as $sAttCode)
{
$this->AddExportField($sAttCode);
}
}
// Checking the navigation icon
$sDecorationClassNavigationMenu = $this->GetDecorationClassNavigationMenu();
if (empty($sDecorationClassNavigationMenu) && isset(static::$aDefaultTileData[$this->sTileMode]))
{
/** @var string $sDecorationClassNavigationMenu */
$sDecorationClassNavigationMenu = static::$aDefaultTileData[$this->sTileMode]['decorationCssClass'];
if (!empty($sDecorationClassNavigationMenu))
{
$this->SetDecorationClassNavigationMenu($sDecorationClassNavigationMenu);
}
}
$sTitle = $this->GetTitleHome();
if (empty($sTitle))
{
$sOql = $this->GetOql();
$oSearch = DBSearch::FromOQL($sOql);
$sClassName = MetaModel::GetName($oSearch->GetClass());
$this->SetTitleHome($sClassName);
$this->SetTitleNavigationMenu($sClassName);
$this->SetTitle($sClassName);
}
return $this;
}
}