Ejemplo n.º 1
0
 /**
  * toMO
  *
  * @access  protected
  * @return  object  File_Gettext_MO
  */
 function &toMO()
 {
     include_once dirname(__FILE__) . '/MO.php';
     $MO = new File_Gettext_MO();
     $MO->fromArray($this->toArray());
     return $MO;
 }
Ejemplo n.º 2
0
 /**
  * toMO
  *
  * @access  protected
  * @return  object  File_Gettext_MO
  */
 function &toMO()
 {
     include_once 'File/Gettext/MO.php';
     $MO = new File_Gettext_MO();
     $MO->fromArray($this->toArray());
     return $MO;
 }
Ejemplo n.º 3
0
 /**
  * toMO
  *
  * @access  protected
  * @return  object  File_Gettext_MO
  */
 function toMO()
 {
     $MO = new File_Gettext_MO();
     $MO->fromArray($this->toArray());
     return $MO;
 }