/
home
/
assocoweys
/
sompe
/
administrator
/
components
/
com_convertforms
/
views
/
forms
/
tmpl
/
Upload File
HOME
<?php /** * @package Convert Forms * @version 5.0.2 Pro * * @author Tassos Marinos <info@tassos.gr> * @link https://www.tassos.gr * @copyright Copyright © 2024 Tassos All Rights Reserved * @license GNU GPLv3 <http://www.gnu.org/licenses/gpl.html> or later */ defined('_JEXEC') or die; use Joomla\CMS\HTML\HTMLHelper; use Joomla\CMS\Language\Text; use Joomla\CMS\Router\Route; ?> <form onsubmit="return submitform();" action="<?php echo Route::_('index.php?option=com_convertforms&view=forms'); ?>" method="post" enctype="multipart/form-data" name="import-form" id="import-form"> <fieldset class="form-horizontal"> <legend><?php echo Text::_('NR_IMPORT_ITEMS'); ?></legend> <div class="control-group"> <label for="file" class="control-label"><?php echo Text::_('COM_CONVERTFORMS_CHOOSE_FILE'); ?></label> <div class="controls"> <input class="input_box" id="file" name="file" type="file" size="57" /> </div> </div> <div class="control-group"> <label for="publish_all" class="control-label"><?php echo Text::_('NR_PUBLISH_ITEMS'); ?></label> <div class="controls"> <fieldset id="publish_all" class="radio btn-group"> <input type="radio" name="publish_all" id="publish_all0" value="0" /> <label for="publish_all0" class="btn"><?php echo Text::_('JNO'); ?></label> <input type="radio" name="publish_all" id="publish_all1" value="1" /> <label for="publish_all1" class="btn"><?php echo Text::_('JYES'); ?></label> <input type="radio" name="publish_all" id="publish_all2" value="2" checked="checked" /> <label for="publish_all2" class="btn"><?php echo Text::_('NR_AS_EXPORTED'); ?></label> </fieldset> </div> </div> <div class="form-actions"> <input class="btn btn-primary" type="submit" value="<?php echo Text::_('NR_IMPORT'); ?>" /> </div> </fieldset> <input type="hidden" name="task" value="forms.import" /> <?php echo HTMLHelper::_('form.token'); ?> </form> <script language="javascript" type="text/javascript"> /** * Submit the admin form * * small hack: let task decides where it comes */ function submitform() { var file = jQuery('#file').val(); if (file) { var dot = file.lastIndexOf("."); if (dot != -1) { var ext = file.substr(dot, file.length); if (ext == '.cnvf') { return true; } } } alert('<?php echo Text::_('NR_PLEASE_CHOOSE_A_VALID_FILE'); ?>'); return false; } </script>