Server IP : 195.201.23.43 / Your IP : 18.188.146.223 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_users/note/ |
Upload File : |
<?php /** * @package Joomla.Administrator * @subpackage com_users * * @copyright (C) 2015 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('_JEXEC') or die; JHtml::_('behavior.formvalidator'); JFactory::getDocument()->addScriptDeclaration(' jQuery(document).ready(function() { Joomla.submitbutton = function(task) { if (task == "note.cancel" || document.formvalidator.isValid(document.getElementById("note-form"))) { ' . $this->form->getField('body')->save() . ' Joomla.submitform(task, document.getElementById("note-form")); } } });'); ?> <form action="<?php echo JRoute::_('index.php?option=com_users&view=note&id=' . (int) $this->item->id);?>" method="post" name="adminForm" id="note-form" class="form-validate"> <div class="col main-section"> <fieldset class="adminform"> <legend><?php echo empty($this->item->id) ? JText::_('COM_USERS_NEW_NOTE') : JText::sprintf('COM_USERS_EDIT_NOTE', $this->item->id); ?></legend> <ul class="adminformlist"> <li> <?php echo $this->form->getLabel('subject'); ?> <?php echo $this->form->getInput('subject'); ?> </li> <li> <div class="clr"></div> <?php echo $this->form->getLabel('user_id'); ?> <?php echo $this->form->getInput('user_id'); ?> </li> <li> <?php echo $this->form->getLabel('catid'); ?> <?php echo $this->form->getInput('catid'); ?> </li> <li> <?php echo $this->form->getLabel('state'); ?> <?php echo $this->form->getInput('state'); ?> </li> <li> <?php echo $this->form->getLabel('review_time'); ?> <?php echo $this->form->getInput('review_time'); ?> </li> <li> <?php echo $this->form->getLabel('version_note'); ?> <?php echo $this->form->getInput('version_note'); ?> </li> </ul> <div class="clr"></div> <?php echo $this->form->getLabel('body'); ?> <div class="clr"></div> <div class="editor"> <?php echo $this->form->getInput('body'); ?> </div> <input type="hidden" name="task" value="" /> <?php echo JHtml::_('form.token'); ?> </fieldset> </form>Private