Quiero crear una vista con filtros y paginación para Joomla 3.x, pero no estoy seguro de qué tengo que incluir y dónde.
Por ahora, mi modelo se extiende JModelList
y comencé a usar el getListQuery()
método para obtener los datos:
<?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;
}
}
Mi view.html.php se ve así:
<?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);
}
}
¿Qué debo agregar a mi modelo y mi vista? ¿Qué es lo que tengo que incluir en mi default.php para que funcionen tanto los filtros como la paginación?