MediaWiki  1.33.0
PPFrame_DOM Class Reference

An expansion frame, used as a context to expand the result of preprocessToObj() More...

Inheritance diagram for PPFrame_DOM:
Collaboration diagram for PPFrame_DOM:

Public Member Functions

 __construct ( $preprocessor)
 Construct a new preprocessor frame. More...
 
 __toString ()
 
 cachedExpand ( $key, $root, $flags=0)
 
 expand ( $root, $flags=0)
 
 getArgument ( $name)
 
 getArguments ()
 
 getNamedArguments ()
 
 getNumberedArguments ()
 
 getPDBK ( $level=false)
 
 getTitle ()
 Get a title of frame. More...
 
 getTTL ()
 Get the TTL. More...
 
 implode ( $sep)
 Implode with no flags specified This previously called implodeWithFlags but has now been inlined to reduce stack depth. More...
 
 implodeWithFlags ( $sep, $flags)
 
 isEmpty ()
 Returns true if there are no arguments in this frame. More...
 
 isTemplate ()
 Return true if the frame is a template frame. More...
 
 isVolatile ()
 Get the volatile flag. More...
 
 loopCheck ( $title)
 Returns true if the infinite loop check is OK, false if a loop is detected. More...
 
 newChild ( $args=false, $title=false, $indexOffset=0)
 Create a new child frame $args is optionally a multi-root PPNode or array containing the template arguments. More...
 
 setTTL ( $ttl)
 Set the TTL. More...
 
 setVolatile ( $flag=true)
 Set the volatile flag. More...
 
 virtualBracketedImplode ( $start, $sep, $end)
 Virtual implode with brackets. More...
 
 virtualImplode ( $sep)
 Makes an object that, when expand()ed, will be the same as one obtained with implode() More...
 

Public Attributes

 $depth
 Recursion depth of this frame, top = 0 Note that this is NOT the same as expansion depth in expand() More...
 
 $loopCheckHash
 Hashtable listing templates which are disallowed for expansion in this frame, having been encountered previously in parent frames. More...
 
Parser $parser
 
Preprocessor $preprocessor
 
Title $title
 
 $titleCache
 
- Public Attributes inherited from PPFrame
const NO_ARGS = 1
 
const NO_IGNORE = 8
 
const NO_TAGS = 32
 
const NO_TEMPLATES = 2
 
const RECOVER_COMMENTS = 16
 
const RECOVER_ORIG
 
const STRIP_COMMENTS = 4
 
const SUPPORTS_INDEX_OFFSET = 1
 This constant exists when $indexOffset is supported in newChild() More...
 

Protected Attributes

array $childExpansionCache
 

Private Attributes

 $ttl = null
 
 $volatile = false
 

Detailed Description

An expansion frame, used as a context to expand the result of preprocessToObj()

Definition at line 1053 of file Preprocessor_DOM.php.

Constructor & Destructor Documentation

◆ __construct()

PPFrame_DOM::__construct (   $preprocessor)

Construct a new preprocessor frame.

Parameters
Preprocessor$preprocessorThe parent preprocessor

Definition at line 1095 of file Preprocessor_DOM.php.

Member Function Documentation

◆ __toString()

PPFrame_DOM::__toString ( )

Reimplemented in PPCustomFrame_DOM, and PPTemplateFrame_DOM.

Definition at line 1548 of file Preprocessor_DOM.php.

◆ cachedExpand()

PPFrame_DOM::cachedExpand (   $key,
  $root,
  $flags = 0 
)
Exceptions
MWException
Parameters
string | int$key
string | PPNode_DOM | DOMDocument$root
int$flags
Returns
string

Implements PPFrame.

Reimplemented in PPTemplateFrame_DOM.

Definition at line 1173 of file Preprocessor_DOM.php.

◆ expand()

PPFrame_DOM::expand (   $root,
  $flags = 0 
)
Exceptions
MWException
Parameters
string | PPNode_DOM | DOMDocument$root
int$flags
Returns
string

Implements PPFrame.

Definition at line 1184 of file Preprocessor_DOM.php.

◆ getArgument()

PPFrame_DOM::getArgument (   $name)
Parameters
int | string$name
Returns
bool Always false in this implementation.

Implements PPFrame.

Reimplemented in PPTemplateFrame_DOM, and PPCustomFrame_DOM.

Definition at line 1594 of file Preprocessor_DOM.php.

◆ getArguments()

PPFrame_DOM::getArguments ( )
Returns
array

Implements PPFrame.

Reimplemented in PPCustomFrame_DOM, and PPTemplateFrame_DOM.

Definition at line 1563 of file Preprocessor_DOM.php.

◆ getNamedArguments()

PPFrame_DOM::getNamedArguments ( )
Returns
array

Implements PPFrame.

Reimplemented in PPTemplateFrame_DOM.

Definition at line 1577 of file Preprocessor_DOM.php.

◆ getNumberedArguments()

PPFrame_DOM::getNumberedArguments ( )
Returns
array

Implements PPFrame.

Reimplemented in PPTemplateFrame_DOM.

Definition at line 1570 of file Preprocessor_DOM.php.

◆ getPDBK()

PPFrame_DOM::getPDBK (   $level = false)

Definition at line 1552 of file Preprocessor_DOM.php.

◆ getTitle()

PPFrame_DOM::getTitle ( )

Get a title of frame.

Returns
Title

Implements PPFrame.

Definition at line 1622 of file Preprocessor_DOM.php.

◆ getTTL()

PPFrame_DOM::getTTL ( )

Get the TTL.

Returns
int|null

Implements PPFrame.

Definition at line 1660 of file Preprocessor_DOM.php.

◆ implode()

PPFrame_DOM::implode (   $sep)

Implode with no flags specified This previously called implodeWithFlags but has now been inlined to reduce stack depth.

Parameters
string$sep
string | PPNode_DOM | DOMDocument$args,...
Returns
string

Implements PPFrame.

Definition at line 1459 of file Preprocessor_DOM.php.

◆ implodeWithFlags()

PPFrame_DOM::implodeWithFlags (   $sep,
  $flags 
)
Parameters
string$sep
int$flags
string | PPNode_DOM | DOMDocument$args,...
Returns
string

Implements PPFrame.

Definition at line 1427 of file Preprocessor_DOM.php.

◆ isEmpty()

PPFrame_DOM::isEmpty ( )

Returns true if there are no arguments in this frame.

Returns
bool

Implements PPFrame.

Reimplemented in PPCustomFrame_DOM, and PPTemplateFrame_DOM.

Definition at line 1586 of file Preprocessor_DOM.php.

◆ isTemplate()

PPFrame_DOM::isTemplate ( )

Return true if the frame is a template frame.

Returns
bool

Implements PPFrame.

Reimplemented in PPTemplateFrame_DOM.

Definition at line 1613 of file Preprocessor_DOM.php.

◆ isVolatile()

PPFrame_DOM::isVolatile ( )

Get the volatile flag.

Returns
bool

Implements PPFrame.

Definition at line 1640 of file Preprocessor_DOM.php.

◆ loopCheck()

PPFrame_DOM::loopCheck (   $title)

Returns true if the infinite loop check is OK, false if a loop is detected.

Parameters
Title$title
Returns
bool

Implements PPFrame.

Definition at line 1604 of file Preprocessor_DOM.php.

◆ newChild()

PPFrame_DOM::newChild (   $args = false,
  $title = false,
  $indexOffset = 0 
)

Create a new child frame $args is optionally a multi-root PPNode or array containing the template arguments.

Parameters
bool | array$args
Title | bool$title
int$indexOffset
Returns
PPTemplateFrame_DOM

Implements PPFrame.

Definition at line 1114 of file Preprocessor_DOM.php.

◆ setTTL()

PPFrame_DOM::setTTL (   $ttl)

Set the TTL.

Parameters
int$ttl

Implements PPFrame.

Reimplemented in PPTemplateFrame_DOM.

Definition at line 1649 of file Preprocessor_DOM.php.

◆ setVolatile()

PPFrame_DOM::setVolatile (   $flag = true)

Set the volatile flag.

Parameters
bool$flag

Implements PPFrame.

Reimplemented in PPTemplateFrame_DOM.

Definition at line 1631 of file Preprocessor_DOM.php.

◆ virtualBracketedImplode()

PPFrame_DOM::virtualBracketedImplode (   $start,
  $sep,
  $end 
)

Virtual implode with brackets.

Parameters
string$start
string$sep
string$end
string | PPNode_DOM | DOMDocument$args,...
Returns
array

Implements PPFrame.

Definition at line 1523 of file Preprocessor_DOM.php.

◆ virtualImplode()

PPFrame_DOM::virtualImplode (   $sep)

Makes an object that, when expand()ed, will be the same as one obtained with implode()

Parameters
string$sep
string | PPNode_DOM | DOMDocument$args,...
Returns
array

Implements PPFrame.

Definition at line 1491 of file Preprocessor_DOM.php.

Member Data Documentation

◆ $childExpansionCache

array PPFrame_DOM::$childExpansionCache
protected

Definition at line 1089 of file Preprocessor_DOM.php.

◆ $depth

PPFrame_DOM::$depth

Recursion depth of this frame, top = 0 Note that this is NOT the same as expansion depth in expand()

Definition at line 1081 of file Preprocessor_DOM.php.

◆ $loopCheckHash

PPFrame_DOM::$loopCheckHash

Hashtable listing templates which are disallowed for expansion in this frame, having been encountered previously in parent frames.

Definition at line 1075 of file Preprocessor_DOM.php.

◆ $parser

Parser PPFrame_DOM::$parser

Definition at line 1063 of file Preprocessor_DOM.php.

◆ $preprocessor

Preprocessor PPFrame_DOM::$preprocessor

Definition at line 1058 of file Preprocessor_DOM.php.

◆ $title

Title PPFrame_DOM::$title

Definition at line 1068 of file Preprocessor_DOM.php.

◆ $titleCache

PPFrame_DOM::$titleCache

Definition at line 1069 of file Preprocessor_DOM.php.

◆ $ttl

PPFrame_DOM::$ttl = null
private

Definition at line 1084 of file Preprocessor_DOM.php.

◆ $volatile

PPFrame_DOM::$volatile = false
private

Definition at line 1083 of file Preprocessor_DOM.php.


The documentation for this class was generated from the following file: