[ Index ] |
PHP Cross Reference of WordPress Trunk (Updated Daily) |
[Source view] [Print] [Project Stats]
HTML API: WP_HTML_Active_Formatting_Elements class
File Size: | 229 lines (7 kb) |
Included or required: | 0 times |
Referenced: | 0 times |
Includes or requires: | 0 files |
WP_HTML_Active_Formatting_Elements:: (9 methods):
contains_node()
count()
current_node()
insert_marker()
push()
remove_node()
walk_down()
walk_up()
clear_up_to_last_marker()
Class: WP_HTML_Active_Formatting_Elements - X-Ref
Core class used by the HTML processor during HTML parsingcontains_node( WP_HTML_Token $token ) X-Ref |
Reports if a specific node is in the stack of active formatting elements. return: bool Whether the referenced node is in the stack of active formatting elements. param: WP_HTML_Token $token Look for this node in the stack. |
count() X-Ref |
Returns how many nodes are currently in the stack of active formatting elements. return: int How many node are in the stack of active formatting elements. |
current_node() X-Ref |
Returns the node at the end of the stack of active formatting elements, if one exists. If the stack is empty, returns null. return: WP_HTML_Token|null Last node in the stack of active formatting elements, if one exists, otherwise null. |
insert_marker() X-Ref |
Inserts a "marker" at the end of the list of active formatting elements. > The markers are inserted when entering applet, object, marquee, > template, td, th, and caption elements, and are used to prevent > formatting from "leaking" into applet, object, marquee, template, > td, th, and caption elements. |
push( WP_HTML_Token $token ) X-Ref |
Pushes a node onto the stack of active formatting elements. param: WP_HTML_Token $token Push this node onto the stack. |
remove_node( WP_HTML_Token $token ) X-Ref |
Removes a node from the stack of active formatting elements. return: bool Whether the node was found and removed from the stack of active formatting elements. param: WP_HTML_Token $token Remove this node from the stack, if it's there already. |
walk_down() X-Ref |
Steps through the stack of active formatting elements, starting with the top element (added first) and walking downwards to the one added last. This generator function is designed to be used inside a "foreach" loop. Example: $html = '<em><strong><a>We are here'; foreach ( $stack->walk_down() as $node ) { echo "{$node->node_name} -> "; } > EM -> STRONG -> A -> To start with the most-recently added element and walk towards the top, see WP_HTML_Active_Formatting_Elements::walk_up(). |
walk_up() X-Ref |
Steps through the stack of active formatting elements, starting with the bottom element (added last) and walking upwards to the one added first. This generator function is designed to be used inside a "foreach" loop. Example: $html = '<em><strong><a>We are here'; foreach ( $stack->walk_up() as $node ) { echo "{$node->node_name} -> "; } > A -> STRONG -> EM -> To start with the first added element and walk towards the bottom, see WP_HTML_Active_Formatting_Elements::walk_down(). |
clear_up_to_last_marker() X-Ref |
Clears the list of active formatting elements up to the last marker. > When the steps below require the UA to clear the list of active formatting elements up to > the last marker, the UA must perform the following steps: > > 1. Let entry be the last (most recently added) entry in the list of active > formatting elements. > 2. Remove entry from the list of active formatting elements. > 3. If entry was a marker, then stop the algorithm at this point. > The list has been cleared up to the last marker. > 4. Go to step 1. |
Generated : Sat Nov 23 08:20:01 2024 | Cross-referenced by PHPXref |