Server : LiteSpeed System : Linux server 3.10.0-1160.90.1.el7.x86_64 #1 SMP Thu May 4 15:21:22 UTC 2023 x86_64 User : alsaif ( 1057) PHP Version : 7.4.33 Disable Function : show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname Directory : /home/alsaif/public_html/administrator/components/com_falang/views/manage/tmpl/ |
<?php
/**
* @package Falang for Joomla!
* @author Stéphane Bouey <stephane.bouey@faboba.com> - http://www.faboba.com
* @license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
* @copyright Copyright (C) 2010-2017. Faboba.com All rights reserved.
*/
// No direct access to this file
defined('_JEXEC') or die;
?>
<script language="javascript" type="text/javascript">
function updateResultDiv( resultInfo, type ) {
resultDiv = document.getElementById("manage_results");
if( type == 'div' ) {
resultDiv.innerHTML = resultInfo.innerHTML;
} else {
resultDiv.innerHTML = resultInfo;
}
}
function executeCopyOriginal( toLanguage, confirmCheck, copyCat ) {
if( toLanguage == null || toLanguage.value == -1 ) return;
var link = 'index.php?option=com_falang&task=manage.copy&type=original_language&phase=2';
if( confirmCheck.checked == true ) {
if( !window.confirm( '<?php echo JText::_('CONFIRM_COPY_TO', true);?>' ) ) return;
link += '&overwrite=1';
} else {
link += '&overwrite=0';
}
link += '&language_id=' +toLanguage.value;
// adding all requested catids to one string
var catString = '';
for(var i=0; i<copyCat.length; i++) {
if( copyCat[i].value != null && copyCat[i].checked == true ) {
if(catString != '') {
catString += ',';
}
catString += copyCat[i].value;
}
}
link += '&state_catid=' + catString;
ajaxFrame = document.getElementById("ajaxFrame");
ajaxFrame.contentDocument.location.href = link;
}
</script>
<form action="index.php" method="post" name="adminForm">
<table class="adminform">
<tr>
<td width="45%" valign="top">
<div id="cpanel">
<?php
$link = 'index.php?option=com_falang&task=manage.copy&type=original_language';
$this->_quickiconButton( $link, 'icon-48-manage-translations.png', JText::_('Copy Original to Language'), '/administrator/components/com_falang/assets/images/', 'ajaxFrame', "updateResultDiv('" .JText::_('Processing', 'text'). "');" );
/*
echo '<div style="clear: both;" />';
$link = 'index.php?option=com_falang&task=copy&act=manage&type=translation_language';
HTML_joomfish::_quickiconButton( $link, 'dbrestore.png', JText::_('Copy Translation to Langage'), '/administrator/images/', 'ajaxFrame', "updateResultDiv('" .JText::_('Processing', 'text'). "');" );
$link = 'index.php?option=com_falang&task=update&act=manage&type=original_value';
HTML_joomfish::_quickiconButton( $link, 'query.png', JText::_('Update original values'), '/administrator/images/', 'ajaxFrame', "updateResultDiv('" .JText::_('Processing'). "', 'text');" );
*/
?>
</div>
</td>
<td width="55%" valign="top">
<div style="width: 98%; height: 100%;">
<h3><?php echo JText::_('Management info');?></h3>
<div id="manage_results"><?php echo JText::_('MANAGEMENT_INTRO');?></div>
</div>
<iframe style="display: none;" id="ajaxFrame" name="ajaxFrame" ></iframe>
</td>
</tr>
</table>
<input type="hidden" name="option" value="com_falang" />
<input type="hidden" name="task" value="cpanel.show" />
<input type="hidden" name="boxchecked" value="0" />
<input type="hidden" name="<?php echo JSession::getFormToken(); ?>" value="1" />
</form>