本文整理匯總了PHP中Quote::mark_deleted方法的典型用法代碼示例。如果您正苦於以下問題:PHP Quote::mark_deleted方法的具體用法?PHP Quote::mark_deleted怎麽用?PHP Quote::mark_deleted使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Quote
的用法示例。
在下文中一共展示了Quote::mark_deleted方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: Quote
* which would in any way restrict the ability of any third party to use the
* Licensed Software.
*
* You must:
* a) Document any modifications you make to this code including the nature of
* the change, the authors of the change, and the date of the change.
* b) Make the source code for any extensions you deploy available via an
* Electronic Distribution Mechanism such as FTP or HTTP download.
* c) Notify the licensor of the availability of source code to your extensions
* and include instructions on how to acquire the source code and updates.
* d) Grant Licensor a world-wide, non-exclusive, royalty-free license to use,
* reproduce, perform, modify, sublicense, and distribute your extensions.
*
* The Original Code is: C3CRM Team
* http://www.c3crm.com
* 2006-5-19
*
* The Initial Developer of the Original Code is C3CRM Team.
* Portions created by C3CRM are Copyright (C) 2005 C3CRM
* All Rights Reserved.
* Contributors: Goodwill Consulting http://www.goodwill.co.id
********************************************************************************/
require_once 'modules/Quotes/Quote.php';
global $mod_strings;
require_once 'log4php/LoggerManager.php';
$focus = new Quote();
if (!isset($_REQUEST['record'])) {
sugar_die($mod_strings['ERR_DELETE_RECORD']);
}
$focus->mark_deleted($_REQUEST['record']);
header("Location: index.php?module=" . $_REQUEST['return_module'] . "&action=" . $_REQUEST['return_action'] . "&record=" . $_REQUEST['return_id']);