| Server IP : 213.186.33.4 / Your IP : 216.73.216.193 Web Server : Apache System : Linux webm006.cluster103.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : awebpaca ( 35430) PHP Version : 8.5.0 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/awebpaca/visitevirtuelle/administrator/components/com_akeeba/views/dbef/tmpl/ |
Upload File : |
<?php
/**
* @package AkeebaBackup
* @copyright Copyright (c)2009-2014 Nicholas K. Dionysopoulos
* @license GNU General Public License version 3, or later
*
* @since 1.3
*/
defined('_JEXEC') or die();
JHtml::_('behavior.framework');
?>
<div id="dialog" title="<?php echo JText::_('DBFILTER_ERROR_TITLE') ?>">
</div>
<div class="alert alert-info">
<strong><?php echo JText::_('CPANEL_PROFILE_TITLE'); ?></strong>
#<?php echo $this->profileid; ?> <?php echo $this->profilename; ?>
</div>
<div class="well form-inline">
<div>
<label><?php echo JText::_('DBFILTER_LABEL_ROOTDIR') ?></label>
<span><?php echo $this->root_select; ?></span>
</div>
<div id="addnewfilter">
<label><?php echo JText::_('FSFILTER_LABEL_ADDNEWFILTER') ?></label>
<button class="btn" onclick="dbfilter_addnew('tables'); return false;"><?php echo JText::_('DBFILTER_TYPE_TABLES') ?></button>
<button class="btn" onclick="dbfilter_addnew('tabledata'); return false;"><?php echo JText::_('DBFILTER_TYPE_TABLEDATA') ?></button>
</div>
</div>
<fieldset>
<div id="ak_list_container">
<table id="ak_list_table" class="table table-striped">
<thead>
<tr>
<td width="250px"><?php echo JText::_('FILTERS_LABEL_TYPE') ?></td>
<td><?php echo JText::_('FILTERS_LABEL_FILTERITEM') ?></td>
</tr>
</thead>
<tbody id="ak_list_contents">
</tbody>
</table>
</div>
</fieldset>
<script type="text/javascript" language="javascript">
/**
* Callback function for changing the active root in Filesystem Filters
*/
function akeeba_active_root_changed()
{
(function($){
dbfilter_load_tab($('#active_root').val());
})(akeeba.jQuery);
}
akeeba.jQuery(document).ready(function($){
// Set the AJAX proxy URL
akeeba_ajax_url = '<?php echo AkeebaHelperEscape::escapeJS('index.php?option=com_akeeba&view=dbef&task=ajax') ?>';
// Set the media root
akeeba_ui_theme_root = '<?php echo $this->mediadir ?>';
// Create the dialog
$("#dialog").dialog({
autoOpen: false,
closeOnEscape: false,
height: 200,
width: 300,
hide: 'slide',
modal: true,
position: 'center',
show: 'slide'
});
// Create an AJAX error trap
akeeba_error_callback = function( message ) {
var dialog_element = $("#dialog");
dialog_element.html(''); // Clear the dialog's contents
dialog_element.dialog('option', 'title', '<?php echo AkeebaHelperEscape::escapeJS(JText::_('CONFIG_UI_AJAXERRORDLG_TITLE')) ?>');
$(document.createElement('p')).html('<?php echo AkeebaHelperEscape::escapeJS(JText::_('CONFIG_UI_AJAXERRORDLG_TEXT')) ?>').appendTo(dialog_element);
$(document.createElement('pre')).html( message ).appendTo(dialog_element);
dialog_element.dialog('open');
};
// Push translations
akeeba_translations['UI-ROOT'] = '<?php echo AkeebaHelperEscape::escapeJS(JText::_('FILTERS_LABEL_UIROOT')) ?>';
akeeba_translations['UI-ERROR-FILTER'] = '<?php echo AkeebaHelperEscape::escapeJS(JText::_('FILTERS_LABEL_UIERRORFILTER')) ?>';
<?php
$filters = array('tables', 'tabledata');
foreach($filters as $type)
{
echo "\takeeba_translations['UI-FILTERTYPE-".strtoupper($type)."'] = '".
AkeebaHelperEscape::escapeJS(JText::_('DBFILTER_TYPE_'.strtoupper($type))).
"';\n";
}
?>
// Bootstrap the page display
var data = JSON.parse('<?php echo AkeebaHelperEscape::escapeJS($this->json,"'"); ?>');
dbfilter_render_tab(data);
});
</script>