コード例 #1
0
ファイル: TGettext.php プロジェクト: ahastudio/moniwiki
 /**
  * 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
ファイル: Gettext.php プロジェクト: fpoirotte/file_gettext
 /**
  * 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
ファイル: Gettext.php プロジェクト: Wildboard/WbWebApp
 /**
  * toPO
  *
  * @access  protected
  * @return  object      File_Gettext_PO
  */
 function toPO()
 {
     $PO = new File_Gettext_PO();
     $PO->fromArray($this->toArray());
     return $PO;
 }