Esempio n. 1
0
 /**
  * Return the LanguageCollection used in this module
  *
  * @return LanguageCollection
  */
 public function WordCollection()
 {
     $myWords = parent::WordCollection();
     if (!$myWords->loadedFromFile()) {
         // English Words
         $myWords->addText("en-us", "TITLE", "Module XSL Theme");
         // Portuguese Words
         $myWords->addText("pt-br", "TITLE", "Módulo de Temas Xsl");
     }
     return $myWords;
 }
Esempio n. 2
0
 /**
  * Return the LanguageCollection used in this module
  *
  * @return LanguageCollection
  */
 public function WordCollection()
 {
     //LanguageCollection
     $myWords = parent::WordCollection();
     if (!$myWords->loadedFromFile()) {
         // English Words
         $myWords->addText("en-us", "TITLE", "Module Not Found");
         // Portuguese Words
         $myWords->addText("pt-br", "TITLE", "Módulo de Modulo Não Encontrado");
     }
     return $myWords;
 }
Esempio n. 3
0
 /**
  * Return the LanguageCollection used in this module
  *
  * @return LanguageCollection
  */
 public function WordCollection()
 {
     $myWords = parent::WordCollection();
     return $myWords;
 }
Esempio n. 4
0
 /**
  * eturn the LanguageCollection used in this module
  *
  * @return LanguageCollection
  */
 public function WordCollection()
 {
     $myWords = parent::WordCollection();
     if (!$myWords->loadedFromFile()) {
         // English Words
         $myWords->addText("en-us", "TITLE", "Module Send page");
         // Portuguese Words
         $myWords->addText("pt-br", "TITLE", "Módulo de Envio de Páginas");
     }
     return $myWords;
 }