oAttDef->GetLinkedClass(), $this->oAttDef->GetExtKeyToRemote()); return $oLinkingAttDef->GetTargetClass(); } catch (Exception $e) { return '?'; } } /** @inheritdoc */ public function GetExtraParam(): array { $aExtraParams = array( 'link_attr' => $this->oAttDef->GetExtKeyToMe(), 'object_id' => $this->oDbObject->GetKey(), 'target_attr' => $this->oAttDef->GetExtKeyToRemote(), 'view_link' => false, 'menu' => false, 'display_limit' => true, 'table_id' => $this->GetTableId(), 'zlist' => false, 'extra_fields' => $this->GetAttCodesToDisplay(), 'row_actions' => $this->GetRowActions(), 'currentId' => $this->GetTableId(), ); // - Add creation in modal if the linkset is not readonly if (!$this->oAttDef->GetReadOnly()) { $aExtraParams['creation_in_modal_is_allowed'] = true; $aExtraParams['creation_in_modal_js_handler'] = 'LinkSetWorker.CreateLinkedObject("'.$this->GetTableId().'");'; } return $aExtraParams; } /** @inheritdoc */ public function GetRowActions(): array { $aRowActions = array(); if (!$this->oAttDef->GetReadOnly()) { $aRowActions[] = array( 'label' => 'UI:Links:ActionRow:Detach', 'tooltip' => 'UI:Links:ActionRow:Detach+', 'icon_classes' => 'fas fa-minus', 'js_row_action' => "LinkSetWorker.DeleteLinkedObject('{$this->oAttDef->GetLinkedClass()}', aRowData['Link/_key_/raw']);", 'confirmation' => [ 'message' => 'UI:Links:ActionRow:Detach:Confirmation', 'message_row_data' => "Remote/hyperlink", 'do_not_show_again_pref_key' => $this->GetDoNotShowAgainPreferenceKey(), ], ); $aRowActions[] = array( 'tooltip' => 'UI:Links:ActionRow:Modify', 'icon_classes' => 'fas fa-pen', 'js_row_action' => "LinkSetWorker.ModifyLinkedObject('{$this->oAttDef->GetLinkedClass()}', aRowData['Link/_key_/raw'], '{$this->GetTableId()}');", ); } return $aRowActions; } /** * @return string * @throws \CoreException */ private function GetAttCodesToDisplay(): string { /** @var \AttributeLinkedSetIndirect $oAttributeLinkedSetIndirectDefinition */ $oAttributeLinkedSetIndirectDefinition = MetaModel::GetAttributeDef($this->oAttDef->GetLinkedClass(), $this->oAttDef->GetExtKeyToRemote()); $sAttributeLinkedSetIndirectAttCode = $oAttributeLinkedSetIndirectDefinition->GetCode(); $sAttributeLinkedSetIndirectLinkedClass = $oAttributeLinkedSetIndirectDefinition->GetTargetClass(); $aAttCodesToDisplay = MetaModel::GetAttributeLinkedSetIndirectDatatableAttCodesToDisplay($this->sObjectClass, $this->sAttCode, $sAttributeLinkedSetIndirectLinkedClass, $sAttributeLinkedSetIndirectAttCode); /** @noinspection PhpUnnecessaryLocalVariableInspection *//** @noinspection OneTimeUseVariablesInspection */ $sAttCodesToDisplay = implode(',', $aAttCodesToDisplay); return $sAttCodesToDisplay; } }