Hi,
You need to create the TaskFormBase.php file in /modules/Tasks directory.
Here is my TaskFormBase, this work for me.
<?php
if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
/*********************************************************************************
* SugarCRM Community Edition is a customer relationship management program developed by
* SugarCRM, Inc. Copyright (C) 2004-2013 SugarCRM Inc.
* SuiteCRM is an extension to SugarCRM Community Edition developed by Salesagility Ltd.
* Copyright (C) 2011 - 2014 Salesagility Ltd.
*
* This program is free software; you can redistribute it and/or modify it under
* the terms of the GNU Affero General Public License version 3 as published by the
* Free Software Foundation with the addition of the following permission added
* to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
* IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
* OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
* details.
*
* You should have received a copy of the GNU Affero General Public License along with
* this program; if not, see http://www.gnu.org/licenses or write to the Free
* Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301 USA.
*
* You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
* SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
*
* The interactive user interfaces in modified source and object code versions
* of this program must display Appropriate Legal Notices, as required under
* Section 5 of the GNU Affero General Public License version 3.
*
* In accordance with Section 7(b) of the GNU Affero General Public License version 3,
* these Appropriate Legal Notices must retain the display of the "Powered by
* SugarCRM" logo and "Supercharged by SuiteCRM" logo. If the display of the logos is not
* reasonably feasible for technical reasons, the Appropriate Legal Notices must
* display the words "Powered by SugarCRM" and "Supercharged by SuiteCRM".
********************************************************************************/
/*********************************************************************************
* Description: Base Form For Meetings
* Portions created by SugarCRM are Copyright(C) SugarCRM, Inc.
* All Rights Reserved.
* Contributor(s): ______________________________________..
********************************************************************************/
require_once('include/SugarObjects/forms/FormBase.php');
class TaskFormBase extends FormBase {
function getFormBody($prefix, $mod='', $formname=''){
if(!ACLController::checkAccess('Tasks', 'edit', true)){
return '';
}
global $mod_strings;
global $app_strings;
global $app_list_strings;
global $current_user;
global $theme;
global $timedate;
$temp_strings = $mod_strings;
if(!empty($mod)){
global $current_language;
$mod_strings = return_module_language($current_language, $mod);
}
// Unimplemented until jscalendar language files are fixed
// global $current_language;
// global $default_language;
// global $cal_codes;
$cal_lang = "en";
$cal_dateformat = $timedate->get_cal_date_format();
$lbl_required_symbol = $app_strings['LBL_REQUIRED_SYMBOL'];
$lbl_date = $mod_strings['LBL_DATE'];
$lbl_time = $mod_strings['LBL_TIME'];
$ntc_date_format = $timedate->get_user_date_format();
$ntc_time_format = '('.$timedate->get_user_time_format().')';
$user_id = $current_user->id;
// $default_status = $app_list_strings['meeting_status_default'];
$default_parent_type= $app_list_strings['record_type_default_key'];
$default_date_start = $timedate->nowDbDate();
$default_time_start = $timedate->nowDbTime();
$time_ampm = $timedate->AMPMMenu($prefix, $timedate->nowDbTime());
// Unimplemented until jscalendar language files are fixed
// $cal_lang =(empty($cal_codes[$current_language])) ? $cal_codes[$default_language] : $cal_codes[$current_language];
$jsCalendarImage = SugarThemeRegistry::current()->getImageURL('jscalendar.gif');
$form = <<<EOF
<input type="hidden" name="${prefix}record" value="">
<input type="hidden" name="${prefix}parent_type" value="${default_parent_type}">
<input type="hidden" name="${prefix}assigned_user_id" value='${user_id}'>
<input type="hidden" name="${prefix}duration_hours" value="1">
<input type="hidden" name="${prefix}duration_minutes" value="00">
<p>$lbl_subject<span class="required">$lbl_required_symbol</span><br>
<input name='${prefix}name' size='25' maxlength='255' type="text"><br>
$lbl_date <span class="required">$lbl_required_symbol</span> <span class="dateFormat">$ntc_date_format</span><br>
<input name='${prefix}date_start' id='jscal_field' onblur="parseDate(this, '$cal_dateformat');" type="text" maxlength="10" value="${default_date_start}"> <!--not_in_theme!--><img src="{$jscalendarImage}" alt="{$app_strings['LBL_ENTER_DATE']}" id="jscal_trigger" align="absmiddle"><br>
$lbl_time <span class="required">$lbl_required_symbol</span> <span class="dateFormat">$ntc_time_format</span><br>
<input name='${prefix}time_start' type="text" maxlength='5' value="${default_time_start}">{$time_ampm}</p>
<script type="text/javascript">
Calendar.setup({
inputField : "jscal_field", daFormat : "$cal_dateformat", ifFormat : "$cal_dateformat", showsTime : false, button : "jscal_trigger", singleClick : true, step : 1, weekNumbers:false
});
</script>
EOF;
$javascript = new javascript();
$javascript->setFormName($formname);
$javascript->setSugarBean(new Task());
$javascript->addRequiredFields($prefix);
$form .=$javascript->getScript();
$mod_strings = $temp_strings;
return $form;
}
function getForm($prefix, $mod='Tasks'){
if(!ACLController::checkAccess('Tasks', 'edit', true)){
return '';
}
global $app_strings;
global $app_list_strings;
if(!empty($mod)){
global $current_language;
$mod_strings = return_module_language($current_language, $mod);
} else {
global $mod_strings;
}
$lbl_save_button_title = $app_strings['LBL_SAVE_BUTTON_TITLE'];
$lbl_save_button_key = $app_strings['LBL_SAVE_BUTTON_KEY'];
$lbl_save_button_label = $app_strings['LBL_SAVE_BUTTON_LABEL'];
$the_form = get_left_form_header($mod_strings['LBL_NEW_FORM_TITLE']);
$the_form .= <<<EOQ
<form name="${prefix}TaskSave" onSubmit="return check_form('${prefix}TaskSave')" method="POST" action="index.php">
<input type="hidden" name="${prefix}module" value="Tasks">
<input type="hidden" name="${prefix}action" value="Save">
EOQ;
$the_form .= $this->getFormBody($prefix, 'Tasks',"{$prefix}TaskSave" );
$the_form .= <<<EOQ
<p><input title="$lbl_save_button_title" accessKey="$lbl_save_button_key" class="button" type="submit" name="button" value=" $lbl_save_button_label " ></p>
</form>
EOQ;
$the_form .= get_left_form_footer();
$the_form .= get_validate_record_js();
return $the_form;
}
/**
* handles save functionality for meetings
* @param string prefix
* @param bool redirect default True
* @param bool useRequired default True
*/
function handleSave($prefix,$redirect=true, $useRequired=false) {
require_once('include/formbase.php');
global $current_user;
global $timedate;
$focus = new Task();
if($useRequired && !checkRequired($prefix, array_keys($focus->required_fields))) {
return null;
}
if( !isset($_POST['reminder_checked']) or ( isset($_POST['reminder_checked']) && $_POST['reminder_checked'] == '0')) {
$_POST['reminder_time'] = -1;
}
if(!isset($_POST['reminder_time'])) {
$_POST['reminder_time'] = $current_user->getPreference('reminder_time');
$_POST['reminder_checked']=1;
}
if(!isset($_POST['email_reminder_checked']) || (isset($_POST['email_reminder_checked']) && $_POST['email_reminder_checked'] == '0')) {
$_POST['email_reminder_time'] = -1;
}
if(!isset($_POST['email_reminder_time'])){
$_POST['email_reminder_time'] = $current_user->getPreference('email_reminder_time');
$_POST['email_reminder_checked'] = 1;
}
// don't allow to set recurring_source from a form
unset($_POST['recurring_source']);
$time_format = $timedate->get_user_time_format();
$time_separator = ":";
if(preg_match('/\d+([^\d])\d+([^\d]*)/s', $time_format, $match)) {
$time_separator = $match[1];
}
if(!empty($_POST[$prefix.'time_hour_start']) && empty($_POST['time_start'])) {
$_POST[$prefix.'time_start'] = $_POST[$prefix.'time_hour_start']. $time_separator .$_POST[$prefix.'time_minute_start'];
}
if(isset($_POST[$prefix.'meridiem']) && !empty($_POST[$prefix.'meridiem'])) {
$_POST[$prefix.'time_start'] = $timedate->merge_time_meridiem($_POST[$prefix.'time_start'],$timedate->get_time_format(), $_POST[$prefix.'meridiem']);
}
if(isset($_POST[$prefix.'time_start']) && strlen($_POST[$prefix.'date_start']) == 10) {
$_POST[$prefix.'date_start'] = $_POST[$prefix.'date_start'] . ' ' . $_POST[$prefix.'time_start'];
}
// retrieve happens here
$focus = populateFromPost($prefix, $focus);
if(!$focus->ACLAccess('Save')) {
ACLController::displayNoAccess(true);
sugar_cleanup(true);
}
// if dates changed
if (!empty($focus->id)) {
$oldBean = new Task();
$oldBean->retrieve($focus->id);
if (($focus->date_start != $oldBean->date_start) || ($focus->date_due != $oldBean->date_due)) {
$focus->date_changed = true;
} else {
$focus->date_changed = false;
}
}
$newBean = true;
if (!empty($focus->id)) {
$newBean = false;
}
//add assigned user and current user if this is the first time bean is saved
if(empty($focus->id) && !empty($_REQUEST['return_module']) && $_REQUEST['return_module'] =='Tasks' && !empty($_REQUEST['return_action']) && $_REQUEST['return_action'] =='DetailView'){
//if return action is set to detail view and return module to meeting, then this is from the long form, do not add the assigned user (only the current user)
//The current user is already added to UI and we want to give the current user the option of opting out of meeting.
//add current user if the assigned to user is different than current user.
if($current_user->id != $_POST['assigned_user_id']){
$_POST['user_invitees'] .= ','.$_POST['assigned_user_id'].', ';
$_POST['user_invitees'] = str_replace(',,', ',', $_POST['user_invitees']);
}
}elseif (empty($focus->id) ){
//this is not from long form so add assigned and current user automatically as there is no invitee list UI.
//This call could be through an ajax call from subpanels or shortcut bar
if(!isset($_POST['user_invitees']))
{
$_POST['user_invitees'] = '';
}
$_POST['user_invitees'] .= ','.$_POST['assigned_user_id'].', ';
//add current user if the assigned to user is different than current user.
if($current_user->id != $_POST['assigned_user_id'] && $_REQUEST['module'] != "Calendar"){
$_POST['user_invitees'] .= ','.$current_user->id.', ';
}
//remove any double comma's introduced during appending
$_POST['user_invitees'] = str_replace(',,', ',', $_POST['user_invitees']);
}
if( (isset($_POST['isSaveFromDetailView']) && $_POST['isSaveFromDetailView'] == 'true') ||
(isset($_POST['is_ajax_call']) && !empty($_POST['is_ajax_call']) && !empty($focus->id) ||
(isset($_POST['return_action']) && $_POST['return_action'] == 'SubPanelViewer') && !empty($focus->id))||
!isset($_POST['user_invitees']) // we need to check that user_invitees exists before processing, it is ok to be empty
){
$focus->save(true);
$return_id = $focus->id;
}else{
if($focus->status == 'Held' && $this->isEmptyReturnModuleAndAction() && !$this->isSaveFromDCMenu()){
//if we are closing the meeting, and the request does not have a return module AND return action set and it is not a save
//being triggered by the DCMenu (shortcut bar) then the request is coming from a dashlet or subpanel close icon and there is no
//need to process user invitees, just save the current values.
$focus->save(true);
}else{
///////////////////////////////////////////////////////////////////////////
//// REMOVE INVITEE RELATIONSHIPS
echo "lol";
}
// Calculate which users to flag as deleted and which to add
$deleteUsers = array();
$focus->load_relationship('users');
//// END REMOVE
///////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////
//// REBUILD INVITEE RELATIONSHIPS
$focus->users_arr = array();
$focus->users_arr = $userInvitees;
$focus->contacts_arr = array();
$focus->contacts_arr = $contactInvitees;
$focus->leads_arr = array();
$focus->leads_arr = $leadInvitees;
if(!empty($_POST['parent_id']) && $_POST['parent_type'] == 'Contacts') {
$focus->contacts_arr[] = $_POST['parent_id'];
}
if(!empty($_POST['parent_id']) && $_POST['parent_type'] == 'Leads') {
$focus->leads_arr[] = $_POST['parent_id'];
}
// Call the Meeting module's save function to handle saving other fields besides
// the users and contacts relationships
$focus->update_vcal = false; // Bug #49195 : don't update vcal b/s related users aren't saved yet, create vcal cache below
$focus->save(true);
$return_id = $focus->id;
if(empty($return_id)){
//this is to handle the situation where the save fails, most likely because of a failure
//in the external api. bug: 42200
$_REQUEST['action'] = 'EditView';
$_REQUEST['return_action'] = 'EditView';
handleRedirect('', 'Tasks');
}
// Process users
//// END REBUILD INVITEE RELATIONSHIPS
///////////////////////////////////////////////////////////////////////////
}
if(!empty($_POST['is_ajax_call']))
{
$json = getJSONobj();
echo $json->encode(array('status' => 'success', 'get' => ''));
exit;
}
if (isset($_REQUEST['return_module']) && $_REQUEST['return_module'] == 'Home'){
header("Location: index.php?module=Home&action=index");
}
else if($redirect) {
handleRedirect($return_id, 'Tasks');
} else {
return $focus;
}
} // end handleSave();
} // end Class def
?>
Hope, that would help you.