first commit

This commit is contained in:
alazhar
2020-01-02 22:20:31 +07:00
commit 10eb3340ad
5753 changed files with 631345 additions and 0 deletions

View File

@ -0,0 +1,35 @@
<?php
/**
* @package Joomla.Administrator
* @subpackage Template.hathor
*
* @copyright Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
// no direct access
defined('_JEXEC') or die;
echo JHtml::_('sliders.start', 'panel-sliders', array('useCookie' => '1'));
foreach ($this->modules as $module)
{
$output = JModuleHelper::renderModule($module);
$params = new JRegistry;
$params->loadString($module->params);
if ($params->get('automatic_title', '0') == '0')
{
echo JHtml::_('sliders.panel', $module->title, 'cpanel-panel-' . $module->name);
}
elseif (method_exists('mod'.$module->name.'Helper', 'getTitle'))
{
echo JHtml::_('sliders.panel', call_user_func_array(array('mod' . $module->name . 'Helper', 'getTitle'), array($params)), 'cpanel-panel-' . $module->name);
}
else
{
echo JHtml::_('sliders.panel', JText::_('MOD_' . $module->name . '_TITLE'), 'cpanel-panel-' . $module->name);
}
echo $output;
}
echo JHtml::_('sliders.end');

View File

@ -0,0 +1 @@
<!DOCTYPE html><title></title>

View File

@ -0,0 +1 @@
<!DOCTYPE html><title></title>