EliteConf
 All Data Structures Namespaces Files Functions Variables Pages
RefereeAssignmentController.php
Go to the documentation of this file.
1 <?php
2 
8 {
9  public function actionIndex()
10  {
11  $this->render('index');
12  }
13 
14  public function search()
15  {
16  // Warning: Please modify the following code to remove attributes that
17  // should not be searched.
18 
19  $criteria=new CDbCriteria;
20 
21  $criteria->compare('conferenceid',$this->conferenceid,true);
22  $criteria->compare('name',$this->name,true);
23  $criteria->compare('rooms',$this->rooms,true);
24  $criteria->compare('endTime',$this->endTime,true);
25  $criteria->compare('startTime',$this->startTime,true);
26  $criteria->compare('conf_date_begin',$this->conf_date_begin,true);
27  $criteria->compare('conf_date_end',$this->conf_date_end,true);
28  $criteria->compare('address',$this->address,true);
29  $criteria->compare('description',$this->description,true);
30 
31  return new CActiveDataProvider($this, array(
32  'criteria'=>$criteria,
33  ));
34  }
35  // Uncomment the following methods and override them if needed
36  /*
37  public function filters()
38  {
39  // return the filter configuration for this controller, e.g.:
40  return array(
41  'inlineFilterName',
42  array(
43  'class'=>'path.to.FilterClass',
44  'propertyName'=>'propertyValue',
45  ),
46  );
47  }
48 
49  public function actions()
50  {
51  // return external action classes, e.g.:
52  return array(
53  'action1'=>'path.to.ActionClass',
54  'action2'=>array(
55  'class'=>'path.to.AnotherActionClass',
56  'propertyName'=>'propertyValue',
57  ),
58  );
59  }
60  */
61 }