Done !
| Server IP : 46.105.57.169 / Your IP : 216.73.216.67 Web Server : Apache System : Linux webm002.cluster120.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : verseaumee ( 152031) PHP Version : 8.5.7 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/verseaumee/www/administrator/components/com_akeeba/View/FileFilters/tmpl/ |
Upload File : |
<?php
/**
* @package akeebabackup
* @copyright Copyright (c)2006-2019 Nicholas K. Dionysopoulos / Akeeba Ltd
* @license GNU General Public License version 3, or later
*/
defined('_JEXEC') or die();
$ajaxUrl = addslashes('index.php?option=com_akeeba&view=FileFilters&task=ajax');
$loadingUrl = addslashes($this->container->template->parsePath('media://com_akeeba/icons/loading.gif'));
$this->json = addcslashes($this->json, "'");
$js = <<< JS
;// This comment is intentionally put here to prevent badly written plugins from causing a Javascript error
// due to missing trailing semicolon and/or newline in their code.
akeeba.System.documentReady(function() {
akeeba.System.params.AjaxURL = '$ajaxUrl';
akeeba.Fsfilters.loadingGif = '$loadingUrl';
// Bootstrap the page display
var data = eval({$this->json});
akeeba.Fsfilters.renderTab(data);
});
JS;
$this->getContainer()->template->addJSInline($js);
?>
<?php echo $this->loadAnyTemplate('admin:com_akeeba/CommonTemplates/ErrorModal'); ?>
<?php echo $this->loadAnyTemplate('admin:com_akeeba/CommonTemplates/ProfileName'); ?>
<div class="akeeba-form--inline akeeba-panel--info">
<div class="akeeba-form-group">
<label><?php echo \JText::_('COM_AKEEBA_FILEFILTERS_LABEL_ROOTDIR'); ?></label>
<?php echo $this->root_select; ?>
</div>
<div id="addnewfilter" class="akeeba-form-group--actions">
<label>
<?php echo \JText::_('COM_AKEEBA_FILEFILTERS_LABEL_ADDNEWFILTER'); ?>
</label>
<button class="akeeba-btn--grey" onclick="akeeba.Fsfilters.addNew('directories'); return false;"><?php echo \JText::_('COM_AKEEBA_FILEFILTERS_TYPE_DIRECTORIES'); ?></button>
<button class="akeeba-btn--grey" onclick="akeeba.Fsfilters.addNew('skipfiles'); return false;"><?php echo \JText::_('COM_AKEEBA_FILEFILTERS_TYPE_SKIPFILES'); ?></button>
<button class="akeeba-btn--grey" onclick="akeeba.Fsfilters.addNew('skipdirs'); return false;"><?php echo \JText::_('COM_AKEEBA_FILEFILTERS_TYPE_SKIPDIRS'); ?></button>
<button class="akeeba-btn--grey" onclick="akeeba.Fsfilters.addNew('files'); return false;"><?php echo \JText::_('COM_AKEEBA_FILEFILTERS_TYPE_FILES'); ?></button>
</div>
</div>
<form id="ak_roots_container_tab" class="akeeba-panel--primary">
<div id="ak_list_container">
<table id="ak_list_table" class="akeeba-table--striped">
<thead>
<tr>
<td width="250px"><?php echo \JText::_('COM_AKEEBA_FILEFILTERS_LABEL_TYPE'); ?></td>
<td><?php echo \JText::_('COM_AKEEBA_FILEFILTERS_LABEL_FILTERITEM'); ?></td>
</tr>
</thead>
<tbody id="ak_list_contents">
</tbody>
</table>
</div>
</form>