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/RegExFileFilter/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(JUri::base().'index.php?option=com_akeeba&view=RegExFileFilters&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';
var data = JSON.parse('{$this->json}');
akeeba.Regexfsfilters.render(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-panel--information">
<div class="akeeba-form-section">
<div class="akeeba-form--inline">
<label><?php echo \JText::_('COM_AKEEBA_FILEFILTERS_LABEL_ROOTDIR'); ?></label>
<span id="ak_roots_container_tab">
<?php echo $this->root_select; ?>
</span>
</div>
</div>
</div>
<div class="akeeba-container--primary">
<div id="ak_list_container">
<table id="table-container" class="akeeba-table--striped--dynamic-line-editor">
<thead>
<tr>
<th width="120px"> </th>
<th width="250px"><?php echo \JText::_('COM_AKEEBA_FILEFILTERS_LABEL_TYPE'); ?></th>
<th><?php echo \JText::_('COM_AKEEBA_FILEFILTERS_LABEL_FILTERITEM'); ?></th>
</tr>
</thead>
<tbody id="ak_list_contents" class="table-container">
</tbody>
</table>
</div>
</div>