Server IP : 195.201.23.43 / Your IP : 3.15.189.95 Web Server : Apache System : Linux webserver2.vercom.be 5.4.0-192-generic #212-Ubuntu SMP Fri Jul 5 09:47:39 UTC 2024 x86_64 User : kdecoratie ( 1041) PHP Version : 7.1.33-63+ubuntu20.04.1+deb.sury.org+1 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/kdecoratie/public_html/administrator/templates/hathor/html/com_admin/help/ |
Upload File : |
<?php /** * @package Joomla.Administrator * @subpackage Template.hathor * * @copyright (C) 2012 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('_JEXEC') or die; jimport('joomla.language.help'); ?> <form action="<?php echo JRoute::_('index.php?option=com_admin&view=help'); ?>" method="post" name="adminForm" id="adminForm"> <div class="width-50 fltrt helplinks"> <ul class="helpmenu"> <li><?php echo JHtml::_('link', JHelp::createUrl('JHELP_GLOSSARY'), JText::_('COM_ADMIN_GLOSSARY'), array('target' => 'helpFrame')) ?></li> <li><?php echo JHtml::_('link', 'https://www.gnu.org/licenses/gpl-2.0.html', JText::_('COM_ADMIN_LICENSE'), array('target' => 'helpFrame')) ?></li> <li><?php echo JHtml::_('link', $this->latest_version_check, JText::_('COM_ADMIN_LATEST_VERSION_CHECK'), array('target' => 'helpFrame')) ?></li> <li><?php echo JHtml::_('link', JHelp::createUrl('JHELP_START_HERE'), JText::_('COM_ADMIN_START_HERE'), array('target' => 'helpFrame')) ?></li> </ul> </div> <div class="clr"> </div> <div id="treecellhelp" class="width-20 fltleft"> <fieldset class="adminform whitebg" title="<?php echo JText::_('COM_ADMIN_ALPHABETICAL_INDEX'); ?>"> <legend><?php echo JText::_('COM_ADMIN_ALPHABETICAL_INDEX'); ?></legend> <div class="helpIndex"> <ul class="subext"> <?php foreach ($this->toc as $k => $v):?> <li> <?php $url = JHelp::createUrl('JHELP_'.strtoupper($k)); ?> <?php echo JHtml::_('link', $url, $v, array('target' => 'helpFrame'));?> </li> <?php endforeach;?> </ul> </div> </fieldset> </div> <div id="datacellhelp" class="width-80 fltrt"> <fieldset title="<?php echo JText::_('COM_ADMIN_VIEW'); ?>"> <legend> <?php echo JText::_('COM_ADMIN_VIEW'); ?> </legend> <iframe name="helpFrame" src="<?php echo $this->page;?>" class="helpFrame"></iframe> </fieldset> </div> </form>Private