本文整理汇总了PHP中KSSystem::issetReview方法的典型用法代码示例。如果您正苦于以下问题:PHP KSSystem::issetReview方法的具体用法?PHP KSSystem::issetReview怎么用?PHP KSSystem::issetReview使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类KSSystem
的用法示例。
在下文中一共展示了KSSystem::issetReview方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: display
function display($tpl = null)
{
$app = JFactory::getApplication();
$path = $app->getPathway();
$document = JFactory::getDocument();
$this->params = JComponentHelper::getParams('com_ksenmart');
$shop_name = $this->params->get('shop_name', 'магазине');
$pref = $this->params->get('path_separator', '-');
$doc_title = $shop_name . $pref . 'Отзывы';
$id = $app->input->get('id', 0, 'int');
$layout = $this->getLayout();
$document->setTitle($doc_title);
$document->addStyleSheet(JURI::base() . 'components/com_ksenmart/css/shop_reviews.css');
switch ($layout) {
case 'comments':
if (!JFactory::getConfig()->get('config.caching', 0)) {
$path->addItem(JText::_('KSM_REVIEWS_LIST_PATH_TITLE'));
}
$comments = $this->get('comments');
$pagination = $this->get('Pagination');
$this->assignRef('pagination', $pagination);
$this->assignRef('rows', $comments);
break;
case 'comment':
if ($id > 0) {
if (!JFactory::getConfig()->get('config.caching', 0)) {
$path->addItem(JText::_('KSM_REVIEWS_LIST_PATH_TITLE'), 'index.php?option=com_ksenmart&view=comments&layout=comments&Itemid=' . KSSystem::getShopItemid());
$path->addItem(JText::_('KSM_REVIEW_ITEM_PATH_TITLE'));
}
$comment = $this->get('Comment');
if (!$comment) {
JError::raiseError(404, 'Page not found');
return false;
}
$this->assignRef('comment', $comment);
} else {
JError::raiseError(404, 'Page not found');
return false;
}
break;
case 'reviews':
if (!JFactory::getConfig()->get('config.caching', 0)) {
$path->addItem(JText::_('KSM_SHOP_REVIEWS_PATH_TITLE'));
}
$reviews = $this->get('ShopReviewsList');
$user = KSUsers::getUser();
$isset_review = KSSystem::issetReview($user->id);
$this->assignRef('reviews', $reviews);
$this->assignRef('user', $user);
$this->assignref('show_shop_review', $isset_review);
break;
case 'review':
if ($id > 0) {
$user = KSUsers::getUser();
$this->params = JComponentHelper::getParams('com_ksenmart');
$model = $this->getModel();
$review = $model->getShopReviewById($id);
if (!$review) {
JError::raiseError(404, 'Page not found');
return false;
}
$isset_review = KSSystem::issetReview($user->id);
$this->assignRef('review', $review);
$this->assignRef('user', $user);
$this->assignref('show_shop_review', $isset_review);
$document->setTitle(JText::sprintf('KSM_SHOP_REVIEW_PATH_TITLE_TEXT', $review->user->name, $shop_name));
if (!JFactory::getConfig()->get('config.caching', 0)) {
$path->addItem(JText::_('KSM_SHOP_REVIEWS_PATH_TITLE'), 'index.php?option=com_ksenmart&view=comments&layout=reviews&Itemid=' . KSSystem::getShopItemid());
$path->addItem(JText::sprintf('KSM_SHOP_REVIEW_PATH_TITLE_TEXT', $review->user->name, $shop_name));
}
} else {
JError::raiseError(404, 'Page not found');
return false;
}
break;
}
parent::display($tpl);
}