| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /Old Sites/ees_request/administrator/components/com_printme/views/dashboard/tmpl/ |
Upload File : |
<?php defined('_JEXEC') or die('Restricted access'); ?>
<?php JHTML::_('script', 'printme.js', 'media/com_printme/js/'); ?>
<?php $state = @$this->state; ?>
<?php $form = @$this->form; ?>
<?php $items = @$this->items; ?>
<form action="<?php echo JRoute::_( @$form['action'] )?>" method="post" name="adminForm" enctype="multipart/form-data">
<?php echo PrintmeGrid::pagetooltip( JRequest::getVar('view') ); ?>
<table style="width: 100%;">
<tr>
<td style="width: 70%; max-width: 70%; vertical-align: top; padding: 0px 5px 0px 5px;">
<?php
// jimport('joomla.html.pane');
// $tabs = JPane::getInstance( 'tabs' );
//
// echo $tabs->startPane("tabone");
// echo $tabs->startPanel( JText::_( 'Orders' ), "orders" );
//
// echo "<h2>".@$this->graph->title."</h2>";
// echo @$this->graph->image;
//
// echo $tabs->endPanel();
// echo $tabs->startPanel( JText::_( 'Amounts' ), "amounts" );
//
// echo "<h2>".@$this->graphSum->title."</h2>";
// echo @$this->graphSum->image;
//
// echo $tabs->endPanel();
// echo $tabs->endPane();
?>
<?php
$modules = JModuleHelper::getModules("printme_dashboard_main");
$document = &JFactory::getDocument();
$renderer = $document->loadRenderer('module');
$attribs = array();
$attribs['style'] = 'xhtml';
foreach ( @$modules as $mod )
{
echo $renderer->render($mod, $attribs);
}
?>
</td>
<td style="vertical-align: top; width: 30%; min-width: 30%; padding: 0px 5px 0px 5px;">
<?php
$modules = JModuleHelper::getModules("printme_dashboard_right");
$document = &JFactory::getDocument();
$renderer = $document->loadRenderer('module');
$attribs = array();
$attribs['style'] = 'xhtml';
foreach ( @$modules as $mod )
{
$mod_params = new JParameter( $mod->params );
if ($mod_params->get('hide_title', '1')) { $mod->showtitle = '0'; }
echo $renderer->render($mod, $attribs);
}
?>
</td>
</tr>
</table>
<?php echo $this->form['validate']; ?>
</form>