本文整理汇总了PHP中Partner::model方法的典型用法代码示例。如果您正苦于以下问题:PHP Partner::model方法的具体用法?PHP Partner::model怎么用?PHP Partner::model使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Partner
的用法示例。
在下文中一共展示了Partner::model方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: actionIndex
/**
* 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));
}
示例2: loadModel
/**
* 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;
}
示例3: array
<?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'])));
示例4: loadModel
/**
* 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;
}
示例5: array
<?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}'))));
示例6: getPartnerByKey
public static function getPartnerByKey($key)
{
$id = self::decodeId($key);
$id = $id - 10100;
$partner = Partner::model()->findByPk($id);
if ($partner) {
return $partner;
}
return false;
}