Viewing file: clsStaffTeacher.php (4.54 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
//--Class base_Officer--------------------------
//--PK of base_Officer ::
// 1. officerId
class base_Officer extends Db{
var $result;
var $status;
var $officerId;
var $officerCode;
var $officerPassword;
var $officerType;
var $prefixId;
var $officerName;
var $officerSurname;
var $officerNameEng;
var $officerSurnameEng;
var $officerEmail;
var $officerStatus;
var $remark;
var $contactAddress;
var $contactPhone;
var $result;
var $personId;
var $prefixId;
var $fName;
var $lName;
var $personCode;
var $fStatus;
var $prefixName;
var $personName;
function AddNew(){
//--гЄйаБёНґ№ХйаБЧиНµйН§ЎТГаѕФиБўйНБЩЕгЛБи
//--вґВЁРЎУЛ№ґК¶Т№РўН§ўйНБЩЕўН§НкНєаЁкЎгЛйа»з№ 1
$this->status = 1;
}
function Edit(){
//--гЄйаБёНґ№ХйаБЧиНµйН§ЎТГ»ГСє»ГШ§ўйНБЩЕ
//--вґВЁРЎУЛ№ґК¶Т№РўН§ўйНБЩЕўН§НкНєаЁкЎгЛйа»з№ 2
$this->status = 2;
}
function Save(){
//--гЄйаБёНґ№ХйаБЧиНµйН§ЎТГєС№·ЦЎўйНБЩЕг№НкНєаЁкЎаўйТКЩи°Т№ўйНБЩЕ
//--вґВЁРµГЗЁКНєК¶Т№РўН§ўйНБЩЕЗиТўйНБЩЕг№НкНєаЁкЎа»з№ўйНБЩЕгЛБиЛГЧНўйНБЩЕаґФБ
//--1 а»з№ўйНБЩЕгЛБи 2 а»з№ўйНБЩЕаґФБ
if ($this->status==1){
$this->officerId=$this->GetNextCode();
$sql = "insert into Officer values('$this->officerId', '$this->officerCode', '$this->officerPassword', '$this->officerType', '$this->prefixId', '$this->officerName', '$this->officerSurname', '$this->officerNameEng', '$this->officerSurnameEng', '$this->officerEmail', '$this->officerStatus', '$this->remark', '$this->contactAddress', '$this->contactPhone')";
}else {
$sql = "update Officer set officerCode='$this->officerCode', officerPassword='$this->officerPassword', officerType='$this->officerType', prefixId='$this->prefixId', officerName='$this->officerName', officerSurname='$this->officerSurname', officerNameEng='$this->officerNameEng', officerSurnameEng='$this->officerSurnameEng', officerEmail='$this->officerEmail', officerStatus='$this->officerStatus', remark='$this->remark', contactAddress='$this->contactAddress', contactPhone='$this->contactPhone' where officerId='$this->officerId'";
}
$this->SetQuery($sql);
}
function Delete(){
//--гЄйаБёНґ№ХйаѕЧиНЕєўйНБЩЕаґФБг№НкНєаЁкЎ
//--а»з№ЎТГЕєўйНБЩЕ·ХЕР 1 аГ¤НГмґ
//--µйН§аГХВЎаБёНґµТБЕУґСєґС§№Хй SearchByKey()-->GetRecord()-->Delete()
if($this->SetQuery("delete from Officer where officerId='$this->officerId'")){
return 1;
}else {
return 0;
}
}
function GetNextCode(){
//--гЄйаБёНґ№ХйаѕЧиНЛТ¤иТКЩ§КШґўН§їФЕґм·ХигЄйа»з№¤ХВмўН§µТГТ§ г№ЕСЎЙіР auto increment
//--µйН§а»з№їФЕґм·ХидБидґйЎУЛ№ґГЛСКаН§·Т§ЁНАТѕ
$this->SetQuery("select max(officerId) as num from Officer");
if ($result=$this->GetResult()) {
return $result['num']+1;
}
}
function RSOfficer(){
//--аБёНґ·ХиўЦ鹵鹴йЗВ RS (Result Set) БХ¤ЗТБЛБТВЗиТЁРдґйГСєўйНБЩЕЎЕСєБТЁТЎЎТГ select БТЎЎЗиТ 1 аГ¤НГмґ
//--»ЎµФаБЧиНаГХВЎгЄйаБёНґ RSxxxx ЁРµйН§аГХВЎаБёНґ GetRecord() ґйЗВаКБН
//--вґВКТБТГ¶аѕФиБаБёНґдґйµТБµйН§ЎТГ бµиµйН§ўЦ鹵鹴йЗВ RS
$this->SetQuery("select * from Officer order by officerId");
}
function GetRecord(){
//--а»з№аБёНґ·Хи№УўйНБЩЕЁТЎ ResultSet БТЎУЛ№ґгЛйЎСєбНµ·ГФєФЗµмўН§НкНєаЁзЎ
//--аГХВЎ GetRecord() Л№Ц觤ГСй§ ЁРаЕЧиН№µСЗЄХйаГ¤НГмґд»НХЎЛ№Ци§аГ¤НГмґ
if ($this->result = $this->GetResult()) {
$this->officerId = $this->result['officerId'];
$this->officerCode = $this->result['officerCode'];
$this->officerPassword = $this->result['officerPassword'];
$this->officerType = $this->result['officerType'];
$this->prefixId = $this->result['prefixId'];
$this->officerName = $this->result['officerName'];
$this->officerSurname = $this->result['officerSurname'];
$this->officerNameEng = $this->result['officerNameEng'];
$this->officerSurnameEng = $this->result['officerSurnameEng'];
$this->officerEmail = $this->result['officerEmail'];
$this->officerStatus = $this->result['officerStatus'];
$this->remark = $this->result['remark'];
$this->contactAddress = $this->result['contactAddress'];
$this->contactPhone = $this->result['contactPhone'];
return 1;
}else {
return 0;
}
}
function SearchByKey($xKey){
//--гЄйаБёНґ№ХйаѕЧиН¤й№ЛТўйНБЩЕµТБ PK µйН§ГРєШѕТГТБФаµНГмґйЗВ
//--бЕРµйН§µТБґйЗВаБёНґ GetRecord() аКБН
if ($this->SetQuery("select * from Officer where officerId= '$xKey'")){
return 1;
}else {
return 0;
}
}
function NumRow(){
//--а»з№аБёНґ·Хи¤Ч№¤иТЁУ№З№ўйНБЩЕЁТЎЎТГ select вґВаБёНґ RSxxxx
return $this->GetRowSelected();
}
function Destroy(){
//--а»з№аБёНґКУЛГСє»ФґЎТГµФґµиНЁТЎ°Т№ўйНБЩЕ
return $this->DestroyDb();
}
//****************** You can add new functions below **********************//
} //--End class base_Officer--
?>
|