/
home
/
suroeste
/
public_html
/
wp-content
/
plugins
/
akeebabackupwp
/
helpers
/
Solo
/
Controller
/
/home/suroeste/public_html/wp-content/plugins/akeebabackupwp/helpers/Solo/Controller
mkdir
upload
Name
Size
Mode
Actions
Migreight.php
1067
0644
edit
dl
rm
Edit:
/home/suroeste/public_html/wp-content/plugins/akeebabackupwp/helpers/Solo/Controller/Migreight.php
(1067B)
<?php /** * @package solo * @copyright Copyright (c)2014-2024 Nicholas K. Dionysopoulos / Akeeba Ltd * @license GNU General Public License version 3, or later */ namespace Solo\Controller; use Awf\Mvc\Controller; use Awf\Text\Text; use RuntimeException; use Throwable; class Migreight extends Controller { private const MAX_TIME = 2; /** * Starts the migration * * @return void */ public function start() { // Store the necessary information to the session /** @var \Solo\Model\Migreight $model */ $model = $this->getModel(); try { // Migrate the profiles $model->migrateProfiles(); // Migrate the archives $model->migrateArchives(); $this->setRedirect( $this->container->router->route('index.php?view=migreight'), Text::_('COM_AKEEBA_MIGREIGHT_COMPLETE') ); } catch (RuntimeException $e) { if ($e->getCode() != 8087) { throw $e; } $this->setRedirect( $this->container->router->route('index.php?view=migreight'), Text::_('COM_AKEEBA_MIGREIGHT_INCOMPLETE') ); } } }
Save
cmd:
run