Я хочу создать представление с фильтрами и разбивкой на страницы для Joomla 3.x, но я не уверен в том, что я должен включить и где.
На данный момент моя модель расширяется, JModelList
и я начал использовать getListQuery()
метод для извлечения данных:
<?php
defined('_JEXEC') or die;
class smartModelProducts extends JModelList{
protected function getListQuery(){
// Initialize variables.
$db = JFactory::getDbo();
$query = $db->getQuery(true);
// Create the base select statement.
$query->select('*')
->from($db->quoteName('#__smart_products'));
return $query;
}
}
Мой view.html.php выглядит так:
<?php
defined('_JEXEC') or die;
class smartViewProducts extends JViewLegacy{
function display($tpl=null){
$app=JFactory::getApplication();
$jinput = $app->input;
$option = $jinput->get('option', null, null);
$user=JFactory::getUser();
// Get data from the model
$this->state = $this->get('State');
$this->items = $this->get('Items');
$this->pagination = $this->get('Pagination');
parent::display($tpl);
}
}
Что мне нужно добавить к моей модели и моему виду? Что мне нужно включить в файл default.php, чтобы работали и фильтры, и нумерация страниц?