/
home
/
suroeste
/
public_html
/
wp-content
/
plugins
/
akeebabackupwp
/
helpers
/
Solo
/
View
/
Migreight
/
/home/suroeste/public_html/wp-content/plugins/akeebabackupwp/helpers/Solo/View/Migreight
mkdir
upload
Name
Size
Mode
Actions
Html.php
919
0644
edit
dl
rm
Edit:
/home/suroeste/public_html/wp-content/plugins/akeebabackupwp/helpers/Solo/View/Migreight/Html.php
(919B)
<?php /** * @package solo * @copyright Copyright (c)2014-2024 Nicholas K. Dionysopoulos / Akeeba Ltd * @license GNU General Public License version 3, or later */ namespace Solo\View\Migreight; use Awf\Text\Text; use Solo\Model\Migreight; class Html extends \Awf\Mvc\DataView\Html { protected array $affectedProfiles; protected array $migratedFolders; public function __construct(?\Awf\Container\Container $container = null) { parent::__construct($container); $this->setTemplatePath(realpath(__DIR__ . '/../../ViewTemplates/Migreight')); } protected function onBeforeMain(): bool { $this->container->application->getDocument()->getToolbar()->setTitle(Text::_('COM_AKEEBA_MIGREIGHT_TITLE')); /** @var Migreight $model */ $model = $this->getModel(); $this->affectedProfiles = $model->getAffectedProfiles(); $this->migratedFolders = $model->getArchiveFolderMap(); return true; } }
Save
cmd:
run