Index: trunk/phase3/includes/LinksUpdate.php |
— | — | @@ -26,6 +26,7 @@ |
27 | 27 | */ |
28 | 28 | var $mId, //!< Page ID of the article linked from |
29 | 29 | $mTitle, //!< Title object of the article linked from |
| 30 | + $mParserOutput, //!< Parser output |
30 | 31 | $mLinks, //!< Map of title strings to IDs for the links in the document |
31 | 32 | $mImages, //!< DB keys of the images used, in the array key only |
32 | 33 | $mTemplates, //!< Map of title strings to IDs for the template references, including broken ones |
— | — | @@ -811,6 +812,14 @@ |
812 | 813 | } |
813 | 814 | |
814 | 815 | /** |
| 816 | + * Returns parser output |
| 817 | + * @return ParserOutput |
| 818 | + */ |
| 819 | + public function getParserOutput() { |
| 820 | + return $this->mParserOutput; |
| 821 | + } |
| 822 | + |
| 823 | + /** |
815 | 824 | * Return the list of images used as generated by the parser |
816 | 825 | * @return array |
817 | 826 | */ |