本文整理汇总了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']);