/
var
/
www
/
html
/
sugardemo
/
modules
/
Project
/
Upload File
HOME
<?php /* * Your installation or use of this SugarCRM file is subject to the applicable * terms available at * http://support.sugarcrm.com/Resources/Master_Subscription_Agreements/. * If you do not agree to all of the applicable terms or do not have the * authority to bind the entity as an authorized representative, then do not * install or use this SugarCRM file. * * Copyright (C) SugarCRM Inc. All rights reserved. */ class ProjectQuickCreate extends QuickCreate { public $javascript; public function process() { global $current_user, $timedate, $app_list_strings, $current_language, $mod_strings; $mod_strings = return_module_language($current_language, 'Project'); parent::process(); if ($this->viaAJAX) { // override for ajax call $this->ss->assign('saveOnclick', "onclick='if(check_form(\"projectQuickCreate\")) return SUGAR.subpanelUtils.inlineSave(this.form.id, \"projects\"); else return false;'"); $this->ss->assign('cancelOnclick', "onclick='return SUGAR.subpanelUtils.cancelCreate(\"subpanel_project\")';"); } $this->ss->assign('viaAJAX', $this->viaAJAX); $this->javascript = new javascript(); $this->javascript->setFormName('projectQuickCreate'); $focus = BeanFactory::newBean('Project'); $this->javascript->setSugarBean($focus); $this->javascript->addAllFields(''); $this->ss->assign('additionalScripts', $this->javascript->getScript(false)); $this->ss->assign('CALENDAR_DATEFORMAT', $timedate->get_cal_date_format()); $json = getJSONobj(); $popup_request_data = [ 'call_back_function' => 'set_return', 'form_name' => 'projectsQuickCreate', 'field_to_name_array' => [ 'id' => 'account_id', 'name' => 'account_name', ], ]; $encoded_popup_request_data = $json->encode($popup_request_data); $this->ss->assign('encoded_popup_request_data', $encoded_popup_request_data); $popup_request_data = [ 'call_back_function' => 'set_return', 'form_name' => 'projectsQuickCreate', 'field_to_name_array' => [ 'id' => 'team_id', 'name' => 'team_name', ], ]; $this->ss->assign('encoded_team_popup_request_data', $json->encode($popup_request_data)); } }