You've already forked joomla_test
first commit
This commit is contained in:
166
administrator/modules/mod_k2_stats/helper.php
Normal file
166
administrator/modules/mod_k2_stats/helper.php
Normal file
@ -0,0 +1,166 @@
|
||||
<?php
|
||||
/**
|
||||
* @version $Id: helper.php 1813 2013-01-16 11:43:55Z lefteris.kavadas $
|
||||
* @package K2
|
||||
* @author JoomlaWorks http://www.joomlaworks.net
|
||||
* @copyright Copyright (c) 2006 - 2013 JoomlaWorks Ltd. All rights reserved.
|
||||
* @license GNU/GPL license: http://www.gnu.org/copyleft/gpl.html
|
||||
*/
|
||||
|
||||
// no direct access
|
||||
defined('_JEXEC') or die ;
|
||||
|
||||
class modK2StatsHelper
|
||||
{
|
||||
public static function getLatestItems()
|
||||
{
|
||||
$db = JFactory::getDBO();
|
||||
$query = "SELECT i.*, v.name AS author FROM #__k2_items as i
|
||||
LEFT JOIN #__k2_categories AS c ON c.id = i.catid
|
||||
LEFT JOIN #__users AS v ON v.id = i.created_by
|
||||
WHERE i.trash = 0 AND c.trash = 0
|
||||
ORDER BY i.created DESC";
|
||||
if (K2_JVERSION != '15')
|
||||
{
|
||||
$query = JString::str_ireplace('#__groups', '#__viewlevels', $query);
|
||||
$query = JString::str_ireplace('g.name', 'g.title', $query);
|
||||
}
|
||||
$db->setQuery($query, 0, 10);
|
||||
$rows = $db->loadObjectList();
|
||||
return $rows;
|
||||
}
|
||||
|
||||
public static function getPopularItems()
|
||||
{
|
||||
$db = JFactory::getDBO();
|
||||
$query = "SELECT i.*, v.name AS author FROM #__k2_items as i
|
||||
LEFT JOIN #__k2_categories AS c ON c.id = i.catid
|
||||
LEFT JOIN #__users AS v ON v.id = i.created_by
|
||||
WHERE i.trash = 0 AND c.trash = 0
|
||||
ORDER BY i.hits DESC";
|
||||
$db->setQuery($query, 0, 10);
|
||||
$rows = $db->loadObjectList();
|
||||
return $rows;
|
||||
}
|
||||
|
||||
public static function getMostCommentedItems()
|
||||
{
|
||||
$db = JFactory::getDBO();
|
||||
$query = "SELECT i.*, v.name AS author, COUNT(comments.id) AS numOfComments FROM #__k2_items as i
|
||||
LEFT JOIN #__k2_categories AS c ON c.id = i.catid
|
||||
LEFT JOIN #__users AS v ON v.id = i.created_by
|
||||
RIGHT JOIN #__k2_comments comments ON comments.itemID = i.id
|
||||
WHERE i.trash = 0 AND c.trash = 0
|
||||
GROUP BY i.id
|
||||
ORDER BY numOfComments DESC";
|
||||
$db->setQuery($query, 0, 10);
|
||||
$rows = $db->loadObjectList();
|
||||
return $rows;
|
||||
}
|
||||
|
||||
public static function getLatestComments()
|
||||
{
|
||||
$db = JFactory::getDBO();
|
||||
$query = "SELECT * FROM #__k2_comments ORDER BY commentDate DESC";
|
||||
$db->setQuery($query, 0, 10);
|
||||
$rows = $db->loadObjectList();
|
||||
return $rows;
|
||||
}
|
||||
|
||||
public static function getStatistics()
|
||||
{
|
||||
$statistics = new stdClass;
|
||||
$statistics->numOfItems = self::countItems();
|
||||
$statistics->numOfTrashedItems = self::countTrashedItems();
|
||||
$statistics->numOfFeaturedItems = self::countFeaturedItems();
|
||||
$statistics->numOfComments = self::countComments();
|
||||
$statistics->numOfCategories = self::countCategories();
|
||||
$statistics->numOfTrashedCategories = self::countTrashedCategories();
|
||||
$statistics->numOfUsers = self::countUsers();
|
||||
$statistics->numOfUserGroups = self::countUserGroups();
|
||||
$statistics->numOfTags = self::countTags();
|
||||
return $statistics;
|
||||
}
|
||||
|
||||
public static function countItems()
|
||||
{
|
||||
$db = JFactory::getDBO();
|
||||
$query = "SELECT COUNT(*) FROM #__k2_items";
|
||||
$db->setQuery($query);
|
||||
$result = $db->loadResult();
|
||||
return $result;
|
||||
}
|
||||
|
||||
public static function countTrashedItems()
|
||||
{
|
||||
$db = JFactory::getDBO();
|
||||
$query = "SELECT COUNT(*) FROM #__k2_items WHERE trash=1";
|
||||
$db->setQuery($query);
|
||||
$result = $db->loadResult();
|
||||
return $result;
|
||||
}
|
||||
|
||||
public static function countFeaturedItems()
|
||||
{
|
||||
$db = JFactory::getDBO();
|
||||
$query = "SELECT COUNT(*) FROM #__k2_items WHERE featured=1";
|
||||
$db->setQuery($query);
|
||||
$result = $db->loadResult();
|
||||
return $result;
|
||||
}
|
||||
|
||||
public static function countComments()
|
||||
{
|
||||
$db = JFactory::getDBO();
|
||||
$query = "SELECT COUNT(*) FROM #__k2_comments";
|
||||
$db->setQuery($query);
|
||||
$result = $db->loadResult();
|
||||
return $result;
|
||||
}
|
||||
|
||||
public static function countCategories()
|
||||
{
|
||||
$db = JFactory::getDBO();
|
||||
$query = "SELECT COUNT(*) FROM #__k2_categories";
|
||||
$db->setQuery($query);
|
||||
$result = $db->loadResult();
|
||||
return $result;
|
||||
}
|
||||
|
||||
public static function countTrashedCategories()
|
||||
{
|
||||
$db = JFactory::getDBO();
|
||||
$query = "SELECT COUNT(*) FROM #__k2_categories WHERE trash=1";
|
||||
$db->setQuery($query);
|
||||
$result = $db->loadResult();
|
||||
return $result;
|
||||
}
|
||||
|
||||
public static function countUsers()
|
||||
{
|
||||
$db = JFactory::getDBO();
|
||||
$query = "SELECT COUNT(*) FROM #__k2_users";
|
||||
$db->setQuery($query);
|
||||
$result = $db->loadResult();
|
||||
return $result;
|
||||
}
|
||||
|
||||
public static function countUserGroups()
|
||||
{
|
||||
$db = JFactory::getDBO();
|
||||
$query = "SELECT COUNT(*) FROM #__k2_user_groups";
|
||||
$db->setQuery($query);
|
||||
$result = $db->loadResult();
|
||||
return $result;
|
||||
}
|
||||
|
||||
public static function countTags()
|
||||
{
|
||||
$db = JFactory::getDBO();
|
||||
$query = "SELECT COUNT(*) FROM #__k2_tags";
|
||||
$db->setQuery($query);
|
||||
$result = $db->loadResult();
|
||||
return $result;
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user