?
GR0V Shell
GR0V shell
Linux www.koreapackagetour.com 2.6.32-042stab145.3 #1 SMP Thu Jun 11 14:05:04 MSK 2020 x86_64
<?php
/**
*/
// Disallow direct access to this file
defined('_JEXEC') or die('Restricted access');
jimport( 'joomla.application.component.view' );
class XiJCViewCPanel extends JView
{
/**
* The default method that will display the output of this view which is called by
* Joomla
*
* @param string template Template file name
**/
function display( $tpl = null )
{
// Load tooltips
JHTML::_('behavior.tooltip', '.hasTip');
jimport('joomla.html.pane');
$pane =& JPane::getInstance('sliders');
$this->setToolbar();
$this->assignRef( 'pane' , $pane );
parent::display( $tpl );
}
function updates( $tpl = null )
{
$this->setToolbar();
parent::display( $tpl);
}
/**
* Private method to set the toolbar for this view
*
* @access private
*
* @return null
**/
function setToolBar()
{
// Set the titlebar text
JToolBarHelper::title( JText::_( 'CONTROL PANEL' ), 'XiJC' );
$task=JRequest::getVar('task','');
if($task=='updates')
{
JToolBarHelper::back('Home' , 'index.php?option=com_xijc');
}
}
function addIcon( $image , $url , $text , $newWindow = false )
{
$lang =& JFactory::getLanguage();
$newWindow = ( $newWindow ) ? ' target="_blank"' : '';
?>
<div style="float:<?php echo ($lang->isRTL()) ? 'right' : 'left'; ?>;">
<div class="icon">
<a href="<?php echo $url; ?>"<?php echo $newWindow; ?>>
<?php echo JHTML::_('image', 'administrator/components/com_xijc/assets/images/' . $image , NULL, NULL, $text ); ?>
<span><?php echo $text; ?></span></a>
</div>
</div>
<?php
}
}
T1KUS90T