| Current Path : /var/www/html/ebilikparlimen1/ebilik/ks_library/SRC/ |
| Current File : /var/www/html/ebilikparlimen1/ebilik/ks_library/SRC/Datadictionary.php |
<?php
class KS_Datadictionary extends KS_Search {
protected $sqlTable = 'ks_datadictionary';
protected $id;
protected $desc;
protected $label;
protected $builtin;
protected $primarykey;
protected $searchSortField = 'dd_id';
public $searchResultAssociativeArray;
public function __construct () {
}
/**
* This method returns a single record based on primary key $id
*
* @param none
* @return true
*/
public function select () {
}
/**
* This method check whether the supplied primary key $id exists or not
*
* @param none
* @return true if record found, false if not found
*/
public function exists () {
}
/**
* This method inserts a single record
*
* @param none
*/
public function insert () {
}
/**
* This method updates a single record, based on $id
*
* @param none
*/
public function update () {
}
/**
* This method deletes a single record, based on $id
*
* @param none
*/
public function delete () {
}
/**
* This method perform search based on this object.
*
* @param none
* @return array $class
*/
public function search () {
}
/**
* @return varchar(64)
*/
public function getId () {
}
/**
* @return text
*/
public function getDesc () {
}
/**
* @return text
*/
public function getLabel () {
}
/**
* @return int(1)
*/
public function getBuiltin () {
}
/**
* @return varchar(64)
*/
public function getPrimarykey () {
}
/**
* @return string
*/
public function getSearchSortField () {
}
/**
* @param varchar(64) id
*/
public function setId ($id) {
}
/**
* @param text desc
*/
public function setDesc ($desc) {
}
/**
* @param text desc
*/
public function setLabel ($label) {
}
/**
* @param int(1) builtin
*/
public function setBuiltin ($builtin) {
}
/**
* @param varchar(64) primarykey
*/
public function setPrimarykey ($primarykey) {
}
/**
* @param string $searchSortField
*/
public function setSearchSortField ($searchSortField) {
}
/**
* @return array
*/
public function getSearchResultAssociativeArray () {
}
}