mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-13 15:34:12 +01:00
191 lines
7.4 KiB
PHP
191 lines
7.4 KiB
PHP
<?php
|
|
/**
|
|
* @copyright Copyright (C) 2010-2023 Combodo SARL
|
|
* @license http://opensource.org/licenses/AGPL-3.0
|
|
*/
|
|
|
|
namespace Combodo\iTop\Application\UI\Links\Direct;
|
|
|
|
use Combodo\iTop\Application\UI\Base\Component\Button\Button;
|
|
use Combodo\iTop\Application\UI\Links\AbstractBlockLinkSetViewTable;
|
|
use MetaModel;
|
|
|
|
/**
|
|
* Class BlockDirectLinkSetViewTable
|
|
*
|
|
* @internal
|
|
* @since 3.1.0
|
|
* @package Combodo\iTop\Application\UI\Links\Direct
|
|
*/
|
|
class BlockDirectLinkSetViewTable extends AbstractBlockLinkSetViewTable
|
|
{
|
|
public const BLOCK_CODE = 'ibo-block-direct-linkset-view-table';
|
|
public const REQUIRES_ANCESTORS_DEFAULT_JS_FILES = true;
|
|
|
|
/** @inheritdoc */
|
|
public function GetTargetClass(): string
|
|
{
|
|
return $this->oAttDef->GetLinkedClass();
|
|
}
|
|
|
|
/** @inheritdoc * */
|
|
public function GetExtraParam(): array
|
|
{
|
|
$aExtraParams = array(
|
|
'target_attr' => $this->oAttDef->GetExtKeyToMe(),
|
|
'object_id' => $this->oDbObject->GetKey(),
|
|
'menu' => MetaModel::GetConfig()->Get('allow_menu_on_linkset'),
|
|
'default' => $this->GetDefault(),
|
|
'table_id' => $this->GetTableId(),
|
|
'row_actions' => $this->GetRowActions(),
|
|
'currentId' => $this->GetTableId(),
|
|
'panel_title' => $this->oAttDef->GetLabel(),
|
|
'panel_icon' => MetaModel::GetClassIcon($this->GetTargetClass(), false),
|
|
);
|
|
|
|
// Description
|
|
if ($this->oAttDef->HasDescription()) {
|
|
$aExtraParams['panel_title_tooltip'] = $this->oAttDef->GetDescription();
|
|
}
|
|
|
|
// Add creation in modal if edit mode is not NONE
|
|
if ($this->oAttDef->GetEditMode() != LINKSET_EDITMODE_NONE
|
|
&& $this->bIsAllowCreate) {
|
|
$aExtraParams['creation_in_modal'] = true;
|
|
$aExtraParams['creation_in_modal_tooltip'] = $this->oAttDef->GetEditMode() == LINKSET_EDITMODE_ADDREMOVE ? $this->GetDictionaryEntry(static::DICT_ADD_BUTTON_TOOLTIP) : $this->GetDictionaryEntry(static::DICT_CREATE_BUTTON_TOOLTIP);
|
|
$aExtraParams['creation_in_modal_form_title'] = $this->oAttDef->GetEditMode() == LINKSET_EDITMODE_ADDREMOVE ? $this->GetDictionaryEntry(static::DICT_ADD_MODAL_TITLE) : $this->GetDictionaryEntry(static::DICT_CREATE_MODAL_TITLE);
|
|
$aExtraParams['creation_in_modal_js_handler'] = "{$this->GetWidgetName()}.links_view_table('CreateLinkedObject');";
|
|
} else {
|
|
$aExtraParams['creation_disallowed'] = true;
|
|
}
|
|
|
|
return $aExtraParams;
|
|
}
|
|
|
|
/** @inheritdoc * */
|
|
public function GetRowActions(): array
|
|
{
|
|
$aRowActions = array();
|
|
|
|
// until a full link set refactoring (continue using edit_mode property)
|
|
switch ($this->oAttDef->GetEditMode()) {
|
|
case LINKSET_EDITMODE_NONE: // The linkset is read-only
|
|
break;
|
|
|
|
case LINKSET_EDITMODE_ADDONLY: // The only possible action is to open (in a new window) the form to create a new object
|
|
if ($this->bIsAllowModify) {
|
|
$aRowActions[] = array(
|
|
'label' => 'UI:Links:ModifyObject:Button',
|
|
'name' => 'ModifyButton',
|
|
'tooltip' => $this->GetDictionaryEntry(static::DICT_MODIFY_OBJECT_BUTTON_TOOLTIP),
|
|
'icon_classes' => 'fas fa-pen',
|
|
'js_row_action' => "{$this->GetWidgetName()}.links_view_table('ModifyLinkedObject', aRowData['{$this->oAttDef->GetLinkedClass()}/_key_/raw'], oTrElement, aRowData['{$this->sTargetClass}/friendlyname']);",
|
|
'metadata' => [
|
|
'modal-title' => $this->GetDictionaryEntry(static::DICT_MODIFY_OBJECT_MODAL_TITLE),
|
|
],
|
|
);
|
|
}
|
|
break;
|
|
|
|
case LINKSET_EDITMODE_INPLACE: // The whole linkset can be edited 'in-place'
|
|
case LINKSET_EDITMODE_ACTIONS: // Show the usual 'Actions' popup menu
|
|
if ($this->bIsAllowModify) {
|
|
$aRowActions[] = array(
|
|
'label' => 'UI:Links:ModifyObject:Button',
|
|
'name' => 'ModifyButton',
|
|
'tooltip' => $this->GetDictionaryEntry(static::DICT_MODIFY_OBJECT_BUTTON_TOOLTIP),
|
|
'icon_classes' => 'fas fa-pen',
|
|
'js_row_action' => "{$this->GetWidgetName()}.links_view_table('ModifyLinkedObject', aRowData['{$this->oAttDef->GetLinkedClass()}/_key_/raw'], oTrElement, aRowData['{$this->sTargetClass}/friendlyname']);",
|
|
'metadata' => [
|
|
'modal-title' => $this->GetDictionaryEntry(static::DICT_MODIFY_OBJECT_MODAL_TITLE),
|
|
],
|
|
);
|
|
}
|
|
|
|
if ($this->bIsAllowDelete) {
|
|
$aRowActions[] = array(
|
|
'label' => 'UI:Links:Delete:Button',
|
|
'name' => 'DeleteButton',
|
|
'tooltip' => $this->GetDictionaryEntry(static::DICT_DELETE_BUTTON_TOOLTIP),
|
|
'icon_classes' => 'fas fa-trash',
|
|
'color' => Button::ENUM_COLOR_SCHEME_DESTRUCTIVE,
|
|
'js_row_action' => "{$this->GetWidgetName()}.links_view_table('DeleteLinkedObject', aRowData['{$this->oAttDef->GetLinkedClass()}/_key_/raw'], oTrElement);",
|
|
'confirmation' => [
|
|
'title' => $this->GetDictionaryEntry(static::DICT_DELETE_MODAL_TITLE),
|
|
'message' => $this->GetDictionaryEntry(static::DICT_DELETE_MODAL_MESSAGE),
|
|
'confirm_button_class' => 'ibo-is-danger',
|
|
'row_data' => "{$this->sTargetClass}/hyperlink",
|
|
'do_not_show_again_pref_key' => $this->GetDoNotShowAgainPreferenceKey(),
|
|
],
|
|
);
|
|
}
|
|
break;
|
|
|
|
case LINKSET_EDITMODE_ADDREMOVE: // The whole linkset can be edited 'in-place'
|
|
if ($this->bIsAllowModify) {
|
|
$aRowActions[] = array(
|
|
'label' => 'UI:Links:ModifyObject:Button',
|
|
'name' => 'ModifyButton',
|
|
'tooltip' => $this->GetDictionaryEntry(static::DICT_MODIFY_OBJECT_BUTTON_TOOLTIP),
|
|
'icon_classes' => 'fas fa-pen',
|
|
'js_row_action' => "{$this->GetWidgetName()}.links_view_table('ModifyLinkedObject', aRowData['{$this->oAttDef->GetLinkedClass()}/_key_/raw'], oTrElement, aRowData['{$this->sTargetClass}/friendlyname']);",
|
|
'metadata' => [
|
|
'modal-title' => $this->GetDictionaryEntry(static::DICT_MODIFY_OBJECT_MODAL_TITLE),
|
|
],
|
|
);
|
|
}
|
|
|
|
if ($this->bIsAllowModify) {
|
|
$aRowActions[] = array(
|
|
'label' => 'UI:Links:Remove:Button',
|
|
'name' => 'RemoveButton',
|
|
'tooltip' => $this->GetDictionaryEntry(static::DICT_REMOVE_BUTTON_TOOLTIP),
|
|
'icon_classes' => 'fas fa-minus',
|
|
'js_row_action' => "{$this->GetWidgetName()}.links_view_table('DetachLinkedObject', aRowData['{$this->sTargetClass}/_key_/raw'], oTrElement, oTrElement);",
|
|
'confirmation' => [
|
|
'title' => $this->GetDictionaryEntry(static::DICT_REMOVE_MODAL_TITLE),
|
|
'message' => $this->GetDictionaryEntry(static::DICT_REMOVE_MODAL_MESSAGE),
|
|
'row_data' => "{$this->sTargetClass}/hyperlink",
|
|
'do_not_show_again_pref_key' => $this->GetDoNotShowAgainPreferenceKey(),
|
|
],
|
|
);
|
|
}
|
|
break;
|
|
|
|
default:
|
|
break;
|
|
}
|
|
|
|
return $aRowActions;
|
|
}
|
|
|
|
/**
|
|
* GetDefault.
|
|
*
|
|
* @return array
|
|
* @throws \ArchivedObjectException
|
|
* @throws \CoreException
|
|
* @throws \Exception
|
|
*/
|
|
private function GetDefault(): array
|
|
{
|
|
$aDefaults = array($this->oAttDef->GetExtKeyToMe() => $this->oDbObject->GetKey());
|
|
$oAppContext = new \ApplicationContext();
|
|
foreach ($oAppContext->GetNames() as $sKey) {
|
|
if (MetaModel::IsValidAttCode($this->sObjectClass, $sKey)) {
|
|
$aDefaults[$sKey] = $this->oDbObject->Get($sKey);
|
|
}
|
|
}
|
|
|
|
return $aDefaults;
|
|
}
|
|
|
|
/**
|
|
* @inheritDoc
|
|
*/
|
|
protected function IsEditableBasedOnEditWhen(): bool
|
|
{
|
|
$sEditWhen = $this->oAttDef->GetEditWhen();
|
|
return $sEditWhen === LINKSET_EDITWHEN_ALWAYS || $sEditWhen === LINKSET_EDITWHEN_ON_HOST_DISPLAY;
|
|
}
|
|
} |