| Server IP : 138.197.176.125 / Your IP : 216.73.216.41 Web Server : Apache/2.4.41 (Ubuntu) System : Linux SuiteCRM-8 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 User : root ( 0) PHP Version : 8.3.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/vtigerversion80/includes/runtime/ |
Upload File : |
<?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.
*************************************************************************************/
/**
* Base Model Class
*/
class Vtiger_Base_Model {
protected $valueMap;
/**
* Constructor
* @param Array $values
*/
function __construct($values=array()) {
$this->valueMap = $values;
}
/**
* Function to get the value for a given key
* @param $key
* @return Value for the given key
*/
public function get($key){
return isset($this->valueMap[$key]) ? $this->valueMap[$key] : null;
}
/**
* Function to get the raw value for a given key
* @param $key
* @return Raw Value for the given key
*/
public function getRaw($key){
return $this->rawData[$key];
}
/**
* Function to get the value if its safe to use for SQL Query (column).
* @param <String> $key
* @param <Boolean> $skipEmpty - Skip the check if string is empty
* @return Value for the given key
*/
public function getForSql($key, $skipEmtpy=true) {
return Vtiger_Util_Helper::validateStringForSql($this->get($key), $skipEmtpy);
}
/**
* Function to set the value for a given key
* @param $key
* @param $value
* @return Vtiger_Base_Model
*/
public function set($key,$value){
$this->valueMap[$key] = $value;
return $this;
}
/**
* Function to set all the values for the Object
* @param Array (key-value mapping) $values
* @return Vtiger_Base_Model
*/
public function setData($values){
$this->valueMap = $values;
return $this;
}
/**
* Function to get all the values of the Object
* @return Array (key-value mapping)
*/
public function getData(){
return $this->valueMap;
}
/**
* Function to check if the key exists.
* @param String $key
*/
public function has($key) {
return array_key_exists($key, $this->valueMap);
}
/**
* Function to check if the key is empty.
* @param type $key
*/
public function isEmpty($key) {
return (!isset($this->valueMap[$key]) || empty($this->valueMap[$key]));
}
}