Lines Matching +full:continue +full:- +full:on +full:- +full:error
14 * @license GPL 2 http://www.gnu.org/licenses/gpl-2.0.html
28 $repo->checkAccess();
30 msg($e->getMessage(), -1);
33 // Only continue if there is something to do
34 …if (!$INPUT->post->has('fn') && !$INPUT->post->str('installurl') && !isset($_FILES['installfile'])…
39 // Run actions on the installer
40 $installer = new Installer($INPUT->post->bool('overwrite'));
42 foreach ($INPUT->post->arr('fn') as $action => $extensions) {
49 $installer->installExtension($ext);
52 $installer->uninstall($ext);
55 $ext->enable();
58 $ext->disable();
63 if ($INPUT->post->str('installurl')) {
64 $installer->installFromURL($INPUT->post->str('installurl'));
65 …} elseif (isset($_FILES['installfile']) && $_FILES['installfile']['error'] !== UPLOAD_ERR_NO_FILE)…
66 $installer->installFromUpload('installfile');
69 msg(hsc($e->getMessage()), -1);
73 $processed = $installer->getProcessed();
76 msg(sprintf($this->getLang('msg_install_success'), $id), 1);
78 msg(sprintf($this->getLang('msg_update_success'), $id), 1);
80 msg(sprintf($this->getLang('msg_nooverwrite'), $id), 0);
82 msg(sprintf($this->getLang('msg_delete_success'), $id), 1);
88 send_redirect($gui->tabURL($gui->currentTab(), [], '&', true));
96 echo '<h1>' . $this->getLang('menu') . '</h1>';
99 echo $gui->render();