本文整理汇总了PHP中Apartment::onlyAuthOwner方法的典型用法代码示例。如果您正苦于以下问题:PHP Apartment::onlyAuthOwner方法的具体用法?PHP Apartment::onlyAuthOwner怎么用?PHP Apartment::onlyAuthOwner使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Apartment
的用法示例。
在下文中一共展示了Apartment::onlyAuthOwner方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: tc
$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'));
?>
<h1 class="title highlight-left-right">
<span>
<?php
echo tc('My data');
?>
</span>
</h1>
<div class="clear"></div><br />
<?php
示例2: tc
<?php
$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'];
}
$this->renderPartial('//../modules/userads/views/index', array('model' => $modelAds->onlyAuthOwner()));