本文整理汇总了PHP中Apartment::getLastVisitedObjects方法的典型用法代码示例。如果您正苦于以下问题:PHP Apartment::getLastVisitedObjects方法的具体用法?PHP Apartment::getLastVisitedObjects怎么用?PHP Apartment::getLastVisitedObjects使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Apartment
的用法示例。
在下文中一共展示了Apartment::getLastVisitedObjects方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: tt
<?php
Yii::app()->controller->renderPartial('//site/index-search');
?>
</div>
<div class="zayavka shadow">
<a href="<?php
echo $baseUrl;
?>
/booking/request"><?php
echo tt('Application selection', 'common');
?>
</a>
</div>
<?php
$lastViewedApartmentCount = Apartment::getLastVisitedObjects();
if ($lastViewedApartmentCount[0] > 0) {
?>
<div class="zayavka shadow">
<a href="<?php
echo $baseUrl;
?>
/apartments/main/last"><?php
echo tt('My views', 'common') . ' (' . $lastViewedApartmentCount[0] . ')';
?>
</a>
</div>
<?php
}
?>
<?php
示例2: actionLast
public function actionLast()
{
$result = array();
$lastViewsCount = 0;
$lastViewedApartments = Apartment::getLastVisitedObjects();
if (!empty($lastViewedApartments)) {
$lastViewsCount = $lastViewedApartments[0];
$result = $lastViewedApartments[1];
}
$criteria = new CDbCriteria();
$criteria->addInCondition("t.id", $result);
if (isset($_GET['is_ajax'])) {
$this->renderPartial('last_viewed', array('criteria' => $criteria, 'apCount' => $lastViewsCount), false, true);
} else {
$this->render('last_viewed', array('criteria' => $criteria, 'apCount' => $lastViewsCount));
}
}