dec($task);}} switch($task) { case "default": $this->fn_default_timesche(); break; case $task: $task="fn_".$task; if(method_exists($this,$task)){$this->$task();} break; default: $this->fn_default_timesche(); break; } } public function fn_default_timesche() { echo $this->FN_CREATEHEADER(); echo ""; echo ""; echo $this->FN_CLOSEHEADER(); echo $this->FN_CREATEBODY("e8f1ff"); echo "
"; $url="location.reload();"; $myuri=array("Schedule Information"=>"$url|id='a_timesche'"); echo $this->MULTIPLE_LINK($myuri); echo "
".$this->CREATE_IMAGE("loadergrid.gif")."
Notes : - Click Row For Edit
"; echo $this->FN_CREATEFOOTER(); } public function fn_grdrecord() { $keyword=$_REQUEST["keyword"]; header("Content-type: text/xml"); echo(''); echo ""; $qry="select id,idroutestart,routenamestart,idrouteend,routenameend,scheduletime from ".DB_APORTIL.".tbl_routetime_information where (routenamestart like '%$keyword%' or routenameend like '%$keyword%') and isdeleted=0 order by id asc limit ".TBL_PAGE_LIMIT; $rs=$this->selectquery($qry); if($rs) { $i=1; while($row=$this->data_row_array($rs)) { echo (""); print(""); print(""); print(""); print(""); print(""); echo (""); $i+=1; } } else { echo mysql_errno().": ".mysql_error()." at ".__LINE__." line in ".__FILE__." file
"; } echo "
"; } public function fn_saverecord($isupdate=null) { if($isupdate){$id=$_REQUEST['txt_id'];} $idroutestart=$_REQUEST['cbo_idroutestart']; $routenamestart=$this->fn_get_fieldvalue("routename","select routename from ".DB_APORTIL.".tbl_route_information where id='".$idroutestart."'"); $idrouteend=$_REQUEST['cbo_idrouteend']; $routenameend=$this->fn_get_fieldvalue("routename","select routename from ".DB_APORTIL.".tbl_route_information where id='".$idrouteend."'"); $scheduletime=$_REQUEST['txt_scheduletime']; $qry="insert into ".DB_APORTIL.".tbl_routetime_information set idroutestart='$idroutestart',routenamestart='$routenamestart', idrouteend='$idrouteend',routenameend='$routenameend',scheduletime='$scheduletime',iby='".$_SESSION['nik']."',idt=now()"; if($isupdate) { $qry="update ".DB_APORTIL.".tbl_routetime_information set idroutestart='$idroutestart',routenamestart='$routenamestart', idrouteend='$idrouteend',routenameend='$routenameend',scheduletime='$scheduletime',uby='".$_SESSION['nik']."',udt=now() where id='$id'"; } if($this->executequery($qry)){echo "ok|";return true;} } public function fn_updrecord(){$this->fn_saverecord(true);} public function fn_delrecord() { $id=$_REQUEST['txt_id']; $remark=$_REQUEST['txtremark']; $qry="update ".DB_APORTIL.".tbl_routetime_information set isdeleted=1,remark='$remark',dby='".$_SESSION['nik']."',ddt=now() where id='$id'"; if($this->executequery($qry)){echo "ok|";return true;} else { echo "failed|".$this->getErrorQuery(); } } } ?>