当前位置: 首页>>代码示例>>PHP>>正文


PHP Hook::delete方法代码示例

本文整理汇总了PHP中Hook::delete方法的典型用法代码示例。如果您正苦于以下问题:PHP Hook::delete方法的具体用法?PHP Hook::delete怎么用?PHP Hook::delete使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Hook的用法示例。


在下文中一共展示了Hook::delete方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: SmartHookDelete

 public function SmartHookDelete()
 {
     $hookvalue = array();
     require_once dirname(__FILE__) . '/sql/addhook.php';
     foreach ($hookvalue as $hkv) {
         $hookid = Hook::getIdByName($hkv['name']);
         if ($hookid) {
             $dlt_hook = new Hook($hookid);
             $dlt_hook->delete();
         }
     }
 }
开发者ID:johnulist,项目名称:smartblog,代码行数:12,代码来源:smartblog.php

示例2: _revertInstall

 protected function _revertInstall($step)
 {
     if ($step >= 1) {
         $hook = new Hook(Hook::getIdByName('actionBeforeAddOrder'));
         $hook->delete();
         unset($hook);
     }
     if ($step >= 2) {
         $hook2 = new Hook(Hook::getIdByName('actionBeforeAddOrderInvoice'));
         $hook2->delete();
         unset($hook2);
     }
     if ($step >= 3) {
         $hook3 = new Hook(Hook::getIdByName('actionBeforeAddDeliveryNumber'));
         $hook3->delete();
         unset($hook3);
     }
     // if($step >= 4)
     // Uninstall DB changes
     if ($step >= 5) {
         parent::uninstall;
     }
     if ($step >= 6) {
         $this->uninstallXtraOverrides();
     }
     if ($step >= 7) {
         $this->unregisterHook('actionBeforeAddOrder');
     }
     if ($step >= 8) {
         $this->unregisterHook('actionBeforeAddOrderInvoice');
     }
     if ($step >= 9) {
         $this->unregisterHook('actionBeforeAddDeliveryNumber');
     }
     if ($step >= 10) {
         Configuration::deleteByName('ORD_REF_ORDERID');
     }
     if ($step >= 11) {
         Configuration::deleteByName('ORD_REF_PREFIXNULO');
     }
     if ($step >= 12) {
         Configuration::deleteByName('ORD_REF_PREFIXNULNRO');
     }
     if ($step >= 13) {
         Configuration::deleteByName('ORD_REF_PREFIXNULNRC');
     }
     if ($step >= 14) {
         Configuration::deleteByName('ORD_REF_PREFIXSIGNO');
     }
     if ($step >= 15) {
         Configuration::deleteByName('ORD_REF_CARTID');
     }
     if ($step >= 16) {
         Configuration::deleteByName('ORD_REF_PREFIXNULC');
     }
     if ($step >= 17) {
         Configuration::deleteByName('ORD_REF_PREFIXSIGNC');
     }
     if ($step >= 18) {
         Configuration::deleteByName('ORD_REF_PREFIXSIGN');
     }
     if ($step >= 19) {
         Configuration::deleteByName('INV_REF_ORDERID');
     }
     if ($step >= 20) {
         Configuration::deleteByName('INV_REF_CARTID');
     }
 }
开发者ID:,项目名称:,代码行数:68,代码来源:


注:本文中的Hook::delete方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。