TYPO3 CMS  TYPO3_6-2
UpdateScriptController.php
Go to the documentation of this file.
1 <?php
3 
23 
31  public function showAction($extensionKey) {
32  \TYPO3\CMS\Core\Utility\GeneralUtility::devLog('Request for update script', 'extensionmanager', 0, $extensionKey);
33 
35  $updateScriptUtility = $this->objectManager->get('TYPO3\\CMS\\Extensionmanager\\Utility\\UpdateScriptUtility');
36  $updateScriptResult = $updateScriptUtility->executeUpdateIfNeeded($extensionKey);
37  $this->view
38  ->assign('updateScriptResult', $updateScriptResult)
39  ->assign('extensionKey', $extensionKey);
40  }
41 }
static devLog($msg, $extKey, $severity=0, $dataVar=FALSE)