| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- <?php
- Doo::loadCore ( 'db/DooModel' );
- class L_category extends DooModel {
- public $cid;
- public $title;
- public $defult;
- public $districtid;
- public $_table = 'CLD_L_category';
- public $_primarykey = 'cid';
- public $_fields = array (
- 'cid',
- 'title',
- 'defult',
- 'districtid'
- );
- public function checkUser($uid, $passwork) {
- return $this->find ( array (
- 'where' => "uid= '" . $uid . "' and passwork = '" . addslashes ( $passwork ) . "'",
- 'asArray' => TRUE
- ) );
- }
- public function getCategoryInCid($cidString = '') {
- Doo::loadClass ( 'XDeode' );
- $XDeode = new XDeode ( 5 );
-
- if (empty ( $cidString ))
- return array ();
-
- $list= $this->find ( array (
- 'where' => "cid in ( " .$cidString . ") ",
- 'asArray' => TRUE
- ) );
- foreach ( $list as $key => $value ) {
- $list [$key] ['cidKey'] = $XDeode->encode ( $value ['cid'] );
- }
- return $list;
- }
- public function getCategoryById($cid = 0, $othercid = "") {
- if (! empty ( $othercid ))
- return $this->find ( array (
- 'where' => "cid in ( " . $cid . "," . $othercid . ") ",
- 'asArray' => TRUE
- ) );
- else
- return $this->find ( array (
- 'where' => "cid= '" . $cid . "' ",
- 'asArray' => TRUE
- ) );
- }
- public function getCategory() {
- Doo::loadClass ( 'XDeode' );
- $XDeode = new XDeode ( 5 );
-
- $list = $this->find ( array (
- 'asc' => 'cid',
- 'asArray' => TRUE
- ) );
-
- foreach ( $list as $key => $value ) {
- $list [$key] ['cidKey'] = $XDeode->encode ( $value ['cid'] );
- }
-
- return $list;
- }
- public function getUserByIdList($puid) {
- return $this->find ( array (
- 'where' => "uid= '" . $puid . "'",
- 'asArray' => TRUE
- ) );
- }
- public function getCategoryStaff() {
- $list = $this->find ( array (
- 'asArray' => TRUE
- ) );
- Doo::loadModel ( 'staff' );
- $staff = new staff ();
- foreach ( $list as $key => $value ) {
- $list [$key] ['staff'] = $staff->getStaffByCid ( $value ['cid'] );
- }
- return $list;
- }
- }
- ?>
|