From: Rotem Liss Date: Fri, 29 Dec 2006 13:10:25 +0000 (+0000) Subject: Adding functions to access the ignored and optional messages. X-Git-Tag: 1.31.0-rc.0~54741 X-Git-Url: https://git.cyclocoop.org/?a=commitdiff_plain;h=639652c9b1a79e6595106962a6df584ffc35d55b;p=lhc%2Fweb%2Fwiklou.git Adding functions to access the ignored and optional messages. --- diff --git a/maintenance/language/languages.inc b/maintenance/language/languages.inc index 8093e58daf..946c6cb2cf 100644 --- a/maintenance/language/languages.inc +++ b/maintenance/language/languages.inc @@ -44,6 +44,24 @@ class languages { return $this->mLanguages; } + /** + * Get the ignored messages list. + * + * @return The ignored messages list. + */ + public function getIgnoredMessages() { + return $this->mIgnoredMessages; + } + + /** + * Get the optional messages list. + * + * @return The optional messages list. + */ + public function getOptionalMessages() { + return $this->mOptionalMessages; + } + /** * Load the raw messages for a specific langauge from the messages file. *