本文整理汇总了PHP中Items::retrieveById方法的典型用法代码示例。如果您正苦于以下问题:PHP Items::retrieveById方法的具体用法?PHP Items::retrieveById怎么用?PHP Items::retrieveById使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Items
的用法示例。
在下文中一共展示了Items::retrieveById方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: executeDetail
public function executeDetail()
{
$id = $this->get('id');
if (!$id || !($item = \Items::retrieveById($id))) {
return $this->raise404(t('Product Category not found!'));
}
$term = $item->getCat();
$this->setView('Products/item_detail');
$this->view()->assign(['item' => $item, 'term' => $term]);
return $this->renderComponent();
}
示例2: beforeExecute
public function beforeExecute()
{
parent::beforeExecute();
// TODO: Change the autogenerated stub
$document = $this->document();
$document->title = \Setting::get('site_name');
$this->_initTemplate();
$this->_initLanguages();
Plugin::addFilter('custom_router_param', function ($route, $params) {
if ('products/category' == $route) {
if (isset($params['id']) && ($term = \Terms::retrieveById($params['id']))) {
$params['slug'] = $term->getSlug();
}
}
if ('products/detail' == $route) {
if (isset($params['id']) && ($item = \Items::retrieveById($params['id']))) {
$params['slug'] = $item->getSlug();
}
}
return $params;
}, 1, 2);
}