Your IP : 216.73.216.224


Current Path : /var/www/html/administrator/components/com_osmembership/view/datamigration/tmpl/
Upload File :
Current File : /var/www/html/administrator/components/com_osmembership/view/datamigration/tmpl/default.php

<?php
/**
 * @version		1.0.0
 * @package		Joomla
 * @subpackage	Docman2EDocman
 * @author		Tuan Pham Ngoc
 * @copyright	Copyright (C) 2018-2011 Ossolution Team
 * @license		GNU/GPL, see LICENSE.php
 */
defined('_JEXEC') or die ;

use Joomla\CMS\Factory;
use Joomla\CMS\HTML\HTMLHelper;
use Joomla\CMS\Toolbar\ToolbarHelper;

ToolbarHelper::title('Data Migration');

$app = Factory::getApplication();

$start = $app->getInput()->getInt('start', 0);

$app->getDocument()
	->getWebAssetManager()
	->registerAndUseScript('com_osmembership.admin-datamigration-default', 'media/com_osmembership/js/admin-datamigration-default.min.js');
?>
<form action="index.php?option=com_osmembership&task=datamigration.process&start=<?php echo $start; ?>" method="post" name="adminForm" id="adminForm">
	<div class="row-fluid">
		<div class="span12" style="text-align:center;">
			<div class="img img-polaroid" style="padding:10px;text-align:left; font-size: 16px; font-weight: bold;">
				<p class="alert alert-danger">
					The system is migrating your data to new structure to support Membership Reporting feature added to Membership Pro 2.6.0. Please don't do anything until this process complete and you are being redirected back to Membership Pro Dashboard
				</p>
			</div>
		</div>
	</div>
	<?php echo HTMLHelper::_('form.token'); ?>
</form>