Server IP : 103.233.192.212 / Your IP : 18.222.231.86 Web Server : Apache/2 System : Linux sv1.inde.co.th 3.10.0-1160.36.2.el7.x86_64 #1 SMP Wed Jul 21 11:57:15 UTC 2021 x86_64 User : sumpatuan ( 1058) PHP Version : 5.5.38 Disable Function : symlink,shell_exec,exec,proc_close,proc_open,popen,system,dl,putenv,passthru,escapeshellarg,escapeshellcmd,pcntl_exec,proc_get_status,proc_nice,proc_terminate,pclose,ini_alter,virtual,openlog,ini_restore MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/sumpatuan/domains/sumpatuan.go.th/private_html/backup/protected/models/ |
Upload File : |
<?php class tbNewsbook extends CActiveRecord { public static function model($className = __CLASS__) { return parent::model($className); } public function tableName() { return 'tb_newsbook'; } public function attributeLabels() { return array( 'id' => 'ID', 'nb_name' => 'เรื่อง', 'nb_number' => 'เลขที่หนังสือ', 'nb_date_start' => 'วันที่ลง', 'nb_date_end' => 'วันที่หมดอายุ', 'nb_status' => 'สถานะ', 'nb_tag_view' => 'หน่วยงานที่เข้ามาดู', ); } public function rules() { return array( array('nb_name, nb_number, nb_date_start, nb_date_end', 'required', 'message'=>'{attribute} ## ห้ามเป็นข้อมูลว่าง.'), array('nb_name', 'unique', 'message'=>'{attribute} ## ห้ามซ้ำกัน.'), // array('nb_name', 'match', 'pattern'=>'/^[ก-ฮะ-์เ A-Za-z0-9]+$/', 'message'=>'{attribute} ## ต้องเป็น ภาษาไทย, ภาษาอังกฤษ, ตัวเลข และ ช่องว่างเท่านั้น.'), array('id, nb_status', 'safe'), ); } public function relations() { return array( 'tbNewsbookFile' => array(self::HAS_MANY, 'tbNewsbookFile', 'tb_newsbook_id'), 'tbNewsbookGroup' => array(self::HAS_MANY, 'tbNewsbookGroup', 'tb_newsbook_id'), ); } public function statusThai($data, $row) { return OtherFunction::statusThai($data->nb_status); } public function beforeSave() { if ($this->nb_date_start) { $this->nb_date_start = date('Y-m-d', strtotime($this->nb_date_start)); } if ($this->nb_date_end) { $this->nb_date_end = date('Y-m-d', strtotime($this->nb_date_end)); } return parent::beforesave(); } public function afterFind() { if ($this->nb_date_start) { $this->nb_date_start = date('d-m-Y', strtotime($this->nb_date_start)); } if ($this->nb_date_end) { $this->nb_date_end = date('d-m-Y', strtotime($this->nb_date_end)); } return parent::afterFind(); } public function search() { $criteria = new CDbCriteria; $criteria->with = array('tbNewsbookGroup'=> array( 'select' => 'tb_newsbook_member_id', )); $criteria->together = true; $criteria->compare("nb_name", $this->nb_name, true); $criteria->compare('tb_newsbook_member_id', Yii::app()->session['newsbook_member_id'], true); $criteria->order = "t.id DESC"; return new CActiveDataProvider($this, array( "criteria" => $criteria, 'pagination' => array('pageSize'=>10), )); } public function dateThaiStart($data, $row) { return OtherFunction::DateThai($data->nb_date_start); } public function dateThaiEnd($data, $row) { return OtherFunction::DateThai($data->nb_date_end); } } ?>