Index: trunk/phase3/includes/Parser.php |
— | — | @@ -3667,7 +3667,7 @@ |
3668 | 3668 | $this->mOutput->mCacheTime = -1; |
3669 | 3669 | } |
3670 | 3670 | |
3671 | | - /** |
| 3671 | + /**#@+ |
3672 | 3672 | * Callback from the Sanitizer for expanding items found in HTML attribute |
3673 | 3673 | * values, so they can be safely tested and escaped. |
3674 | 3674 | * @param string $text |
— | — | @@ -3686,10 +3686,21 @@ |
3687 | 3687 | $text = $this->unstripNoWiki( $text, $this->mStripState ); |
3688 | 3688 | return $text; |
3689 | 3689 | } |
| 3690 | + /**#@-*/ |
3690 | 3691 | |
| 3692 | + /**#@+ |
| 3693 | + * Accessor/mutator |
| 3694 | + */ |
3691 | 3695 | function Title( $x = NULL ) { return wfSetVar( $this->mTitle, $x ); } |
3692 | 3696 | function Options( $x = NULL ) { return wfSetVar( $this->mOptions, $x ); } |
3693 | 3697 | function OutputType( $x = NULL ) { return wfSetVar( $this->mOutputType, $x ); } |
| 3698 | + /**#@-*/ |
| 3699 | + |
| 3700 | + /**#@+ |
| 3701 | + * Accessor |
| 3702 | + */ |
| 3703 | + function getTags() { return array_keys( $this->mTagHooks ); } |
| 3704 | + /**#@-*/ |
3694 | 3705 | } |
3695 | 3706 | |
3696 | 3707 | /** |