Spade
Mini Shell
| Directory:~$ /home/lmsyaran/public_html/joomla4/ |
| [Home] [System Details] [Kill Me] |
controller.php000064400000000571151161735010007443 0ustar00<?php
/**
* @package Joomla.Administrator
* @subpackage com_cpanel
*
* @copyright Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
* @license GNU General Public License version 2 or later; see
LICENSE.txt
*/
defined('_JEXEC') or die;
/**
* Cpanel Controller
*
* @since 1.5
*/
class CpanelController extends JControllerLegacy
{
}
cpanel.php000064400000000701151161735010006515 0ustar00<?php
/**
* @package Joomla.Administrator
* @subpackage com_cpanel
*
* @copyright Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
* @license GNU General Public License version 2 or later; see
LICENSE.txt
*/
defined('_JEXEC') or die;
// No access check.
$controller = JControllerLegacy::getInstance('Cpanel');
$controller->execute(JFactory::getApplication()->input->get('task'));
$controller->redirect();
cpanel.xml000064400000001600151161735010006525 0ustar00<?xml
version="1.0" encoding="utf-8"?>
<extension type="component" version="3.1"
method="upgrade">
<name>com_cpanel</name>
<author>Joomla! Project</author>
<creationDate>April 2006</creationDate>
<copyright>(C) 2005 - 2020 Open Source Matters. All rights
reserved.</copyright>
<license>GNU General Public License version 2 or later; see
LICENSE.txt</license>
<authorEmail>admin@joomla.org</authorEmail>
<authorUrl>www.joomla.org</authorUrl>
<version>3.0.0</version>
<description>COM_CPANEL_XML_DESCRIPTION</description>
<administration>
<files folder="admin">
<filename>controller.php</filename>
<filename>cpanel.php</filename>
<folder>views</folder>
</files>
<languages folder="admin">
<language
tag="en-GB">language/en-GB.com_cpanel.ini</language>
<language
tag="en-GB">language/en-GB.com_cpanel.sys.ini</language>
</languages>
</administration>
</extension>
views/cpanel/tmpl/default.php000064400000003602151161735010012255
0ustar00<?php
/**
* @package Joomla.Administrator
* @subpackage com_cpanel
*
* @copyright Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
* @license GNU General Public License version 2 or later; see
LICENSE.txt
*/
defined('_JEXEC') or die;
use Joomla\Registry\Registry;
$user = JFactory::getUser();
?>
<div class="row-fluid">
<?php $iconmodules = JModuleHelper::getModules('icon');
if ($iconmodules) : ?>
<div class="span3">
<div class="cpanel-links">
<?php
// Display the submenu position modules
foreach ($iconmodules as $iconmodule)
{
echo JModuleHelper::renderModule($iconmodule);
}
?>
</div>
</div>
<?php endif; ?>
<div class="span<?php echo $iconmodules ? 9 : 12;
?>">
<?php if ($user->authorise('core.manage',
'com_postinstall') &&
$this->postinstall_message_count) : ?>
<div class="row-fluid">
<div class="alert alert-info">
<h3>
<?php echo JText::_('COM_CPANEL_MESSAGES_TITLE'); ?>
</h3>
<p>
<?php echo JText::_('COM_CPANEL_MESSAGES_BODY_NOCLOSE');
?>
</p>
<p>
<?php echo
JText::_('COM_CPANEL_MESSAGES_BODYMORE_NOCLOSE'); ?>
</p>
<p>
<a
href="index.php?option=com_postinstall&eid=700"
class="btn btn-primary">
<?php echo JText::_('COM_CPANEL_MESSAGES_REVIEW');
?>
</a>
</p>
</div>
</div>
<?php endif; ?>
<div class="row-fluid">
<?php
$spans = 0;
foreach ($this->modules as $module)
{
// Get module parameters
$params = new Registry($module->params);
$bootstrapSize = $params->get('bootstrap_size');
if (!$bootstrapSize)
{
$bootstrapSize = 12;
}
$spans += $bootstrapSize;
if ($spans > 12)
{
echo '</div><div class="row-fluid">';
$spans = $bootstrapSize;
}
echo JModuleHelper::renderModule($module, array('style' =>
'well'));
}
?>
</div>
</div>
</div>
views/cpanel/tmpl/default.xml000064400000000322151161735010012262
0ustar00<?xml version="1.0" encoding="utf-8"?>
<metadata>
<layout title="COM_CPANEL_CPANEL_VIEW_DEFAULT_TITLE">
<message>
<![CDATA[COM_CPANEL_CPANEL_VIEW_DEFAULT_TITLE_DESC]]>
</message>
</layout>
</metadata>
views/cpanel/view.html.php000064400000003136151161735010011574
0ustar00<?php
/**
* @package Joomla.Administrator
* @subpackage com_cpanel
*
* @copyright Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
* @license GNU General Public License version 2 or later; see
LICENSE.txt
*/
defined('_JEXEC') or die;
/**
* HTML View class for the Cpanel component
*
* @since 1.0
*/
class CpanelViewCpanel extends JViewLegacy
{
/**
* Array of cpanel modules
*
* @var array
*/
protected $modules = null;
/**
* Execute and display a template script.
*
* @param string $tpl The name of the template file to parse;
automatically searches through the template paths.
*
* @return mixed A string if successful, otherwise an Error object.
*/
public function display($tpl = null)
{
// Set toolbar items for the page
JToolbarHelper::title(JText::_('COM_CPANEL'), 'home-2
cpanel');
JToolbarHelper::help('screen.cpanel');
$input = JFactory::getApplication()->input;
/*
* Set the template - this will display cpanel.php
* from the selected admin template.
*/
$input->set('tmpl', 'cpanel');
// Display the cpanel modules
$this->modules = JModuleHelper::getModules('cpanel');
try
{
$messages_model = FOFModel::getTmpInstance('Messages',
'PostinstallModel')->eid(700);
$messages = $messages_model->getItemList();
}
catch (RuntimeException $e)
{
$messages = array();
// Still render the error message from the Exception object
JFactory::getApplication()->enqueueMessage($e->getMessage(),
'error');
}
$this->postinstall_message_count = count($messages);
parent::display($tpl);
}
}