3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation; either version 2 of the License, or
6 * (at your option) any later version.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 * http://www.gnu.org/copyleft/gpl.html
22 namespace MediaWiki\Parser
;
24 use MediaWiki\Title\Title
;
29 * @property int $depth
30 * @property PPFrame $parent
33 public const NO_ARGS
= 1;
34 public const NO_TEMPLATES
= 2;
35 public const STRIP_COMMENTS
= 4;
36 public const NO_IGNORE
= 8;
37 public const RECOVER_COMMENTS
= 16;
38 public const NO_TAGS
= 32;
39 public const PROCESS_NOWIKI
= 64;
41 public const RECOVER_ORIG
= self
::NO_ARGS | self
::NO_TEMPLATES | self
::NO_IGNORE |
42 self
::RECOVER_COMMENTS | self
::NO_TAGS
;
45 * Create a child frame
47 * @param PPNode[]|false $args
48 * @param Title|false $title
49 * @param int $indexOffset A number subtracted from the index attributes of the arguments
53 public function newChild( $args = false, $title = false, $indexOffset = 0 );
56 * Expand a document tree node, caching the result on its parent with the given key
57 * @param string|int $key
58 * @param string|PPNode $root
62 public function cachedExpand( $key, $root, $flags = 0 );
65 * Expand a document tree node
66 * @param string|PPNode $root
70 public function expand( $root, $flags = 0 );
73 * Implode with flags for expand()
76 * @param string|PPNode ...$params
79 public function implodeWithFlags( $sep, $flags, ...$params );
82 * Implode with no flags specified
84 * @param string|PPNode ...$params
87 public function implode( $sep, ...$params );
90 * Makes an object that, when expand()ed, will be the same as one obtained
93 * @param string|PPNode ...$params
96 public function virtualImplode( $sep, ...$params );
99 * Virtual implode with brackets
100 * @param string $start
103 * @param string|PPNode ...$params
106 public function virtualBracketedImplode( $start, $sep, $end, ...$params );
109 * Returns true if there are no arguments in this frame
113 public function isEmpty();
116 * Returns all arguments of this frame
119 public function getArguments();
122 * Returns all numbered arguments of this frame
125 public function getNumberedArguments();
128 * Returns all named arguments of this frame
131 public function getNamedArguments();
134 * Get an argument to this frame by name
135 * @param int|string $name
136 * @return string|false
138 public function getArgument( $name );
141 * Returns true if the infinite loop check is OK, false if a loop is detected
143 * @param Title $title
146 public function loopCheck( $title );
149 * Return true if the frame is a template frame
152 public function isTemplate();
155 * Set the "volatile" flag.
157 * Note that this is somewhat of a "hack" in order to make extensions
158 * with side effects (such as Cite) work with the PHP parser. New
159 * extensions should be written in a way that they do not need this
160 * function, because other parsers (such as Parsoid) are not guaranteed
161 * to respect it, and it may be removed in the future.
165 public function setVolatile( $flag = true );
168 * Get the "volatile" flag.
170 * Callers should avoid caching the result of an expansion if it has the
173 * @see self::setVolatile()
176 public function isVolatile();
179 * Get the TTL of the frame's output.
181 * This is the maximum amount of time, in seconds, that this frame's
182 * output should be cached for. A value of null indicates that no
183 * maximum has been specified.
185 * Note that this TTL only applies to caching frames as parts of pages.
186 * It is not relevant to caching the entire rendered output of a page.
190 public function getTTL();
193 * Set the TTL of the output of this frame and all of its ancestors.
194 * Has no effect if the new TTL is greater than the one already set.
195 * Note that it is the caller's responsibility to change the cache
196 * expiry of the page as a whole, if such behavior is desired.
198 * @see self::getTTL()
201 public function setTTL( $ttl );
204 * Get a title of frame
208 public function getTitle();
211 /** @deprecated class alias since 1.43 */
212 class_alias( PPFrame
::class, 'PPFrame' );