function update(array $arrPlugin, SC_Plugin_Installer $installer)
 {
     $plugin_code = $arrPlugin["plugin_code"];
     GC_Utils_Ex::gfPrintLog("[{$plugin_code}]更新処理を実行します。", PLUGIN_LOG_REALFILE, FALSE);
     SC_Utils_Ex::copyDirectory(dirname(__FILE__) . "/", PLUGIN_UPLOAD_REALDIR . $plugin_code . "/");
     require_once dirname(__FILE__) . '/AutoDisplayCore.php';
     $core = new AutoDisplayCore($arrPlugin);
     $core->install($arrPlugin, $installer);
     GC_Utils_Ex::gfPrintLog("[{$plugin_code}]更新処理を実行完了しました。", PLUGIN_LOG_REALFILE, FALSE);
 }
 /**
  *
  * {@inheritDoc}
  *
  * @see SC_Plugin_Base::uninstall()
  */
 function uninstall($arrPlugin, SC_Plugin_Installer $installer)
 {
     require_once dirname(__FILE__) . '/AutoDisplayCore.php';
     $core = new AutoDisplayCore($arrPlugin);
     $core->uninstall($arrPlugin, $installer);
 }