Viewing file: clsReligion.php (3.33 KB) -rwxr-xr-x Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
//--Class base_Religion--------------------------
//--PK of base_Religion ::
// 1. religionId
class Religion extends clsDB{
var $result;
var $status;
var $religionId;
var $religionName;
var $religionNameEng;
function Religion(&$c){
$this->c=$c->c;
$this->DB=$c->db;
}
function AddNew(){
//--гЄйаБёНґ№ХйаБЧиНµйН§ЎТГаѕФиБўйНБЩЕгЛБи
//--вґВЁРЎУЛ№ґК¶Т№РўН§ўйНБЩЕўН§НкНєаЁкЎгЛйа»з№ 1
$this->status = 1;
}
function Edit(){
//--гЄйаБёНґ№ХйаБЧиНµйН§ЎТГ»ГСє»ГШ§ўйНБЩЕ
//--вґВЁРЎУЛ№ґК¶Т№РўН§ўйНБЩЕўН§НкНєаЁкЎгЛйа»з№ 2
$this->status = 2;
}
function Save(){
//--гЄйаБёНґ№ХйаБЧиНµйН§ЎТГєС№·ЦЎўйНБЩЕг№НкНєаЁкЎаўйТКЩи°Т№ўйНБЩЕ
//--вґВЁРµГЗЁКНєК¶Т№РўН§ўйНБЩЕЗиТўйНБЩЕг№НкНєаЁкЎа»з№ўйНБЩЕгЛБиЛГЧНўйНБЩЕаґФБ
//--1 а»з№ўйНБЩЕгЛБи 2 а»з№ўйНБЩЕаґФБ
if ($this->status==1){
$this->religionId=$this->GetNextCode();
$sql = "insert into Religion values('$this->religionId', '$this->religionName', '$this->religionNameEng')";
}else {
$sql = "update Religion set religionName='$this->religionName', religionNameEng='$this->religionNameEng' where religionId='$this->religionId'";
}
$this->SetQuery($sql);
}
function Delete(){
//--гЄйаБёНґ№ХйаѕЧиНЕєўйНБЩЕаґФБг№НкНєаЁкЎ
//--а»з№ЎТГЕєўйНБЩЕ·ХЕР 1 аГ¤НГмґ
//--µйН§аГХВЎаБёНґµТБЕУґСєґС§№Хй SearchByKey()-->GetRecord()-->Delete()
$this->SetQuery("delete from Religion where religionId='$this->religionId'");
}
function GetNextCode(){
//--гЄйаБёНґ№ХйаѕЧиНЛТ¤иТКЩ§КШґўН§їФЕґм·ХигЄйа»з№¤ХВмўН§µТГТ§ г№ЕСЎЙіР auto increment
//--µйН§а»з№їФЕґм·ХидБидґйЎУЛ№ґГЛСКаН§·Т§ЁНАТѕ
$this->SetQuery("select max(religionId) as num from Religion");
if ($result=$this->GetResult()) {
return $result['num']+1;
}
}
function RSReligion(){
//--аБёНґ·ХиўЦ鹵鹴йЗВ RS (Result Set) БХ¤ЗТБЛБТВЗиТЁРдґйГСєўйНБЩЕЎЕСєБТЁТЎЎТГ select БТЎЎЗиТ 1 аГ¤НГмґ
//--»ЎµФаБЧиНаГХВЎгЄйаБёНґ RSxxxx ЁРµйН§аГХВЎаБёНґ GetRecord() ґйЗВаКБН
//--вґВКТБТГ¶аѕФиБаБёНґдґйµТБµйН§ЎТГ бµиµйН§ўЦ鹵鹴йЗВ RS
$this->SetQuery("select * from Religion order by religionId");
}
function GetRecord(){
//--а»з№аБёНґ·Хи№УўйНБЩЕЁТЎ ResultSet БТЎУЛ№ґгЛйЎСєбНµ·ГФєФЗµмўН§НкНєаЁзЎ
//--аГХВЎ GetRecord() Л№Ц觤ГСй§ ЁРаЕЧиН№µСЗЄХйаГ¤НГмґд»НХЎЛ№Ци§аГ¤НГмґ
if ($this->result = $this->GetResult()) {
$this->religionId = $this->result['religionId'];
$this->religionName = $this->result['religionName'];
$this->religionNameEng = $this->result['religionNameEng'];
return 1;
}else {
return 0;
}
}
function SearchByKey($xKey){
//--гЄйаБёНґ№ХйаѕЧиН¤й№ЛТўйНБЩЕµТБ PK µйН§ГРєШѕТГТБФаµНГмґйЗВ
//--бЕРµйН§µТБґйЗВаБёНґ GetRecord() аКБН
if ($this->SetQuery("select * from Religion where religionId= '$xKey'")){
return 1;
}else {
return 0;
}
}
function NumRow(){
//--а»з№аБёНґ·Хи¤Ч№¤иТЁУ№З№ўйНБЩЕЁТЎЎТГ select вґВаБёНґ RSxxxx
return $this->GetRowSelected();
}
function Destroy(){
//--а»з№аБёНґКУЛГСє»ФґЎТГµФґµиНЁТЎ°Т№ўйНБЩЕ
return $this->DestroyDb();
}
//****************** You can add new functions below **********************//
function selectHTML($name, $ID=""){
$s="<select name=\"$name\">\n";
$s.="<option value=\"0\">---аЕЧНЎИТК№Т---\n";
$this->RSReligion();
while($this->GetRecord()){
$s.="<option value=\"$this->religionId\" ";
$s.=($this->religionId==$ID) ? "Selected" : "" ;
$s.=">$this->religionName\n";
}
return $s.="</select>\n";
}
} //--End class base_Religion--
?>
|