TYPO3 CMS  TYPO3_6-2
FileIndexingTask.php
Go to the documentation of this file.
1 <?php
3 
23 
28 
32  protected $paths;
33 
39  public function getIndexingConfiguration() {
41  }
42 
50  $this->indexingConfiguration = $indexingConfiguration;
51  }
52 
58  public function getPaths() {
59  return $this->paths;
60  }
61 
68  public function setPaths($paths) {
69  $this->paths = $paths;
70  }
71 
77  public function isDisabled() {
78  return TRUE;
79  }
80 
86  public function execute() {
87  return FALSE;
88  }
89 
90 }
setIndexingConfiguration($indexingConfiguration)