Lines Matching full:the

13  * All DokuWiki plugins to extend the parser/rendering mechanism
26 * Needs to return one of the mode types defined in $PARSER_MODES in Parser.php
35 * Defines the mode types for other dokuwiki markup that maybe nested within the
36 * plugin's own markup. Needs to return an array of one or more of the mode types
50 * for correct XHTML nesting. Should return one of the following:
52 * 'normal' - The plugin can be used inside paragraphs
66 * Handler to prepare matched data for the rendering process
69 * may be not be run during the object's current life.
71 * Usually you should only need the $match param.
73 * @param string $match The text matched by the patterns
74 * @param int $state The lexer state for the match
75 * @param int $pos The character position of the matched text
76 * @param Handler $handler The Handler object
82 * Handles the actual output creation.
84 * The function must not assume any other of the classes methods have been run
85 * during the object's current life. The only reliable data it receives are its
88 * The function should always check for the given output format and return false
91 * $renderer contains a reference to the renderer object which is
92 * currently handling the rendering. You need to use it for writing
93 * the output. How this is done depends on the renderer used (specified
96 * The contents of the $data array depends on what the handler() function above
100 * @param Doku_Renderer $renderer the current renderer object
102 …rn boolean rendered correctly? (however, returned value is not used at the moment)