TYPO3 CMS  TYPO3_6-2
PluginHook.php
Go to the documentation of this file.
1 <?php
3 
28 class PluginHook {
29 
33  public $pObj;
34 
35  // Is set to a reference to the parent object, "pi1/class.indexedsearch.php"
46  public function initialize_postProc() {
47  $this->pObj->optValues['order'] = array_reverse($this->pObj->optValues['order']);
48  }
49 
57  public function getResultRows($sWArr) {
58 
59  }
60 
71  public function prepareResultRowTemplateData_postProc($tmplContent, $row, $headerOnly) {
72  $tmplContent['description'] = '<em>' . $tmplContent['description'] . '</em>';
73  $tmplContent['path'] = '';
74  return $tmplContent;
75  }
76 
77 }
prepareResultRowTemplateData_postProc($tmplContent, $row, $headerOnly)
Definition: PluginHook.php:71