Файл: housetrack/modules/top100/helpers/top100_widget.php
Строк: 13
<?php
defined('IN_SYSTEM') or die('<b>403<br />Запрет доступа!</b>');
class top100_widget
{
public static function display($widget_id)
{
$db = Registry::get('db');
$widget = $db->get_row("SELECT * FROM #__index_page_widgets WHERE widget_id = $widget_id");
$config = parse_ini_string($widget['config']);
return '<img src="'. URL .'views/default/images/icon.png" alt="" /> <a href="'. URL . 'downloads/top_files">Топ 100 чарт</a><br />';
}
}
?>