0byt3m1n1-V2
Path:
/
home
/
academiac
/
www
/
administrator
/
components
/
com_installer
/
views
/
install
/
tmpl
/
[
Home
]
File: default_form.php
<?php /** * @package Joomla.Administrator * @subpackage com_installer * @copyright Copyright (C) 2005 - 2014 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt * @since 1.5 */ // no direct access defined('_JEXEC') or die; ?> <script type="text/javascript"> Joomla.submitbutton = function(pressbutton) { var form = document.getElementById('adminForm'); // do field validation if (form.install_package.value == ""){ alert("<?php echo JText::_('COM_INSTALLER_MSG_INSTALL_PLEASE_SELECT_A_PACKAGE', true); ?>"); } else { form.installtype.value = 'upload'; form.submit(); } } Joomla.submitbutton3 = function(pressbutton) { var form = document.getElementById('adminForm'); // do field validation if (form.install_directory.value == ""){ alert("<?php echo JText::_('COM_INSTALLER_MSG_INSTALL_PLEASE_SELECT_A_DIRECTORY', true); ?>"); } else { form.installtype.value = 'folder'; form.submit(); } } Joomla.submitbutton4 = function(pressbutton) { var form = document.getElementById('adminForm'); // do field validation if (form.install_url.value == "" || form.install_url.value == "http://"){ alert("<?php echo JText::_('COM_INSTALLER_MSG_INSTALL_ENTER_A_URL', true); ?>"); } else { form.installtype.value = 'url'; form.submit(); } } </script> <form enctype="multipart/form-data" action="<?php echo JRoute::_('index.php?option=com_installer&view=install');?>" method="post" name="adminForm" id="adminForm"> <?php if ($this->ftp) : ?> <?php echo $this->loadTemplate('ftp'); ?> <?php endif; ?> <div class="width-70 fltlft"> <fieldset class="uploadform"> <legend><?php echo JText::_('COM_INSTALLER_UPLOAD_PACKAGE_FILE'); ?></legend> <label for="install_package"><?php echo JText::_('COM_INSTALLER_PACKAGE_FILE'); ?></label> <input class="input_box" id="install_package" name="install_package" type="file" size="57" /> <input class="button" type="button" value="<?php echo JText::_('COM_INSTALLER_UPLOAD_AND_INSTALL'); ?>" onclick="Joomla.submitbutton()" /> </fieldset> <div class="clr"></div> <fieldset class="uploadform"> <legend><?php echo JText::_('COM_INSTALLER_INSTALL_FROM_DIRECTORY'); ?></legend> <label for="install_directory"><?php echo JText::_('COM_INSTALLER_INSTALL_DIRECTORY'); ?></label> <input type="text" id="install_directory" name="install_directory" class="input_box" size="70" value="<?php echo $this->state->get('install.directory'); ?>" /> <input type="button" class="button" value="<?php echo JText::_('COM_INSTALLER_INSTALL_BUTTON'); ?>" onclick="Joomla.submitbutton3()" /> </fieldset> <div class="clr"></div> <fieldset class="uploadform"> <legend><?php echo JText::_('COM_INSTALLER_INSTALL_FROM_URL'); ?></legend> <label for="install_url"><?php echo JText::_('COM_INSTALLER_INSTALL_URL'); ?></label> <input type="text" id="install_url" name="install_url" class="input_box" size="70" value="http://" /> <input type="button" class="button" value="<?php echo JText::_('COM_INSTALLER_INSTALL_BUTTON'); ?>" onclick="Joomla.submitbutton4()" /> </fieldset> <input type="hidden" name="type" value="" /> <input type="hidden" name="installtype" value="upload" /> <input type="hidden" name="task" value="install.install" /> <?php echo JHtml::_('form.token'); ?> </div> </form>
©
2018.