本文整理汇总了PHP中ArticleModel::findAllParams方法的典型用法代码示例。如果您正苦于以下问题:PHP ArticleModel::findAllParams方法的具体用法?PHP ArticleModel::findAllParams怎么用?PHP ArticleModel::findAllParams使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ArticleModel
的用法示例。
在下文中一共展示了ArticleModel::findAllParams方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: __call
public function __call($n, $v)
{
$param = str_replace('action', '', $n);
$param = str_replace('.html', '', $param);
$article = new ArticleModel();
$article->sql_params = array('name' => 'alias', 'value' => $param);
$item = $article->findAllParams()[1];
if (empty($item)) {
die('Данный материал не доступен!');
} else {
// Получаем данные для корзины
$basket_ob = new BasketModel();
$basket = $basket_ob->getBasket();
$labelprod = new ProductLabelModel();
$slabel_items = $labelprod->getLabelProducts(2, 6);
// Создаем шаблон и передаем ему нужные переменные
$left_content = $this->template('/main/tpl_left.php', array('categories' => $this->catmenu->showMenu()));
$sales_module = $this->template('/main/tpl_new_sales.php', array('stitle' => 'Акции', 'sitems' => $slabel_items));
$right_content = $this->template('/main/tpl_article.php', array('article' => $item[0], 'sales_module' => $sales_module));
$tmp = $this->template('/main/tpl_main.php', array('title' => 'Онлайн-аптека в Англии с доставкой', 'top_menu' => $this->top_menu, 'basket' => array('quantity' => $basket[0], 'price' => $basket[1]), 'left_content' => $left_content, 'right_content' => $right_content, 'fmenu' => $this->footer_menu));
echo $tmp;
}
}