Settings_Wapro_Record_Model
extends Settings_Vtiger_Record_Model
in package
Uses
RecordSettings
Settings WAPRO ERP record model class.
Table of Contents
- $value : array<string|int, mixed>
- __construct() : mixed
- Constructor.
- delete() : int
- Function to delete the current record model.
- get() : mixed
- Function to get the value for a given key.
- getArray() : array<string|int, mixed>
- Function to get the array values for a given key.
- getCleanInstance() : $this
- Function to get the clean instance.
- getData() : array<string|int, mixed>
- Function to get all the values of the Object.
- getDisplayValue() : mixed
- Get display value.
- getEditViewUrl() : string
- Function to get the Edit View Url.
- getFieldInstanceByName() : Vtiger_Field_Model
- Gets field instance by name.
- getForHtml() : mixed
- Function to get the html encoded value for a given key.
- getForSql() : mixed
- Function to get the value if its safe to use for SQL Query (column).
- getId() : int
- Record ID.
- getInstanceById() : $this|null
- Function to get the instance of record model.
- getKeys() : array<string|int, string>
- Function to get keys.
- getModule() : Settings_Wapro_Module_Model
- Function to get Module instance.
- getName() : string
- Record name.
- getRecordLinks() : array<string|int, Vtiger_Link_Model>
- Get record links.
- has() : bool
- Function to check if the key exists.
- isEmpty() : bool
- Function to check if the key is empty.
- remove() : mixed
- Function to remove the value.
- save() : bool
- Function to save.
- set() : $this
- Function to set the value for a given key.
- setData() : $this
- Function to set all the values.
- setDataFromRequest() : void
- Sets data from request.
Properties
$value
protected
array<string|int, mixed>
$value
Values
Methods
__construct()
Constructor.
public
__construct([array<string|int, mixed> $values = [] ]) : mixed
Parameters
- $values : array<string|int, mixed> = []
Return values
mixed —delete()
Function to delete the current record model.
public
delete() : int
Return values
int —get()
Function to get the value for a given key.
public
get(string $key) : mixed
Parameters
- $key : string
Return values
mixed —Value for the given key
getArray()
Function to get the array values for a given key.
public
getArray(string $key[, array<string|int, mixed> $value = [] ]) : array<string|int, mixed>
Parameters
- $key : string
- $value : array<string|int, mixed> = []
Return values
array<string|int, mixed> —getCleanInstance()
Function to get the clean instance.
public
static getCleanInstance() : $this
Return values
$this —getData()
Function to get all the values of the Object.
public
getData() : array<string|int, mixed>
Return values
array<string|int, mixed> —getDisplayValue()
Get display value.
public
getDisplayValue(string $key) : mixed
Parameters
- $key : string
Return values
mixed —getEditViewUrl()
Function to get the Edit View Url.
public
getEditViewUrl() : string
Return values
string —URL
getFieldInstanceByName()
Gets field instance by name.
public
getFieldInstanceByName(string $name) : Vtiger_Field_Model
Parameters
- $name : string
Tags
Return values
Vtiger_Field_Model —getForHtml()
Function to get the html encoded value for a given key.
public
getForHtml(string $key) : mixed
Parameters
- $key : string
Return values
mixed —getForSql()
Function to get the value if its safe to use for SQL Query (column).
public
getForSql(string $key[, bool $skipEmtpy = true ]) : mixed
Parameters
- $key : string
- $skipEmtpy : bool = true
-
Skip the check if string is empty
Return values
mixed —Value for the given key
getId()
Record ID.
public
abstract getId() : int
Return values
int —getInstanceById()
Function to get the instance of record model.
public
static getInstanceById(int $id) : $this|null
Parameters
- $id : int
Return values
$this|null —Instance, if exists
getKeys()
Function to get keys.
public
getKeys() : array<string|int, string>
Return values
array<string|int, string> —getModule()
Function to get Module instance.
public
getModule() : Settings_Wapro_Module_Model
Return values
Settings_Wapro_Module_Model —getName()
Record name.
public
abstract getName() : string
Return values
string —getRecordLinks()
Get record links.
public
getRecordLinks() : array<string|int, Vtiger_Link_Model>
Return values
array<string|int, Vtiger_Link_Model> —has()
Function to check if the key exists.
public
has(string $key) : bool
Parameters
- $key : string
Return values
bool —isEmpty()
Function to check if the key is empty.
public
isEmpty(string $key) : bool
Parameters
- $key : string
Return values
bool —remove()
Function to remove the value.
public
remove(string $key) : mixed
Parameters
- $key : string
Return values
mixed —save()
Function to save.
public
save() : bool
Return values
bool —set()
Function to set the value for a given key.
public
set(string $key, mixed $value) : $this
Parameters
- $key : string
- $value : mixed
Return values
$this —setData()
Function to set all the values.
public
setData(mixed $values) : $this
Parameters
- $values : mixed
Return values
$this —setDataFromRequest()
Sets data from request.
public
setDataFromRequest(Request $request) : void
Parameters
- $request : Request