krasavchek
Новичок
Дата регистрации:
09.04.2014 13:13:38
Сообщений: 1
В content_class.php прописал $this->getPageCount(); и [b]$this->template->set("products", $this->product->getTableData($this->section->getTableName(), $this->config->pagination_count, $this->page_info["offset"]));[/b]:
class Content extends Modules {
protected function getContent(){
$this->setLinkSort();
$this->getPageCount();
$sort = $this->data["sort"];
$up = $this->data["up"];
$this->template->set("table_products_title", "Новые фильмы"
1) $this->template->set("products", $this->product->getAllSort($sort, $up, $this->config->count_on_page));
2) $this->template->set("products", $this->product->getTableData($this->section->getTableName(), $this->config->pagination_count,
$this->page_info["offset"]));
return "index";
}
}
Пагинация работает в том случае если 2) стоит выше чем 1), понял что не совместим с дублированием $this->template->set("products" т.е 2 раза уже нельзя писать products в getContente()... Осталость чуть чуть но не могу догнать...
modules_class.php
protected function getPageCount(){
$this->page_info["count"] = ceil($this->product->getCount() / $this->config->pagination_count);
if ($this->page_info["count"] < $this->page_info["page"]) $this->notFound();
}
private function setPageInfo() {
$this->page_info["page"] = isset($this->data["page"])? $this->data["page"]: 1;
if ($this->page_info["page"] <= 0) $this->notFound();
$this->page_info["offset"] = ($this->page_info["page"] - 1) * $this->config->pagination_count;
}
Помогите друзья, если кто то делал пагинацию на главной странице помогите объяснить очень прошу