Lines Matching full:mode
19 * @return string Syntax mode type
27 * @param string $mode The mode to check
28 * @return bool Whether $mode is allowed within this mode
31 function accepts($mode) { argument
32 if ($mode == substr(get_class($this), 7)) return true;
33 return parent::accepts($mode);
37 * @return string|array(string) Allowed syntax mode types
63 * @param string $mode Parser mode
65 public function connectTo($mode) argument
67 $this->Lexer->addEntryPattern($this->entry_pattern, $mode, 'plugin_htmldetailstag_details');
94 * @param string $mode Renderer mode (supported modes: xhtml)
100 public function render($mode, Doku_Renderer $renderer, $data) argument
102 if ($mode !== 'xhtml') {