primo commit
This commit is contained in:
1
administrator/components/com_jem/views/import/index.html
Normal file
1
administrator/components/com_jem/views/import/index.html
Normal file
@ -0,0 +1 @@
|
||||
<!DOCTYPE html><title></title>
|
||||
121
administrator/components/com_jem/views/import/tmpl/default.php
Normal file
121
administrator/components/com_jem/views/import/tmpl/default.php
Normal file
@ -0,0 +1,121 @@
|
||||
<?php
|
||||
/**
|
||||
* @package JEM
|
||||
* @copyright (C) 2013-2024 joomlaeventmanager.net
|
||||
* @copyright (C) 2005-2009 Christoph Lukes
|
||||
* @license https://www.gnu.org/licenses/gpl-3.0 GNU/GPL
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use Joomla\CMS\Router\Route;
|
||||
use Joomla\CMS\HTML\HTMLHelper;
|
||||
use Joomla\CMS\Language\Text;
|
||||
|
||||
?>
|
||||
<?php if($this->progress->step > 1) : ?>
|
||||
<meta http-equiv="refresh" content="1; url=index.php?option=com_jem&view=import&task=import.eventlistimport&step=<?php
|
||||
echo $this->progress->step; ?>&table=<?php echo $this->progress->table; ?>&current=<?php
|
||||
echo $this->progress->current; ?>&total=<?php echo $this->progress->total; ?>" />
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if (isset($this->sidebar)) : ?>
|
||||
<div id="j-sidebar-container" class="span2">
|
||||
<?php echo $this->sidebar; ?>
|
||||
</div>
|
||||
<div id="j-main-container" class="span10">
|
||||
<?php endif; ?>
|
||||
|
||||
<div id="j-main-container" class="j-main-container">
|
||||
<form action="index.php" method="post" name="adminForm" enctype="multipart/form-data" id="adminForm">
|
||||
<div>
|
||||
<strong><?php echo Text::_('COM_JEM_IMPORT_INSTRUCTIONS') ?></strong><br /><br />
|
||||
<?php echo Text::_("COM_JEM_IMPORT_INSTRUCTIONS_DESC"); ?><br />
|
||||
<?php echo Text::_("COM_JEM_IMPORT_COLUMNNAMESVENUES"); ?><br />
|
||||
<?php echo Text::_("COM_JEM_IMPORT_FIRSTROW"); ?><br />
|
||||
</div>
|
||||
<hr />
|
||||
<div>
|
||||
<fieldset class="adminform">
|
||||
<legend><strong><?php echo mb_strtoupper(Text::_('COM_JEM_IMPORT_VENUES'));?></strong></legend>
|
||||
<?php echo Text::_("COM_JEM_IMPORT_VENUES_DESC"); ?><br />
|
||||
<a onclick="return showblock(this);" class="import-fieldinfo"> <?php echo Text::_("COM_JEM_IMPORT_SHOW_VENUE_COLUMNS");?></a><div style="display: none;"><div style="background-color:silver;border:1px solid #808080"><?php echo implode(", ",$this->venuefields); ?></div></div><br />
|
||||
|
||||
<div style="display:inline-block"><label for="replace_venues"><?php echo Text::_('COM_JEM_IMPORT_REPLACEIFEXISTS').':'; ?></label></div>
|
||||
<div style="display:inline-block"><?php echo HTMLHelper::_('select.booleanlist', 'replace_venues', 'class="inputbox"', 0); ?></div><br/><br />
|
||||
|
||||
<label for="file"><?php echo Text::_('COM_JEM_IMPORT_SELECTCSV').':'; ?></label>
|
||||
<input type="file" id="venue-file-upload" accept="text/*" name="Filevenues" />
|
||||
<input type="submit" id="venue-file-upload-submit" value="<?php echo Text::_('COM_JEM_IMPORT_START'); ?>" onclick="document.getElementById('task1').value='import.csvvenuesimport';return true;"/>
|
||||
</fieldset>
|
||||
</div>
|
||||
<hr />
|
||||
<div>
|
||||
<fieldset class="adminform">
|
||||
<legend><strong><?php echo mb_strtoupper(Text::_('COM_JEM_IMPORT_CATEGORIES'));?></strong></legend>
|
||||
<?php echo Text::_("COM_JEM_IMPORT_CATEGORIES_DESC"); ?><br />
|
||||
<a onclick="return showblock(this);" class="import-fieldinfo"> <?php echo Text::_("COM_JEM_IMPORT_SHOW_CATEGORY_COLUMNS");?></a><div style="display: none;"><div style="background-color:silver;border:1px solid #808080"><?php echo implode(", ",$this->catfields); ?></div></div><br />
|
||||
|
||||
<div style="display:inline-block"><label for="replace_categories"><?php echo Text::_('COM_JEM_IMPORT_REPLACEIFEXISTS').':'; ?></label></div>
|
||||
<div style="display:inline-block"><?php echo HTMLHelper::_('select.booleanlist', 'replace_categories', 'class="inputbox"', 0); ?></div><br/><br />
|
||||
|
||||
<label for="file"><?php echo Text::_('COM_JEM_IMPORT_SELECTCSV').':'; ?></label>
|
||||
<input type="file" id="cat-file-upload" accept="text/*" name="Filecategories" />
|
||||
<input type="submit" id="cat-file-upload-submit" value="<?php echo Text::_('COM_JEM_IMPORT_START'); ?>" onclick="document.getElementById('task1').value='import.csvcategoriesimport';return true;"/>
|
||||
|
||||
</fieldset>
|
||||
<div class="clr"></div>
|
||||
</div>
|
||||
<hr />
|
||||
<div>
|
||||
<fieldset class="adminform">
|
||||
<legend><strong><?php echo mb_strtoupper(Text::_('COM_JEM_IMPORT_EVENTS'));?></strong></legend>
|
||||
<?php echo Text::_("COM_JEM_IMPORT_EVENTS_DESC"); ?><br />
|
||||
<a onclick="return showblock(this);" class="import-fieldinfo"> <?php echo Text::_("COM_JEM_IMPORT_SHOW_EVENT_COLUMNS");?></a><div style="display: none;"><div style="background-color:silver;border:1px solid #808080"><?php echo implode(", ",$this->eventfields) . ',categories'; ?></div></div><br />
|
||||
|
||||
<div style="display:inline-block"><label for="replace_events"><?php echo Text::_('COM_JEM_IMPORT_REPLACEIFEXISTS').':'; ?></label></div>
|
||||
<div style="display:inline-block"><?php echo HTMLHelper::_('select.booleanlist', 'replace_events', 'class="inputbox"', 0); ?></div><br /><br/>
|
||||
|
||||
<label for="file"><?php echo Text::_('COM_JEM_IMPORT_SELECTCSV').':'; ?></label>
|
||||
<input type="file" id="event-file-upload" accept="text/*" name="Fileevents" />
|
||||
<input type="submit" id="event-file-upload-submit" value="<?php echo Text::_('COM_JEM_IMPORT_START'); ?>" onclick="document.getElementById('task1').value='import.csveventimport';return true;"/>
|
||||
</fieldset>
|
||||
<div class="clr"></div>
|
||||
</div>
|
||||
<hr />
|
||||
<div>
|
||||
<fieldset class="adminform">
|
||||
<legend><strong><?php echo mb_strtoupper(Text::_('COM_JEM_IMPORT_CAT_EVENTS'));?></strong></legend>
|
||||
<?php echo Text::_("COM_JEM_IMPORT_CAT_EVENTS_DESC"); ?><br />
|
||||
<a onclick="return showblock(this);" class="import-fieldinfo"> <?php echo Text::_("COM_JEM_IMPORT_SHOW_CATEVENT_COLUMNS");?></a><div style="display: none;"><div style="background-color:silver;border:1px solid #808080"><?php echo implode(", ",$this->cateventsfields); ?></div></div><br />
|
||||
|
||||
<div style="display:inline-block"><label for="replace_catevents"><?php echo Text::_('COM_JEM_IMPORT_REPLACEIFEXISTS').':'; ?></label></div>
|
||||
<div style="display:inline-block"><?php echo HTMLHelper::_('select.booleanlist', 'replace_catevents', 'class="inputbox"', 0); ?></div><br /><br/>
|
||||
|
||||
<label for="file"><?php echo Text::_('COM_JEM_IMPORT_SELECTCSV').':'; ?></label>
|
||||
<input type="file" id="catevents-file-upload" accept="text/*" name="Filecatevents" />
|
||||
<input type="submit" id="catevents-file-upload-submit" value="<?php echo Text::_('COM_JEM_IMPORT_START'); ?>" onclick="document.getElementById('task1').value='import.csvcateventsimport';return true;"/>
|
||||
</fieldset>
|
||||
<div class="clr"></div>
|
||||
</div>
|
||||
|
||||
<?php echo HTMLHelper::_('form.token'); ?>
|
||||
<input type="hidden" name="option" value="com_jem" />
|
||||
<input type="hidden" name="view" value="import" />
|
||||
<input type="hidden" name="controller" value="import" />
|
||||
<input type="hidden" name="task" id="task1" value="" />
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script type='text/JavaScript'>
|
||||
function showblock(blockcontent) {
|
||||
var c=blockcontent.nextSibling;
|
||||
if(c.style.display=='none') {
|
||||
c.style.display='block';
|
||||
} else {
|
||||
c.style.display='none';
|
||||
}
|
||||
return false;
|
||||
}
|
||||
</script>
|
||||
@ -0,0 +1 @@
|
||||
<!DOCTYPE html><title></title>
|
||||
92
administrator/components/com_jem/views/import/view.html.php
Normal file
92
administrator/components/com_jem/views/import/view.html.php
Normal file
@ -0,0 +1,92 @@
|
||||
<?php
|
||||
/**
|
||||
* @package JEM
|
||||
* @copyright (C) 2013-2024 joomlaeventmanager.net
|
||||
* @copyright (C) 2005-2009 Christoph Lukes
|
||||
* @license https://www.gnu.org/licenses/gpl-3.0 GNU/GPL
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use Joomla\CMS\HTML\HTMLHelper;
|
||||
use Joomla\CMS\Language\Text;
|
||||
use Joomla\CMS\Toolbar\ToolbarHelper;
|
||||
use Joomla\CMS\Factory;
|
||||
/**
|
||||
* View class for the JEM import screen
|
||||
*
|
||||
* @package JEM
|
||||
*
|
||||
*/
|
||||
|
||||
//Load pane behavior
|
||||
jimport('joomla.html.pane');
|
||||
|
||||
class JemViewImport extends JemAdminView
|
||||
{
|
||||
|
||||
public function display($tpl = null) {
|
||||
// Load css
|
||||
// HTMLHelper::_('stylesheet', 'com_jem/backend.css', array(), true);
|
||||
$wa = Factory::getApplication()->getDocument()->getWebAssetManager();
|
||||
|
||||
$wa->registerStyle('jem.backend', 'com_jem/backend.css')->useStyle('jem.backend');
|
||||
|
||||
// Get data from the model
|
||||
$eventfields = $this->get('EventFields');
|
||||
$catfields = $this->get('CategoryFields');
|
||||
$venuefields = $this->get('VenueFields');
|
||||
$cateventsfields = $this->get('CateventsFields');
|
||||
|
||||
//assign vars to the template
|
||||
$this->eventfields = $eventfields;
|
||||
$this->catfields = $catfields;
|
||||
$this->venuefields = $venuefields;
|
||||
$this->cateventsfields = $cateventsfields;
|
||||
|
||||
$this->eventlistVersion = $this->get('EventlistVersion');
|
||||
$this->eventlistTables = $this->get('EventlistTablesCount');
|
||||
$this->jemTables = $this->get('JemTablesCount');
|
||||
$this->existingJemData = $this->get('ExistingJemData');
|
||||
|
||||
$app = Factory::getApplication();
|
||||
$jinput = $app->input;
|
||||
$progress = new stdClass();
|
||||
$progress->step = $jinput->get('step', 0, 'INT');
|
||||
$progress->current = $jinput->get('current', 0, 'INT');
|
||||
$progress->total = $jinput->get('total', 0, 'INT');
|
||||
$progress->table = $jinput->get('table', '', 'INT');
|
||||
$progress->prefix = $jinput->get('prefix', null, 'CMD');
|
||||
$progress->copyImages = $jinput->get('copyImages', null, 'INT');
|
||||
$progress->copyAttachments = $jinput->get('copyAttachments', null, 'INT');
|
||||
$progress->fromJ15 = $jinput->get('fromJ15', null, 'INT');
|
||||
$this->progress = $progress;
|
||||
$this->attachmentsPossible = !empty($this->eventlistTables['eventlist_attachments']);
|
||||
|
||||
// Do not show default prefix #__ but its replacement value
|
||||
$this->prefixToShow = $progress->prefix;
|
||||
if (empty($this->prefixToShow) || $this->prefixToShow == "#__") {
|
||||
$this->prefixToShow = $app->get('dbprefix');
|
||||
}
|
||||
|
||||
// add toolbar
|
||||
$this->addToolbar();
|
||||
|
||||
parent::display($tpl);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Add Toolbar
|
||||
*/
|
||||
protected function addToolbar()
|
||||
{
|
||||
ToolbarHelper::title(Text::_('COM_JEM_IMPORT'), 'tableimport');
|
||||
|
||||
ToolbarHelper::back();
|
||||
ToolbarHelper::divider();
|
||||
ToolbarHelper::inlinehelp();
|
||||
ToolBarHelper::help('import', true, 'https://www.joomlaeventmanager.net/documentation/manual/backend/control-panel/import-data');
|
||||
}
|
||||
}
|
||||
?>
|
||||
Reference in New Issue
Block a user