/** * Manages all models. */ public function actionAdmin() { $model = new Product('search'); $name = 'Product'; parent::admin($model, $name); }
/** * Manages all models. */ public function actionAdmin() { $model = new Templates('search'); $name = 'Templates'; parent::admin($model, $name); }
public function actionAdmin() { $model = new Actions('search'); $name = 'Actions'; parent::admin($model, $name); }
/** * Manages all models. */ public function actionAdmin() { $model = new MarketingChild('search'); $name = 'MarketingChild'; parent::admin($model, $name); }
/** * Manages all models. */ public function actionAdmin() { $model = new Quote('search'); $name = 'Quote'; // $this->render('test', array('model'=>$name)); parent::admin($model, $name); }
/** * Manages all models. */ public function actionAdmin() { $model = new ProjectChild('search'); $name = 'ProjectChild'; parent::admin($model, $name); }
/** * Manages all models. */ public function actionAdmin() { $model = new CaseChild('search'); $name = 'CaseChild'; parent::admin($model, $name); }
/** * Manages all models. */ public function actionAdmin() { $model = new User('search'); $name = 'User'; parent::admin($model, $name); }
/** * Manages all models. */ public function actionAdmin() { $model = new Contacts('search'); $name = 'Contacts'; parent::admin($model, $name); }
/** * Manages all models. */ public function actionAdmin() { $model = new Campaign('search'); //hack until mass assignment problem solved $model->active = null; $model->complete = null; $model->launched = null; $name = 'Campaign'; parent::admin($model, $name); }