本文整理汇总了PHP中QuickCreate::display方法的典型用法代码示例。如果您正苦于以下问题:PHP QuickCreate::display方法的具体用法?PHP QuickCreate::display怎么用?PHP QuickCreate::display使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类QuickCreate
的用法示例。
在下文中一共展示了QuickCreate::display方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: QuickCreate
* All copies of the Covered Code must include on each user interface screen:
* (i) the "Powered by SugarCRM" logo and
* (ii) the SugarCRM copyright notice
* in the same form as they appear in the distribution. See full license for
* requirements.
*
* The Original Code is: SugarCRM Open Source
* The Initial Developer of the Original Code is SugarCRM, Inc.
* Portions created by SugarCRM are Copyright (C) 2004-2006 SugarCRM, Inc.;
* All Rights Reserved.
* Contributor(s): ______________________________________.
********************************************************************************/
clean_string($_REQUEST['target_module'], "STANDARD");
clean_string($_REQUEST['tpl'], "STANDARD");
$target_module = $_REQUEST['target_module'];
// target class
if (is_file('modules/' . $target_module . '/' . $target_module . 'QuickCreate.php')) {
// if there is a quickcreate override
require_once 'modules/' . $target_module . '/' . $target_module . 'QuickCreate.php';
$editviewClass = $target_module . 'QuickCreate';
// eg. OpportunitiesQuickCreate
$editview = new $editviewClass($target_module, 'modules/' . $target_module . '/tpls/' . $_REQUEST['tpl']);
$editview->viaAJAX = true;
} else {
// else use base class
require_once 'include/EditView/QuickCreate.php';
$editview = new QuickCreate($target_module, 'modules/' . $target_module . '/tpls/' . $_REQUEST['tpl']);
}
$editview->process();
echo $editview->display();