Lines Matching defs:tab
35 * display the plugin tab
64 * Display the template tab
97 * Display the search tab
149 * Display the template tab
182 * Print the tab navigation
189 foreach ($this->tabs as $tab) {
190 $url = $this->tabURL($tab);
191 if ($this->currentTab() == $tab) {
196 echo '<li class="' . $tab . $class . '"><a href="' . $url . '">' .
197 $this->getLang('tab_' . $tab) . '</a></li>';
203 * Return the currently selected tab
211 $tab = $INPUT->str('tab', 'plugins', true);
212 if (!in_array($tab, $this->tabs)) $tab = 'plugins';
213 return $tab;
219 * @param string $tab tab to load, empty for current tab
225 public function tabURL($tab = '', $params = [], $sep = '&', $absolute = false)
230 if (!$tab) $tab = $this->currentTab();
234 'tab' => $tab
236 if ($tab == 'search') $defaults['q'] = $INPUT->str('q');