File Manager

Current Directory: /home/astoriaah/www/administrator/components/com_sh404sef/views/editnotfound/tmpl
Viewing File: /home/astoriaah/www/administrator/components/com_sh404sef/views/editnotfound/tmpl/default_j3.php
<?php /** * sh404SEF - SEO extension for Joomla! * * @author Yannick Gaultier * @copyright (c) Yannick Gaultier - Weeblr llc - 2022 * @package sh404SEF * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL * @version 4.24.1.4308 * @date 2022-05-31 */ // Security check to ensure this file is being included by a parent file. if (!defined('_JEXEC')) { die('Direct Access to this location is not allowed.'); } ?> <div id="sh404sef-popup" class="sh404sef-popup"> <div class="shmodal-toolbar row-fluid wbl-theme-default" id="shmodal-toolbar"> <div class="shmodal-toolbar-wrapper"> <div class="shmodal-toolbar-text"> <?php $title = $this->escape(Sh404sefHelperHtml::abridge($this->url->oldurl, 'editurl')); echo JText::_('COM_SH404SEF_NOT_FOUND_ENTER_REDIRECT_FOR') . ' ' . ShlHtmlBs_Helper::label($title, 'info', $dismiss = false, 'label-large') ; ?> </div> <div class="shmodal-toolbar-buttons" id="shmodal-toolbar-buttons"> <button class="btn btn-primary" id="shmodal-save-button" type="button"> <i class="icon-publish icon-white"> </i> <?php echo JText::_('JSAVE'); ?></button> <button class="btn" type="button" id="shmodal-close" onclick="window.parent.location.href=window.parent.location.href;"> <?php echo JText::_('JTOOLBAR_CLOSE'); ?> </button> <button class="btn" type="button" id="shmodal-cancel" onclick="window.parent.shlBootstrap.closeModal();"> <?php echo JText::_('JCANCEL'); ?> </button> </div> </div> </div> <div id="shmodal-message-block" class="shmodal-message-block"></div> <div class="shmodal-content wbl-theme-default" id="shmodal-content"> <?php echo ShlMvcLayout_Helper::render('com_sh404sef.general.message_block', $this); ?> <form action="index.php" method="post" name="adminForm" id="adminForm" class="form-validate form-horizontal"> <div id="editurl-container" class="row-fluid"> <?php $data = new stdClass(); $data->label = JText::_('COM_SH404SEF_NOT_FOUND_ENTER_REDIRECT_LABEL'); $data->input = '<input class="text_area" type="text" name="newurl" id="newurl" size="120" value="' . $this->escape($this->url->get('newurl')) . '" />'; $data->tip = JText::_('COM_SH404SEF_TT_ENTER_REDIRECT'); $data->name = "newurl"; echo ShlMvcLayout_Helper::render('com_sh404sef.form.fields.custom', $data); ?> <div> <input type="hidden" name="id" value="<?php echo $this->url->get('id'); ?>"/> <input type="hidden" name="c" value="editnotfound"/> <input type="hidden" name="option" value="com_sh404sef"/> <input type="hidden" name="task" value="save"/> <input type="hidden" name="format" value="raw"/> <?php echo JHTML::_('form.token'); ?> </div> </div> </form> </div> </div>