Files
CRM/modules/Settings/Vtiger/models/Record.php
BACHIR SOULDI 2794e62571 first commit
2025-09-28 08:49:37 +01:00

44 lines
1.3 KiB
PHP

<?php
/*+***********************************************************************************
* The contents of this file are subject to the vtiger CRM Public License Version 1.0
* ("License"); You may not use this file except in compliance with the License
* The Original Code is: vtiger CRM Open Source
* The Initial Developer of the Original Code is vtiger.
* Portions created by vtiger are Copyright (C) vtiger.
* All Rights Reserved.
*************************************************************************************/
/**
* Roles Record Model Class
*/
abstract class Settings_Vtiger_Record_Model extends Vtiger_Base_Model {
abstract function getId();
abstract function getName();
/**
* Function to get the instance of Settings module model
* @return Settings_Vtiger_Module_Model instance
*/
public static function getInstance($name='Settings:Vtiger') {
$modelClassName = Vtiger_Loader::getComponentClassName('Model', 'Record', $name);
return new $modelClassName();
}
public function getRecordLinks() {
$links = array();
$recordLinks = array();
foreach ($recordLinks as $recordLink) {
$links[] = Vtiger_Link_Model::getInstanceFromValues($recordLink);
}
return $links;
}
public function getDisplayValue($key) {
return $this->get($key);
}
}