function uninstall($arrPlugin, $installer)
 {
     parent::install($arrPlugin, $installer);
     require dirname(__FILE__) . "/SupportDeviceCore.php";
     $core = new SupportDeviceCore($arrPlugin);
     $core->uninstall($arrPlugin, $installer);
 }
 function uninstall($arrPlugin, $installer)
 {
     parent::install($arrPlugin, $installer);
     require KT_REALDIR . "KisekaeTouchCore.php";
     $core = new KisekaeTouchCore($arrPlugin);
     $core->uninstall($arrPlugin, $installer);
 }
 /**
  * @param array $arrSelfInfo
  */
 function __construct($arrSelfInfo)
 {
     parent::__construct($arrSelfInfo);
     $this->objQuery = SC_Query_Ex::getSingletonInstance();
     $this->objDb = new SC_Helper_DB_Ex();
     $this->masterdata = new SC_DB_MasterData_Ex();
     $this->objCategory = new SC_Helper_Category_Ex();
     $this->objManager = $this->objQuery->conn->loadModule('Manager');
     $this->objDbFuctory = SC_DB_DBFactory_Ex::getInstance(DB_TYPE);
 }
 /**
  *
  * @param array $arrSelfInfo
  */
 public function __construct(array $arrSelfInfo)
 {
     parent::__construct($arrSelfInfo);
     $this->objQuery = new SC_Query_Ex();
     $this->objDb = new SC_Helper_DB_Ex();
     $this->masterdata = new SC_DB_MasterData_Ex();
     $this->arrConstants = $this->masterdata->getDbMasterData("mtb_constants");
     $this->objManager = $this->getDbManager();
     $this->dbi = $this->objManager->getDBInstance();
 }
 /**
  * コンストラクタ
  */
 public function __construct(array $arrSelfInfo)
 {
     parent::__construct($arrSelfInfo);
 }
Example #6
0
 /**
  * デストラクタ.
  *
  * @return void
  */
 function destroy()
 {
     parent::destroy();
 }
 /**
  * 処理の介入箇所とコールバック関数を設定
  * registerはプラグインインスタンス生成時に実行されます
  *
  * @param SC_Helper_Plugin $objHelperPlugin
  */
 function register(SC_Helper_Plugin $objHelperPlugin)
 {
     //$objHelperPlugin->addAction('outputfilterTransform', array($this, 'outputfilterTransform'));
     return parent::register($objHelperPlugin, $priority);
 }