Ejemplo n.º 1
0
 public function saveLanguageOption(Project $project, $language)
 {
     if (!$language) {
         return;
     }
     if (!$this->isLanguageSupported($language)) {
         throw new Mediawiki_UnsupportedLanguageException($language);
     }
     return $this->dao->updateLanguageOption($project->getID(), $language);
 }