Files
@ 654a62c4f366
Branch filter:
Location: hot67beta/components/com_content/models/frontpage.php
654a62c4f366
5.7 KiB
text/x-php
menubar 11 to 30 and revert
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 | <?php
/**
* @version $Id: frontpage.php 10704 2008-08-21 09:38:40Z eddieajau $
* @package Joomla
* @subpackage Content
* @copyright Copyright (C) 2005 - 2008 Open Source Matters. All rights reserved.
* @license GNU/GPL, see LICENSE.php
* Joomla! is free software. This version may have been modified pursuant to the
* GNU General Public License, and as distributed it includes or is derivative
* of works licensed under the GNU General Public License or other free or open
* source software licenses. See COPYRIGHT.php for copyright notices and
* details.
*/
// Check to ensure this file is included in Joomla!
defined('_JEXEC') or die( 'Restricted access' );
jimport('joomla.application.component.model');
/**
* Frontpage Component Model
*
* @package Joomla
* @subpackage Content
* @since 1.5
*/
class ContentModelFrontpage extends JModel
{
/**
* Frontpage data array
*
* @var array
*/
var $_data = null;
/**
* Frontpage total
*
* @var integer
*/
var $_total = null;
/**
* Method to get content item data for the frontpage
*
* @access public
* @return array
*/
function getData()
{
// Load the Category data
if ($this->_loadData())
{
// Initialize some variables
$user =& JFactory::getUser();
// raise errors
}
return $this->_data;
}
/**
* Method to get the total number of content items for the frontpage
*
* @access public
* @return integer
*/
function getTotal()
{
// Lets load the content if it doesn't already exist
if (empty($this->_total))
{
$query = $this->_buildQuery();
$this->_total = $this->_getListCount($query);
}
return $this->_total;
}
/**
* Method to load content item data for items in the frontpage
* exist.
*
* @access private
* @return boolean True on success
*/
function _loadData()
{
// Lets load the content if it doesn't already exist
if (empty($this->_data))
{
// Get the pagination request variables
$limit = JRequest::getVar('limit', 0, '', 'int');
$limitstart = JRequest::getVar('limitstart', 0, '', 'int');
$query = $this->_buildQuery();
$Arows = $this->_getList($query, $limitstart, $limit);
// special handling required as Uncategorized content does not have a section / category id linkage
$i = $limitstart;
$rows = array();
foreach ($Arows as $row)
{
// check to determine if section or category has proper access rights
$rows[$i] = $row;
$i ++;
}
$this->_data = $rows;
}
return true;
}
function _buildQuery()
{
global $mainframe;
// Get the page/component configuration
$params = &$mainframe->getParams();
// Voting is turned on, get voting data as well for the content items
$voting = ContentHelperQuery::buildVotingQuery($params);
// Get the WHERE and ORDER BY clauses for the query
$where = $this->_buildContentWhere();
$orderby = $this->_buildContentOrderBy();
$query = ' SELECT a.id, a.title, a.title_alias, a.introtext, a.fulltext, a.sectionid, a.state, a.catid, a.created, a.created_by, a.created_by_alias, a.modified, a.modified_by,' .
' a.checked_out, a.checked_out_time, a.publish_up, a.publish_down, a.images, a.attribs, a.urls, a.metakey, a.metadesc, a.access,' .
' CASE WHEN CHAR_LENGTH(a.alias) THEN CONCAT_WS(\':\', a.id, a.alias) ELSE a.id END as slug,'.
' CASE WHEN CHAR_LENGTH(cc.alias) THEN CONCAT_WS(":", cc.id, cc.alias) ELSE cc.id END as catslug,'.
' CHAR_LENGTH( a.`fulltext` ) AS readmore,' .
' u.name AS author, u.usertype, g.name AS groups, cc.title AS category, s.title AS section, s.ordering AS s_ordering, cc.ordering AS cc_ordering, a.ordering AS a_ordering, f.ordering AS f_ordering'.
$voting['select'] .
' FROM #__content AS a' .
' INNER JOIN #__content_frontpage AS f ON f.content_id = a.id' .
' LEFT JOIN #__categories AS cc ON cc.id = a.catid'.
' LEFT JOIN #__sections AS s ON s.id = a.sectionid'.
' LEFT JOIN #__users AS u ON u.id = a.created_by' .
' LEFT JOIN #__groups AS g ON a.access = g.id'.
$voting['join'].
$where
.$orderby
;
return $query;
}
function _buildContentOrderBy()
{
global $mainframe;
// Get the page/component configuration
$params = &$mainframe->getParams();
if (!is_object($params)) {
$params = &JComponentHelper::getParams('com_content');
}
$orderby_sec = $params->def('orderby_sec', '');
$orderby_pri = $params->def('orderby_pri', '');
$secondary = ContentHelperQuery::orderbySecondary($orderby_sec);
$primary = ContentHelperQuery::orderbyPrimary($orderby_pri);
$orderby = ' ORDER BY '.$primary.' '.$secondary;
return $orderby;
}
function _buildContentWhere()
{
global $mainframe;
$user =& JFactory::getUser();
$gid = $user->get('aid', 0);
// TODO: Should we be using requestTime here? or is JDate ok?
// $now = $mainframe->get('requestTime');
$jnow =& JFactory::getDate();
$now = $jnow->toMySQL();
// Get the page/component configuration
$params = &$mainframe->getParams();
$noauth = !$params->get('show_noauth');
$nullDate = $this->_db->getNullDate();
//First thing we need to do is assert that the articles are in the current category
$where = ' WHERE 1';
// Does the user have access to view the items?
if ($noauth) {
$where .= ' AND a.access <= '.(int) $gid;
}
if ($user->authorize('com_content', 'edit', 'content', 'all')) {
$where .= ' AND a.state >= 0';
} else {
$where .= ' AND a.state = 1'.
' AND (( cc.published = 1'.
' AND s.published = 1 )'.
' OR ( a.catid = 0 AND a.sectionid = 0 ) )';
$where .= ' AND ( a.publish_up = '.$this->_db->Quote($nullDate).' OR a.publish_up <= '.$this->_db->Quote($now).' )' .
' AND ( a.publish_down = '.$this->_db->Quote($nullDate).' OR a.publish_down >= '.$this->_db->Quote($now).' )';
}
return $where;
}
}
|