Changeset 93603 in spip-zone
- Timestamp:
- Dec 13, 2015, 11:05:25 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
_plugins_/indexer/trunk/spip-cli/IndexerIndexer.php
r92400 r93603 41 41 } 42 42 } 43 44 class IndexerDump extends Command { 45 protected function configure() { 46 $this 47 ->setName('indexer:dump') 48 ->setDescription('Récupérer les contenus indexés.') 49 ; 50 } 51 52 protected function execute(InputInterface $input, OutputInterface $output) { 53 include_spip('inc/indexer'); 54 indexer_dumpsql(); 55 } 56 } 57
Note: See TracChangeset
for help on using the changeset viewer.