本文整理汇总了PHP中Apartment::resetScope方法的典型用法代码示例。如果您正苦于以下问题:PHP Apartment::resetScope方法的具体用法?PHP Apartment::resetScope怎么用?PHP Apartment::resetScope使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Apartment
的用法示例。
在下文中一共展示了Apartment::resetScope方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: actionAdmin
public function actionAdmin()
{
$countNewsProduct = NewsProduct::getCountNoShow();
if ($countNewsProduct > 0) {
Yii::app()->user->setFlash('info', Yii::t('common', 'There are new product news') . ': ' . CHtml::link(Yii::t('common', '{n} news', $countNewsProduct), array('/news/backend/main/product')));
}
$this->rememberPage();
$this->getMaxSorter();
$this->getMinSorter();
$model = new Apartment('search');
$model->resetScope();
$model->unsetAttributes();
// clear any default values
if (isset($_GET[$this->modelName])) {
$model->attributes = $_GET[$this->modelName];
}
$model->setRememberScenario('ads_remember');
$model = $model->with(array('user'));
$this->params['paidServicesArray'] = array();
if (issetModule('paidservices')) {
$paidServices = PaidServices::model()->findAll('id != ' . PaidServices::ID_ADD_FUNDS);
$this->params['paidServicesArray'] = CHtml::listData($paidServices, 'id', 'name');
}
$this->render('admin', array_merge(array('model' => $model), $this->params));
}