TYPO3 CMS  TYPO3_8-7
Compatibility6ExtractionUpdate.php
Go to the documentation of this file.
1 <?php
3 
4 /*
5  * This file is part of the TYPO3 CMS project.
6  *
7  * It is free software; you can redistribute it and/or modify it under
8  * the terms of the GNU General Public License, either version 2
9  * of the License, or any later version.
10  *
11  * For the full copyright and license information, please read the
12  * LICENSE.txt file that was distributed with this source code.
13  *
14  * The TYPO3 project - inspiring people to share!
15  */
16 
18 
23 {
27  protected $title = 'Install extension "compatibility6" from TER';
28 
32  protected $extensionKey = 'compatibility6';
33 
37  protected $extensionDetails = [
38  'compatibility6' => [
39  'title' => 'Compatibility Mode for TYPO3 CMS 6.x',
40  'description' => 'Provides an additional backwards-compatibility layer with legacy functionality for sites that haven\'t fully migrated to TYPO3 v7 yet.',
41  'versionString' => '7.6.4',
42  'composerName' => 'friendsoftypo3/compatibility6',
43  ],
44  ];
45 
52  public function checkForUpdate(&$description)
53  {
54  $description = 'The extension "compatibility6" (Compatibility Mode for TYPO3 CMS 6.x) was extracted into '
55  . 'the TYPO3 Extension Repository. This update downloads the TYPO3 Extension from the TER.';
56 
57  $updateNeeded = false;
58 
59  if (!$this->isWizardDone()) {
60  $updateNeeded = true;
61  }
62 
63  return $updateNeeded;
64  }
65 
72  public function getUserInput($inputPrefix)
73  {
74  return '
75  <div class="panel panel-danger">
76  <div class="panel-heading">Are you really sure?</div>
77  <div class="panel-body">
78  <p>You should install EXT:compatibility6 only if you really need it.</p>
79  <p>This update wizard cannot check if the extension was installed before the update.</p>
80  <p>Are you really sure, you want to install EXT:compatibility6?</p>
81  <div class="btn-group clearfix" data-toggle="buttons">
82  <label class="btn btn-default active">
83  <input type="radio" name="' . $inputPrefix . '[install]" value="0" checked="checked" /> no, don\'t install
84  </label>
85  <label class="btn btn-default">
86  <input type="radio" name="' . $inputPrefix . '[install]" value="1" /> yes, please install
87  </label>
88  </div>
89  </div>
90  </div>
91  ';
92  }
93 
101  public function performUpdate(array &$databaseQueries, &$customMessage)
102  {
103  $requestParams = GeneralUtility::_GP('install');
104  if (!isset($requestParams['values']['compatibility6Extension']['install'])) {
105  return false;
106  }
107  $install = (int)$requestParams['values']['compatibility6Extension']['install'];
108 
109  if ($install === 1) {
110  // user decided to install extension, install and mark wizard as done
111  $updateSuccessful = $this->installExtension($this->extensionKey, $customMessage);
112  if ($updateSuccessful) {
113  $this->markWizardAsDone();
114  return true;
115  }
116  } else {
117  // user decided to not install extension, mark wizard as done
118  $this->markWizardAsDone();
119  return true;
120  }
121  return $updateSuccessful;
122  }
123 }