| 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/config/tmpl/ |
Upload File : |
<?php defined('_JEXEC') or die('Restricted access'); ?>
<?php JHTML::_('script', 'printme.js', 'media/com_printme/js/'); ?>
<?php $form = @$this->form; ?>
<?php $row = @$this->row; ?>
<form action="<?php echo JRoute::_( @$form['action'] )?>" method="post" name="adminForm" enctype="multipart/form-data">
<div id='onBeforeDisplay_wrapper'>
<?php
$dispatcher = JDispatcher::getInstance();
$dispatcher->trigger( 'onBeforeDisplayConfigForm', array() );
?>
</div>
<table style="width: 100%;">
<tbody>
<tr>
<td style="vertical-align: top; min-width: 70%;">
<table class="adminlist">
<tbody>
<tr>
<th style="width: 25%;">
<?php echo JText::_( 'Display Breadcrumb' ); ?>
</th>
<td>
<?php echo JHTML::_('select.booleanlist', 'display_breadcrumb', '', @$row->display_breadcrumb ); ?>
</td>
</tr>
<tr>
<th style="width: 25%;">
<?php echo JText::_( 'Display Pagetitle' ); ?>
</th>
<td>
<?php echo JHTML::_('select.booleanlist', 'display_pagetitle', '', @$row->display_pagetitle ); ?>
</td>
</tr>
<tr>
<th style="width: 25%;">
<?php echo JText::_( 'Header HTML' ); ?>
</th>
<td>
<?php $editor = &JFactory::getEditor(); ?>
<?php echo $editor->display( 'header_html', @$row->header_html, '100%', '450', '100', '20' ) ; ?>
</td>
</tr>
<tr>
<th style="width: 25%;">
<?php echo JText::_( 'Footer HTML' ); ?>
</th>
<td>
<?php $editor = &JFactory::getEditor(); ?>
<?php echo $editor->display( 'footer_html', @$row->footer_html, '100%', '450', '100', '20' ) ; ?>
</td>
</tr>
</tbody>
</table>
<?php
echo $this->sliders->endPanel();
// if there are plugins, display them accordingly
if ($this->items_sliders)
{
$tab=1;
$pane=2;
for ($i=0, $count=count($this->items_sliders); $i < $count; $i++) {
if ($pane == 1) {
// echo $this->sliders->startPane( "pane_$pane" );
}
$item = $this->items_sliders[$i];
echo $this->sliders->startPanel( JText::_( $item->element ), $item->element );
// load the plugin
$import = JPluginHelper::importPlugin( strtolower( 'Printme' ), $item->element );
// fire plugin
$dispatcher = JDispatcher::getInstance();
$dispatcher->trigger( 'onDisplayConfigFormSliders', array( $item, $this->row ) );
echo $this->sliders->endPanel();
if ($i == $count-1) {
// echo $this->sliders->endPane();
}
}
}
echo $this->sliders->endPane();
?>
</td>
<td style="vertical-align: top; max-width: 30%;">
<?php echo PrintmeGrid::pagetooltip( JRequest::getVar('view') ); ?>
<div id='onDisplayRightColumn_wrapper'>
<?php
$dispatcher = JDispatcher::getInstance();
$dispatcher->trigger( 'onDisplayConfigFormRightColumn', array() );
?>
</div>
</td>
</tr>
</tbody>
</table>
<div id='onAfterDisplay_wrapper'>
<?php
$dispatcher = JDispatcher::getInstance();
$dispatcher->trigger( 'onAfterDisplayConfigForm', array() );
?>
</div>
<input type="hidden" name="task" value="" />
<input type="hidden" name="boxchecked" value="" />
<input type="hidden" name="filter_order" value="<?php echo @$state->order; ?>" />
<input type="hidden" name="filter_direction" value="<?php echo @$state->direction; ?>" />
<?php echo $this->form['validate']; ?>
</form>