Exemple #1
0
 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));
 }
Exemple #2
0
<?php

if (param("useUserads")) {
    $this->pageTitle .= ' - ' . tc('My listings');
    $this->breadcrumbs = array(tc('Control panel') => Yii::app()->createUrl('/usercpanel'), tc('My listings'));
    // Управление объявлениями
    $modelAds = new Apartment('search');
    Yii::app()->user->setState('searchUrl', NULL);
    $modelAds->unsetAttributes();
    // clear any default values
    if (isset($_GET['Apartment'])) {
        $modelAds->attributes = $_GET['Apartment'];
    }
    ?>
	<h1 class="title highlight-left-right">
	<span>
		<?php 
    echo tc('My listings');
    ?>
	</span>
	</h1>
	<div class="clear"></div><br />
	<?php 
    $user = HUser::getModel();
    $typeId = isset($_GET['type']) ? (int) $_GET['type'] : 1;
    $rentorders = Apartment::model()->findAll('type=:typeId AND owner_id=:userId', [':typeId' => $typeId, ':userId' => $user->id]);
    $this->renderPartial('//modules/userads/views/index', array('model' => $modelAds->onlyAuthOwner()->notDeleted(), 'rentorders' => $rentorders));
} else {
    $this->pageTitle .= ' - ' . tc('My data');
    $this->breadcrumbs = array(tc('Control panel') => Yii::app()->createUrl('/usercpanel'), tc('My data'));
    ?>