Lines Matching defs:tab
42 function printTOC($tab, $type, $text, $hideno){
43 $this->_printHeader($tab, $type, $text, $hideno);
45 if(empty($tab)) {
49 $this->_print($tab, $type);
52 abstract function _print($tab, $type);
68 private function _printHeader(&$tab, $type, $text, $hideno) {
69 if(empty($tab) && $hideno) return;
71 $this->_sorter->sort($tab);
72 $this->_keepOnlyNMaxItems($tab);
89 if(empty($tab)) {
106 private function _keepOnlyNMaxItems(&$tab){
108 $tab = array_slice($tab, 0, $this->nbItemsMax);