コード例 #1
0
ファイル: Export.php プロジェクト: carriercomm/Billing-5
 /**
  * the singleton pattern
  *
  * @return SoEventManager_Controller_SoEvent
  */
 public static function getInstance()
 {
     if (self::$_instance === NULL) {
         self::$_instance = new self();
     }
     return self::$_instance;
 }
コード例 #2
0
ファイル: Http.php プロジェクト: carriercomm/Billing-5
 public function runArticleSellListExport()
 {
     Billing_Controller_Export::getInstance()->exportArticleSellList($_REQUEST['data'], $_REQUEST['exportType']);
 }