示例#1
0
 /**
  * toPO
  *
  * @access  protected
  * @return  object      File_Gettext_PO
  */
 function &toPO()
 {
     include_once dirname(__FILE__) . '/PO.php';
     $PO = new File_Gettext_PO();
     $PO->fromArray($this->toArray());
     return $PO;
 }
示例#2
0
 /**
  * toPO
  *
  * @access  protected
  * @return  object      File_Gettext_PO
  */
 function &toPO()
 {
     include_once 'File/Gettext/PO.php';
     $PO = new File_Gettext_PO();
     $PO->fromArray($this->toArray());
     return $PO;
 }
示例#3
0
 /**
  * toPO
  *
  * @access  protected
  * @return  object      File_Gettext_PO
  */
 function toPO()
 {
     $PO = new File_Gettext_PO();
     $PO->fromArray($this->toArray());
     return $PO;
 }