Index: trunk/extensions/Translate/Message.php |
— | — | @@ -89,6 +89,14 @@ |
90 | 90 | public function hasTag( $tag ) { |
91 | 91 | return in_array( $tag, $this->tags, true ); |
92 | 92 | } |
| 93 | + |
| 94 | + /** |
| 95 | + * Return all tags for this message; |
| 96 | + * @return \list{String} |
| 97 | + */ |
| 98 | + public function getTags() { |
| 99 | + return $this->tags; |
| 100 | + } |
93 | 101 | } |
94 | 102 | |
95 | 103 | /** |