本文整理汇总了PHP中fn_register_hooks函数的典型用法代码示例。如果您正苦于以下问题:PHP fn_register_hooks函数的具体用法?PHP fn_register_hooks怎么用?PHP fn_register_hooks使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了fn_register_hooks函数的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的PHP代码示例。
示例1: die
<?php
/***************************************************************************
* *
* (c) 2004 Vladimir V. Kalynyak, Alexey V. Vinokurov, Ilya M. Shalnev *
* *
* This is commercial software, only users who have purchased a valid *
* license and accept to the terms of the License Agreement can install *
* and use this program. *
* *
****************************************************************************
* PLEASE READ THE FULL TEXT OF THE SOFTWARE LICENSE AGREEMENT IN THE *
* "copyright.txt" FILE PROVIDED WITH THIS DISTRIBUTION PACKAGE. *
****************************************************************************/
if (!defined('BOOTSTRAP')) {
die('Access denied');
}
fn_register_hooks('post_delete_user', 'delete_company');
开发者ID:askzap,项目名称:ultimate,代码行数:18,代码来源:init.php
示例2: die
<?php
//Mahammad Ismayilzade
if (!defined('BOOTSTRAP')) {
die('Access denied');
}
fn_register_hooks('redirect', 'user_init');
开发者ID:Technollland,项目名称:afa,代码行数:7,代码来源:init.php
示例3: die
<?php
//
// $Id: init.php 7502 2009-05-19 14:54:59Z zeke $
//
if (!defined('AREA')) {
die('Access denied');
}
fn_register_hooks('update_product', 'delete_product', 'update_category', 'delete_category', 'delete_order', 'update_news', 'delete_news', 'update_page', 'delete_page', 'update_event', 'delete_event', 'clone_product', 'get_product_data', 'get_products', 'get_categories', 'get_pages');
开发者ID:diedsmiling,项目名称:busenika,代码行数:9,代码来源:init.php
示例4: die
<?php
/***************************************************************************
* *
* (c) 2004 Vladimir V. Kalynyak, Alexey V. Vinokurov, Ilya M. Shalnev *
* *
* This is commercial software, only users who have purchased a valid *
* license and accept to the terms of the License Agreement can install *
* and use this program. *
* *
****************************************************************************
* PLEASE READ THE FULL TEXT OF THE SOFTWARE LICENSE AGREEMENT IN THE *
* "copyright.txt" FILE PROVIDED WITH THIS DISTRIBUTION PACKAGE. *
****************************************************************************/
if (!defined('AREA')) {
die('Access denied');
}
fn_register_hooks('get_category_data_pre');
开发者ID:AlanIsrael0,项目名称:market,代码行数:18,代码来源:init.php
示例5: die
<?php
/*
* © 2015 Hungryweb
*
* PLEASE READ THE FULL TEXT OF THE SOFTWARE LICENSE AGREEMENT
* IN THE "HW-LICENSE.txt" FILE PROVIDED WITH THIS DISTRIBUTION PACKAGE.
*
* @website: www.hungryweb.net
* @support: [email protected]
*
*/
if (!defined('BOOTSTRAP')) {
die('Access denied');
}
fn_register_hooks('update_category_post', 'get_category_data_post', 'delete_category_after', 'delete_product_post', 'delete_shipping', 'delete_payment_post', 'shippings_get_shippings_list', 'get_payments', 'update_product_post', 'get_product_data_post');
开发者ID:OneataBogdan,项目名称:lead_coriolan,代码行数:16,代码来源:init.php
注:本文中的fn_register_hooks函数示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论