array('beschreibung'),'Sitecontent'=>array('content')); public function actionIndex() { $this->render('index'); } public function actionSearch() { foreach (SearchController::$Searchables as $searchable => $columns) { $q = new CDbCriteria(); foreach ($columns as $col) { $q->addSearchCondition($col,$_POST['search']); } $results[$searchable]=CActiveRecord::model($searchable)->findAll($q); } $this->render('results', array( 'results' => $results, 'search' => $_POST['search'])); } // Uncomment the following methods and override them if needed /* public function filters() { // return the filter configuration for this controller, e.g.: return array( 'inlineFilterName', array( 'class'=>'path.to.FilterClass', 'propertyName'=>'propertyValue', ), ); } public function actions() { // return external action classes, e.g.: return array( 'action1'=>'path.to.ActionClass', 'action2'=>array( 'class'=>'path.to.AnotherActionClass', 'propertyName'=>'propertyValue', ), ); } */ }