| Current Path : /var/www/administrator/components/com_jcomments/views/import/tmpl/ |
| Current File : /var/www/administrator/components/com_jcomments/views/import/tmpl/modal.php |
<?php
/**
* JComments - Joomla Comment System
*
* @version 3.0
* @package JComments
* @author Sergey M. Litvinov (smart@joomlatune.ru)
* @copyright (C) 2006-2013 by Sergey M. Litvinov (http://www.joomlatune.ru)
* @license GNU/GPL: http://www.gnu.org/copyleft/gpl.html
*/
defined('_JEXEC') or die;
$source = $this->state->get('import.source');
$language = $this->state->get('import.language');
?>
<script type="text/javascript">
(function ($) {
$(document).ready(function () {
JCommentsImport.setup('<?php echo $this->importUrl; ?>');
JCommentsImport.onSuccess = function () {
var oldHeader = $('#jcomments-modal-header').html();
var oldMessage = $('#jcomments-modal-message').html();
$('#jcomments-modal-header').html('<?php echo JText::_('A_REFRESH_OBJECTS_INFO'); ?>');
$('#jcomments-modal-message').html('');
JCommentsObjects.setup('<?php echo $this->objectsUrl; ?>');
JCommentsObjects.onSuccess = function () {
if (oldHeader) {
$('#jcomments-modal-header').html(oldHeader);
$('#jcomments-modal-message').html(oldMessage);
}
};
JCommentsObjects.run('<?php echo $this->hash; ?>', 0, null, null);
};
JCommentsImport.run('<?php echo $source; ?>', '<?php echo $language; ?>', 0);
});
})(jQuery);
</script>
<div id="jcomments-modal-container">
<br/>
<h1 id="jcomments-modal-header"><?php echo JText::_('A_IMPORT'); ?></h1>
<p id="jcomments-modal-message"> </p>
<div id="jcomments-progress-container" class="jcomments-progressbar"></div>
</div>