Your IP : 216.73.216.79


Current Path : /var/www/html/ebilikparlimen1/ebilik/ks_library/SRC/
Upload File :
Current File : /var/www/html/ebilikparlimen1/ebilik/ks_library/SRC/Menu.php

<?php

class KS_Menu extends KS_Search {
	
	protected $sqlTable = 'ks_menu';
	protected $id;
	protected $name;
	protected $path;
	protected $jscode;
	protected $option;
	protected $searchSortField = 'menu_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 int(11) unsigned
	 */
	public function getId () {
	}

	/**
	 * @return varchar(255)
	 */
	public function getName () {
	}

	/**
	 * @return varchar(255)
	 */
	public function getPath () {
	}

	/**
	 * @return text
	 */
	public function getJscode () {
	}

	/**
	 * @return text
	 */
	public function getOption () {
	}

	/**
	 * @return string
	 */
	public function getSearchSortField () {
	}

	/**
	 * @param int(11) unsigned id
	 */
	public function setId ($id) {
	}

	/**
	 * @param varchar(255) name
	 */
	public function setName ($name) {
	}

	/**
	 * @param varchar(255) path
	 */
	public function setPath ($path) {
	}

	/**
	 * @param text jscode
	 */
	public function setJscode ($jscode) {
	}

	/**
	 * @param text option
	 */
	public function setOption ($option) {
	}

	/**
	 * @param string $searchSortField
	 */
	public function setSearchSortField ($searchSortField) {
	}

	/**
	 * @return array
	 */
	public function getSearchResultAssociativeArray () {
	}

	/**
	 * This method returns all menu in the specified order
	 *
	 */
	public static function listMenu ($orderField, $orderType, $startPage, $recordPerPage) {
	}

	/**
	 * This method returns all menu item
	 * order
	 *
	 */
	public static function listItemsByMenu ($menuid, $setlanguage, $orderType, $startPage, $recordPerPage) {
	}
}