0byt3m1n1
Path:
/
data
/
applications
/
aps
/
mambo
/
4.6.5-1
/
standard
/
htdocs
/
administrator
/
modules
/
[
Home
]
File: mod_popular.php
<?php /** * @package Mambo * @author Mambo Foundation Inc see README.php * @copyright Mambo Foundation Inc. * See COPYRIGHT.php for copyright notices and details. * @license GNU/GPL Version 2, see LICENSE.php * Mambo is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; version 2 of the License. */ /** ensure this file is being included by a parent file */ defined( '_VALID_MOS' ) or die( 'Direct Access to this location is not allowed.' ); $query = "SELECT a.hits, a.id, a.sectionid, a.title, a.created, u.name" . "\n FROM #__content AS a" . "\n LEFT JOIN #__users AS u ON u.id=a.created_by" . "\n WHERE a.state <> '-2'" . "\n ORDER BY hits DESC" . "\n LIMIT 10" ; $database->setQuery( $query ); $rows = $database->loadObjectList(); ?> <table class="adminlist"> <tr> <th class="title"> <?php echo T_('Most Popular Items'); ?> </th> <th class="title"> <?php echo T_('Created'); ?> </th> <th class="title"> <?php echo T_('Hits'); ?> </th> </tr> <?php if ($rows) { foreach ($rows as $row) { if ( $row->sectionid == 0 ) { $link = 'index2.php?option=com_typedcontent&task=edit&hidemainmenu=1&id='. $row->id; } else { $link = 'index2.php?option=com_content&task=edit&hidemainmenu=1&id='. $row->id; } ?> <tr> <td> <a href="<?php echo $link; ?>"> <?php echo htmlspecialchars($row->title, ENT_QUOTES);?> </a> </td> <td> <?php echo $row->created;?> </td> <td> <?php echo $row->hits;?> </td> </tr> <?php } } else { ?> <tr> <td colspan="3">Nothing to show</td> </tr> <?php } ?> </table>