Spade
Mini Shell
| Directory:~$ /home/lmsyaran/public_html/css/ |
| [Home] [System Details] [Kill Me] |
index.html000064400000000054151165171030006540 0ustar00<html><body
bgcolor="#FFFFFF"></body></html>mod_hikashop_dashboard.php000064400000001715151165171030011735
0ustar00<?php
/**
* @package HikaShop for Joomla!
* @version 4.4.1
* @author hikashop.com
* @copyright (C) 2010-2021 HIKARI SOFTWARE. All rights reserved.
* @license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
*/
defined('_JEXEC') or die('Restricted access');
?><?php
if(!include_once(rtrim(JPATH_ADMINISTRATOR,DS).DS.'components'.DS.'com_hikashop'.DS.'helpers'.DS.'helper.php'))
{
echo 'This module can not work without the Hikashop Component';
return;
};
$moduleclass_sfx =
$params->get('moduleclass_sfx','');
$statisticsClass = hikashop_get('class.statistics');
$statistics =
$statisticsClass->getDashboard('joomla_dashboard');
$statistics_slots = array();
foreach($statistics as $key => &$stat) {
$slot = (int)@$stat['slot'];
$stat['slot'] = $slot;
$stat['key'] = $key;
$statistics_slots[ $slot ] = $slot;
}
unset($stat);
asort($statistics_slots);
require(JModuleHelper::getLayoutPath('mod_hikashop_dashboard','default'));
mod_hikashop_dashboard.xml000064400000002141151165171030011740
0ustar00<?xml version="1.0" encoding="utf-8"?>
<extension type="module" client="administrator"
method="upgrade" version="3.1"
position="cpanel">
<name>HikaShop Dashboard</name>
<author>Hikari Software / Obsidev</author>
<creationDate>12 février 2021</creationDate>
<version>4.4.1</version>
<copyright>(C) 2010-2021 HIKARI SOFTWARE. All rights
reserved.</copyright>
<authorEmail>dev@hikashop.com</authorEmail>
<authorUrl>www.hikashop.com</authorUrl>
<description>HikaShop Dashboard for use in the Joomla! Control Panel
page.</description>
<files>
<filename
module="mod_hikashop_dashboard">mod_hikashop_dashboard.php</filename>
<filename>index.html</filename>
<folder>tmpl</folder>
</files>
<params group="advanced">
<param name="cache" type="list"
default="0" label="Caching" description="Select
whether to cache the content of this module">
<option value="0">No caching</option>
<option value="1">Use global</option>
</param>
<param name="cache_time" type="text"
default="900" label="Cache Time" description="The
time before the module is recached" />
</params>
</extension>
tmpl/default.php000064400000001376151165171030007664 0ustar00<?php
/**
* @package HikaShop for Joomla!
* @version 4.4.1
* @author hikashop.com
* @copyright (C) 2010-2021 HIKARI SOFTWARE. All rights reserved.
* @license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
*/
defined('_JEXEC') or die('Restricted access');
?><div class="hk-container-fluid">
<?php
foreach($statistics_slots as $slot) {
?>
<div class="hk-row">
<?php
foreach($statistics as $key => $stat) {
if($stat['slot'] != $slot)
continue;
$class = 'hkc-sm-12';
if(isset($stat['class']))
$class = $stat['class'];
?>
<div id="hikashop_dashboard_stat_<?php echo $key; ?>"
class="<?php echo $class; ?>"><?php
echo $statisticsClass->display($stat);
?></div>
<?php
}
?>
</div>
<?php
}
?>
</div>
tmpl/index.html000064400000000054151165171040007515
0ustar00<html><body
bgcolor="#FFFFFF"></body></html>