Файловый менеджер - Редактировать - /home/wuectly/www/03cbe/message.zip
Назад
PK L�!]):gg- - view.html.phpnu &1i� <?php /** * @package Joomla.Administrator * @subpackage com_messages * * @copyright (C) 2008 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('_JEXEC') or die; /** * HTML View class for the Messages component * * @since 1.6 */ class MessagesViewMessage extends JViewLegacy { protected $form; protected $item; protected $state; /** * Execute and display a template script. * * @param string $tpl The name of the template file to parse; automatically searches through the template paths. * * @return mixed A string if successful, otherwise an Error object. * * @since 1.6 */ public function display($tpl = null) { $this->form = $this->get('Form'); $this->item = $this->get('Item'); $this->state = $this->get('State'); // Check for errors. if (count($errors = $this->get('Errors'))) { throw new Exception(implode("\n", $errors), 500); } parent::display($tpl); $this->addToolbar(); } /** * Add the page title and toolbar. * * @return void * * @since 1.6 */ protected function addToolbar() { if ($this->getLayout() == 'edit') { JFactory::getApplication()->input->set('hidemainmenu', true); JToolbarHelper::title(JText::_('COM_MESSAGES_WRITE_PRIVATE_MESSAGE'), 'envelope-opened new-privatemessage'); JToolbarHelper::save('message.save', 'COM_MESSAGES_TOOLBAR_SEND'); JToolbarHelper::cancel('message.cancel'); JToolbarHelper::help('JHELP_COMPONENTS_MESSAGING_WRITE'); } else { JToolbarHelper::title(JText::_('COM_MESSAGES_VIEW_PRIVATE_MESSAGE'), 'envelope inbox'); $sender = JUser::getInstance($this->item->user_id_from); if ($sender->authorise('core.admin') || $sender->authorise('core.manage', 'com_messages') && $sender->authorise('core.login.admin')) { JToolbarHelper::custom('message.reply', 'redo', null, 'COM_MESSAGES_TOOLBAR_REPLY', false); } JToolbarHelper::cancel('message.cancel'); JToolbarHelper::help('JHELP_COMPONENTS_MESSAGING_READ'); } } } PK L�!],�<�j j tmpl/default.phpnu &1i� <?php /** * @package Joomla.Administrator * @subpackage com_messages * * @copyright (C) 2008 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.core'); JHtml::_('formbehavior.chosen', 'select'); ?> <form action="<?php echo JRoute::_('index.php?option=com_messages'); ?>" method="post" name="adminForm" id="adminForm" class="form-horizontal"> <fieldset> <div class="control-group"> <div class="control-label"> <?php echo JText::_('COM_MESSAGES_FIELD_USER_ID_FROM_LABEL'); ?> </div> <div class="controls"> <?php echo $this->item->get('from_user_name'); ?> </div> </div> <div class="control-group"> <div class="control-label"> <?php echo JText::_('COM_MESSAGES_FIELD_DATE_TIME_LABEL'); ?> </div> <div class="controls"> <?php echo JHtml::_('date', $this->item->date_time, JText::_('DATE_FORMAT_LC2')); ?> </div> </div> <div class="control-group"> <div class="control-label"> <?php echo JText::_('COM_MESSAGES_FIELD_SUBJECT_LABEL'); ?> </div> <div class="controls"> <?php echo $this->item->subject; ?> </div> </div> <div class="control-group"> <div class="control-label"> <?php echo JText::_('COM_MESSAGES_FIELD_MESSAGE_LABEL'); ?> </div> <div class="controls"> <?php echo $this->item->message; ?> </div> </div> <input type="hidden" name="task" value="" /> <input type="hidden" name="reply_id" value="<?php echo $this->item->message_id; ?>" /> <?php echo JHtml::_('form.token'); ?> </fieldset> </form> PK L�!]���� � tmpl/edit.phpnu &1i� <?php /** * @package Joomla.Administrator * @subpackage com_messages * * @copyright (C) 2009 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('_JEXEC') or die; // Include the HTML helpers. JHtml::addIncludePath(JPATH_COMPONENT . '/helpers/html'); JHtml::_('behavior.formvalidator'); JHtml::_('behavior.keepalive'); JFactory::getDocument()->addScriptDeclaration(" Joomla.submitbutton = function(task) { if (task == 'message.cancel' || document.formvalidator.isValid(document.getElementById('message-form'))) { Joomla.submitform(task, document.getElementById('message-form')); } }; "); ?> <form action="<?php echo JRoute::_('index.php?option=com_messages'); ?>" method="post" name="adminForm" id="message-form" class="form-validate form-horizontal"> <fieldset class="adminform"> <div class="control-group"> <div class="control-label"> <?php echo $this->form->getLabel('user_id_to'); ?> </div> <div class="controls"> <?php echo $this->form->getInput('user_id_to'); ?> </div> </div> <div class="control-group"> <div class="control-label"> <?php echo $this->form->getLabel('subject'); ?> </div> <div class="controls"> <?php echo $this->form->getInput('subject'); ?> </div> </div> <div class="control-group"> <div class="control-label"> <?php echo $this->form->getLabel('message'); ?> </div> <div class="controls"> <?php echo $this->form->getInput('message'); ?> </div> </div> </fieldset> <input type="hidden" name="task" value="" /> <?php echo JHtml::_('form.token'); ?> </form> PK (�!]��M� � upgrade.phpnu &1i� <div class="alert alert-info" role="alert"> <h4><i class="icon-star"></i> Go Pro and get more from JCE <a href="https://www.joomlacontenteditor.net/buy" class="btn btn-primary" target="_blank" title="Get JCE Editor Pro"><strong>Get JCE Editor Pro</strong></a></h4> <ul> <li>Resize, Thumbnail and Edit images</li> <li>Manage Audio and Video</li> <li>Create styled image captions</li> <li>Manage and create links to files</li> <li>Edit HTML in the Source Code Editor</li> <li>Write faster with <a href="https://en.wikipedia.org/wiki/Markdown" title="Markdown" target="_blank"><strong>Markdown</strong></a> support</li> <li>And much more...</li> </ul> </div>PK (�!]�A�� � welcome.phpnu &1i� <div class="alert alert-info" role="alert"> <h2>Welcome to JCE Pro!</h2> <p>You will now need to add the Pro buttons you require to the editor toolbar of each profile in use.</p> <ol> <li>Go to <a href="index.php?option=com_jce&view=profiles"><u>Editor Profiles</u></a> and click on the name of a profile to edit it.</li> <li>Click on the Features & Layout tab, and scroll down to <strong>Current Editor Layout</strong></li> <li>Drag the buttons you require from the <strong>Available Buttons & Toolbars</strong> area into the <strong>Current Editor Layout</strong></li> <li>Click the <strong>Save</strong> button</li> </ol> </div>PK L�!]):gg- - view.html.phpnu &1i� PK L�!],�<�j j j tmpl/default.phpnu &1i� PK L�!]���� � tmpl/edit.phpnu &1i� PK (�!]��M� � � upgrade.phpnu &1i� PK (�!]�A�� � � welcome.phpnu &1i� PK � �
| ver. 1.4 |
Github
|
.
| PHP 8.1.34 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка