| Server IP : 81.19.159.101 / Your IP : 216.73.217.111 Web Server : Apache System : Linux www58.world4you.com 4.18.0-553.126.2.lve.el8.x86_64 #1 SMP Thu May 28 14:12:30 UTC 2026 x86_64 User : ftp8817043 ( 2681) PHP Version : 8.4.21 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/.sites/103/site8817043/web/wp-content/plugins/akeebabackupwp/app/Solo/View/Discover/ |
Upload File : |
<?php
/**
* @package solo
* @copyright Copyright (c)2014-2025 Nicholas K. Dionysopoulos / Akeeba Ltd
* @license GNU General Public License version 3, or later
*/
namespace Solo\View\Discover;
use Akeeba\Engine\Factory;
use Awf\Mvc\View;
use Awf\Text\Text;
use Awf\Utils\Template;
use Solo\Model\Discover;
class Html extends View
{
/**
* The directory we are currently listing
*
* @var string
*/
public $directory;
/**
* The list of importable archive files in the current directory
*
* @var array
*/
public $files;
/**
* Push state variables before showing the main page
*
* @return boolean
*/
public function onBeforeMain()
{
// Load the necessary Javascript
Template::addJs('media://js/solo/showon.js', $this->container->application);
Template::addJs('media://js/solo/configuration.js', $this->container->application);
Template::addJs('media://js/solo/discover.js', $this->container->application);
/** @var Discover $model */
$model = $this->getModel();
$directory = $model->getState('directory', '', 'path');
$this->directory = $directory;
if (empty($directory))
{
$config = Factory::getConfiguration();
$this->directory = $config->get('akeeba.basic.output_directory', '[DEFAULT_OUTPUT]');
}
// Push translations
$doc = $this->container->application->getDocument();
$doc->lang('COM_AKEEBA_CONFIG_UI_BROWSE');
$doc->lang('COM_AKEEBA_FILEFILTERS_LABEL_UIROOT');
$document = $this->container->application->getDocument();
$router = $this->container->router;
$document->addScriptOptions('akeeba.Discover.URLs.browser', $router->route('index.php?view=browser&tmpl=component&processfolder=1&folder='));
return true;
}
/**
* Push state variables before showing the discovery page
*
* @return boolean
*/
public function onBeforeDiscover()
{
/** @var Discover $model */
$model = $this->getModel();
$directory = $model->getState('directory', '');
$this->setLayout('discover');
$files = $model->getFiles();
$this->files = $files;
$this->directory = $directory;
return true;
}
}