/**
  * This is the default 'index' action that is invoked
  * when an action is not explicitly requested by users.
  */
 public function actionIndex()
 {
     // layout halaman index
     $this->layout = 'index-page';
     // one page about
     $criteriaAbout = new CDbCriteria(array('condition' => "t.key='About'"));
     $about = Pages::model()->findAll($criteriaAbout);
     // one page features
     $criteriaFeatures = new CDbCriteria(array('condition' => "t.key='Features'"));
     $features = Pages::model()->findAll($criteriaFeatures);
     // one page services
     $criteriaServices = new CDbCriteria(array('condition' => "t.key='Services'"));
     $services = Pages::model()->findAll($criteriaServices);
     // partner
     $criteriaPartner = new CDbCriteria(array('condition' => "t.active='1' AND t.category='Partner'"));
     $partner = Partner::model()->findAll($criteriaPartner);
     // product
     $criteriaProduct = new CDbCriteria(array('condition' => "t.active='1' AND t.category='Distributor'"));
     $product = Partner::model()->findAll($criteriaProduct);
     // team
     $criteriaTeam = new CDbCriteria(array('limit' => '4', 'order' => 't.sequence ASC'));
     $team = Team::model()->findAll($criteriaTeam);
     // news
     $criteriaNews = new CDbCriteria(array('limit' => '3'));
     $news = News::model()->findAll($criteriaNews);
     // form contact di halaman index
     $model = new Contacts('search');
     $model->unsetAttributes();
     if (isset($_GET['Contacts'])) {
         $model->attributes = $_GET['Contacts'];
     }
     $this->render('index', array('about' => $about, 'features' => $features, 'services' => $services, 'partner' => $partner, 'product' => $product, 'team' => $team, 'news' => $news, 'model' => $model));
 }
Exemplo n.º 2
0
 /**
  * Returns the data model based on the primary key given in the GET variable.
  * If the data model is not found, an HTTP exception will be raised.
  * @param integer the ID of the model to be loaded
  */
 public function loadModel($id)
 {
     $model = Partner::model()->findByPk($id);
     if ($model === null) {
         throw new CHttpException(404, 'The requested page does not exist.');
     }
     return $model;
 }
Exemplo n.º 3
0
                <?php 
echo $form->textField($model, 'banner_link', array('size' => 60, 'maxlength' => 256));
?>
                <?php 
echo $form->error($model, 'banner_link');
?>
            </div>
	</div>

	<div class="row">
            <?php 
echo $form->labelEx($model, 'id_partner');
?>
            <div>
                <?php 
echo $form->dropDownList($model, 'id_partner', CHtml::listData(Partner::model()->findAll(), 'id', 'name'));
?>
                <?php 
echo $form->error($model, 'id_partner');
?>
            </div>
	</div>

        <div class="row">
            <?php 
echo $form->labelEx($model, 'fileAd');
?>
            <div>
                <?php 
if ($model->ad_path) {
    echo CHtml::image(Yii::app()->baseUrl . '/' . $model->ad_path, '', array('style' => sprintf('max-width:%s;max-height:%s', Yii::app()->params['widthThumbnailImage'], Yii::app()->params['heightThumbnailImage'])));
 /**
  * Returns the data model based on the primary key given in the GET variable.
  * If the data model is not found, an HTTP exception will be raised.
  * @param integer the ID of the model to be loaded
  */
 public function loadModel($id)
 {
     $model = Partner::model()->findByPk((int) $id);
     if ($model === null) {
         throw new CHttpException(404, 'Запрашиваемая страница не существует.');
     }
     return $model;
 }
Exemplo n.º 5
0
<?php

$this->breadcrumbs = array(Yii::t('flexiblearn', 'Banners') => array('admin'));
$this->menu = array(array('label' => Yii::t('flexiblearn', 'Create Banner'), 'url' => array('create')));
?>

<h1><?php 
echo Yii::t('flexiblearn', 'Manage Banners');
?>
</h1>

<?php 
$this->widget('zii.widgets.grid.CGridView', array('id' => 'banner-grid', 'dataProvider' => $model->search(), 'filter' => $model, 'columns' => array(array('type' => 'raw', 'value' => 'CHtml::link("$data->banner_link",$data->banner_link)', 'name' => 'banner_link'), array('name' => 'id_partner', 'header' => 'Partner', 'value' => '$data->partner->name', 'filter' => CHtml::listData(Partner::model()->findAll(), 'id', 'name')), array('class' => 'EImageColumn', 'name' => 'ad_path', 'htmlOptions' => array('style' => 'width: 150px;')), array('name' => 'is_active', 'filter' => array('0' => 'No', '1' => 'Yes'), 'value' => '($data->is_active)?"Yes":"No"'), array('class' => 'CButtonColumn', 'template' => '{delete}{update}'))));
Exemplo n.º 6
0
 public static function getPartnerByKey($key)
 {
     $id = self::decodeId($key);
     $id = $id - 10100;
     $partner = Partner::model()->findByPk($id);
     if ($partner) {
         return $partner;
     }
     return false;
 }