‪TYPO3CMS  9.5
ReferenceIndexUpdateCommand.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 
17 use Symfony\Component\Console\Command\Command;
18 use Symfony\Component\Console\Input\InputInterface;
19 use Symfony\Component\Console\Input\InputOption;
20 use Symfony\Component\Console\Output\OutputInterface;
24 
28 class ‪ReferenceIndexUpdateCommand extends Command
29 {
33  public function ‪configure()
34  {
35  $this->setDescription('Update the reference index of TYPO3')
36  ->addOption(
37  'check',
38  'c',
39  InputOption::VALUE_NONE,
40  'Only check the reference index of TYPO3'
41  );
42  }
43 
50  protected function ‪execute(InputInterface $input, OutputInterface ‪$output)
51  {
53 
54  $isTestOnly = $input->getOption('check');
55  $isSilent = ‪$output->getVerbosity() !== OutputInterface::VERBOSITY_QUIET;
56 
58  $referenceIndex = GeneralUtility::makeInstance(ReferenceIndex::class);
59  $referenceIndex->enableRuntimeCache();
60  $referenceIndex->updateIndex($isTestOnly, $isSilent);
61  }
62 }
‪TYPO3\CMS\Core\Database\ReferenceIndex
Definition: ReferenceIndex.php:50
‪TYPO3\CMS\Backend\Command
Definition: LockBackendCommand.php:2
‪TYPO3\CMS\Core\Core\Bootstrap\initializeBackendAuthentication
‪static Bootstrap null initializeBackendAuthentication($proceedIfNoUserIsLoggedIn=false)
Definition: Bootstrap.php:974
‪$output
‪$output
Definition: annotationChecker.php:113
‪TYPO3\CMS\Backend\Command\ReferenceIndexUpdateCommand\execute
‪execute(InputInterface $input, OutputInterface $output)
Definition: ReferenceIndexUpdateCommand.php:50
‪TYPO3\CMS\Core\Core\Bootstrap
Definition: Bootstrap.php:50
‪TYPO3\CMS\Backend\Command\ReferenceIndexUpdateCommand\configure
‪configure()
Definition: ReferenceIndexUpdateCommand.php:33
‪TYPO3\CMS\Core\Utility\GeneralUtility
Definition: GeneralUtility.php:45
‪TYPO3\CMS\Backend\Command\ReferenceIndexUpdateCommand
Definition: ReferenceIndexUpdateCommand.php:29