0byt3m1n1-V2
Path:
/
home
/
phangnga
/
administrator
/
components
/
com_sexypolling
/
models
/
[
Home
]
File: sexycategories.php
<?php /** * Joomla! component sexypolling * * @version $Id: sexyanswers.php 2012-04-05 14:30:25 svn $ * @author 2GLux.com * @package Sexy Polling * @subpackage com_sexypolling * @license GNU/GPL * */ // no direct access defined('_JEXEC') or die('Restircted access'); // Import Joomla! libraries jimport('joomla.application.component.modellist'); class SexypollingModelSexyCategories extends JModelList { /** * Constructor. * * @param array An optional associative array of configuration settings. * @see JController * @since 1.6 */ public function __construct($config = array()) { if (empty($config['filter_fields'])) { $config['filter_fields'] = array( 'id', 'sc.id', 'name', 'sc.name', 'count_polls', 'published', 'sc.published', 'publish_up', 'sc.publish_up', 'publish_down', 'sc.publish_down' ); } parent::__construct($config); } /** * Method to auto-populate the model state. * * Note. Calling getState in this method will result in recursion. * * @return void * @since 1.6 */ protected function populateState($ordering = null, $direction = null) { // Initialise variables. $app = JFactory::getApplication(); // Adjust the context to support modal layouts. if ($layout = JRequest::getVar('layout')) { $this->context .= '.'.$layout; } $search = $this->getUserStateFromRequest($this->context.'.filter.search', 'filter_search'); $this->setState('filter.search', $search); $published = $this->getUserStateFromRequest($this->context.'.filter.published', 'filter_published', ''); $this->setState('filter.published', $published); // List state information. parent::populateState('sc.name', 'asc'); } /** * Method to get a store id based on model configuration state. * * This is necessary because the model is used by the component and * different modules that might need different sets of data or different * ordering requirements. * * @param string $id A prefix for the store id. * * @return string A store id. * @since 1.6 */ protected function getStoreId($id = '') { // Compile the store id. $id .= ':'.$this->getState('filter.search'); $id .= ':'.$this->getState('filter.published'); return parent::getStoreId($id); } /** * Build an SQL query to load the list data. * * @return JDatabaseQuery * @since 1.6 */ protected function getListQuery() { // Create a new query object. $db = $this->getDbo(); $query = $db->getQuery(true); $user = JFactory::getUser(); // Select the required fields from the table. $query->select( $this->getState( 'list.select', 'sc.id, sc.name, sc.published, sc.publish_up, sc.publish_down' ) ); $query->from('#__sexy_categories AS sc'); // Join over the answers. $query->select('COUNT(sp.id) AS count_polls'); $query->join('LEFT', '#__sexy_polls AS sp ON sp.id_category=sc.id'); // Filter by published state $published = $this->getState('filter.published'); if (is_numeric($published)) { $query->where('sc.published = ' . (int) $published); } elseif ($published === '') { $query->where('(sc.published = 0 OR sc.published = 1)'); } // Filter by search in name. $search = $this->getState('filter.search'); if (!empty($search)) { if (stripos($search, 'id:') === 0) { $query->where('sc.id = '.(int) substr($search, 3)); } else { $search = $db->Quote('%'.$db->escape($search, true).'%'); $query->where('(sc.name LIKE '.$search.')'); } } // Add the list ordering clause. $orderCol = $this->state->get('list.ordering', 'sc.name'); $orderDirn = $this->state->get('list.direction', 'asc'); /* if ($orderCol == 'a.ordering' || $orderCol == 'category_title') { $orderCol = 'c.title '.$orderDirn.', a.ordering'; } */ $query->order($db->escape($orderCol.' '.$orderDirn)); $query->group('sc.id'); //echo nl2br(str_replace('#__','jos_',$query)); return $query; } }
©
2018.