211 lines
7.0 KiB
PHP
Executable File
211 lines
7.0 KiB
PHP
Executable File
<?php
|
|
if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
|
|
/*********************************************************************************
|
|
* SugarCRM is a customer relationship management program developed by
|
|
* SugarCRM, Inc. Copyright (C) 2004 - 2009 SugarCRM Inc.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify it under
|
|
* the terms of the GNU 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 General Public License for more
|
|
* details.
|
|
*
|
|
* You should have received a copy of the GNU 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 General Public License version 3.
|
|
*
|
|
* In accordance with Section 7(b) of the GNU General Public License version 3,
|
|
* these Appropriate Legal Notices must retain the display of the "Powered by
|
|
* SugarCRM" logo. If the display of the logo is not reasonably feasible for
|
|
* technical reasons, the Appropriate Legal Notices must display the words
|
|
* "Powered by SugarCRM".
|
|
********************************************************************************/
|
|
/*********************************************************************************
|
|
|
|
* Description: Base Form For EcmPrivateDocuments
|
|
* Portions created by SugarCRM are Copyright (C) SugarCRM, Inc.
|
|
* All Rights Reserved.
|
|
* Contributor(s): ______________________________________..
|
|
********************************************************************************/
|
|
|
|
|
|
class EcmPrivateDocumentFormBase{
|
|
|
|
function getFormBody($prefix, $mod='',$formname='', $size='30',$script=true){
|
|
if(!ACLController::checkAccess('EcmPrivateDocuments', 'edit', true)){
|
|
return '';
|
|
}
|
|
global $mod_strings;
|
|
$temp_strings = $mod_strings;
|
|
if(!empty($mod)){
|
|
global $current_language;
|
|
$mod_strings = return_module_language($current_language, $mod);
|
|
}
|
|
global $app_strings;
|
|
global $app_list_strings;
|
|
|
|
$lbl_required_symbol = $app_strings['LBL_REQUIRED_SYMBOL'];
|
|
$lbl_ecmprivatedocument_subject = $mod_strings['LBL_ECMPRIVATEDOCUMENT_SUBJECT'];
|
|
$lbl_ecmprivatedocument_description = $mod_strings['LBL_ECMPRIVATEDOCUMENT'];
|
|
$default_parent_type= $app_list_strings['record_type_default_key'];
|
|
|
|
$form = <<<EOF
|
|
<input type="hidden" name="${prefix}record" value="">
|
|
<input type="hidden" name="${prefix}parent_type" value="${default_parent_type}">
|
|
<p> <table cellspacing="0" cellpadding="0" border="0">
|
|
<tr>
|
|
<td class="dataLabel">$lbl_ecmprivatedocument_subject <span class="required">$lbl_required_symbol</span></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="dataField"><input name='${prefix}name' size='${size}' maxlength='255' type="text" value=""></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="dataLabel">$lbl_ecmprivatedocument_description</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="dataField"><textarea name='${prefix}description' cols='${size}' rows='4' ></textarea></td>
|
|
</tr>
|
|
</table></p>
|
|
|
|
|
|
EOF;
|
|
if ($script) {
|
|
require_once('include/javascript/javascript.php');
|
|
require_once('modules/EcmPrivateDocuments/EcmPrivateDocument.php');
|
|
$javascript = new javascript();
|
|
$javascript->setFormName($formname);
|
|
$javascript->setSugarBean(new EcmPrivateDocument());
|
|
$javascript->addRequiredFields($prefix);
|
|
$form .=$javascript->getScript();
|
|
}
|
|
$mod_strings = $temp_strings;
|
|
return $form;
|
|
}
|
|
|
|
function getForm($prefix, $mod=''){
|
|
if(!ACLController::checkAccess('EcmPrivateDocuments', 'edit', true)){
|
|
return '';
|
|
}
|
|
if(!empty($mod)){
|
|
global $current_language;
|
|
$mod_strings = return_module_language($current_language, $mod);
|
|
}else global $mod_strings;
|
|
global $app_strings;
|
|
global $app_list_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}EcmPrivateDocumentSave" onSubmit="return check_form('${prefix}EcmPrivateDocumentSave')" method="POST" action="index.php">
|
|
<input type="hidden" name="${prefix}module" value="EcmPrivateDocuments">
|
|
<input type="hidden" name="${prefix}action" value="Save">
|
|
EOQ;
|
|
$the_form .= $this->getFormBody($prefix, $mod, "${prefix}EcmPrivateDocumentSave", "20");
|
|
$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;
|
|
}
|
|
|
|
|
|
function handleSave($prefix,$redirect=true, $useRequired=false){
|
|
require_once('modules/EcmPrivateDocuments/EcmPrivateDocument.php');
|
|
|
|
require_once('include/formbase.php');
|
|
require_once('include/upload_file.php');
|
|
|
|
|
|
$focus = new EcmPrivateDocument();
|
|
if($useRequired && !checkRequired($prefix, array_keys($focus->required_fields))){
|
|
return null;
|
|
}
|
|
$focus = populateFromPost($prefix, $focus);
|
|
if(!$focus->ACLAccess('Save')){
|
|
ACLController::displayNoAccess(true);
|
|
sugar_cleanup(true);
|
|
}
|
|
if(empty($focus->name)){
|
|
return null;
|
|
}
|
|
if (!isset($_REQUEST['date_due_flag'])) $focus->date_due_flag = 0;
|
|
if (!isset($_REQUEST['portal_flag'])) $focus->portal_flag = '0';
|
|
|
|
$upload_file = new UploadFile('uploadfile');
|
|
|
|
$do_final_move = 0;
|
|
|
|
if (isset($_FILES['uploadfile']) && $upload_file->confirm_upload())
|
|
{
|
|
|
|
if (!empty($focus->id) && !empty($_REQUEST['old_filename']) )
|
|
{
|
|
$upload_file->unlink_file($focus->id,$_REQUEST['old_filename']);
|
|
}
|
|
|
|
$focus->filename = $upload_file->get_stored_file_name();
|
|
$focus->file_mime_type = $upload_file->mime_type;
|
|
|
|
$do_final_move = 1;
|
|
}
|
|
else if ( isset( $_REQUEST['old_filename']))
|
|
{
|
|
$focus->filename = $_REQUEST['old_filename'];
|
|
}
|
|
|
|
|
|
$return_id = $focus->save();
|
|
|
|
if ($do_final_move)
|
|
{
|
|
$upload_file->final_move($focus->id);
|
|
}
|
|
else if ( ! empty($_REQUEST['old_id']))
|
|
{
|
|
$upload_file->duplicate_file($_REQUEST['old_id'], $focus->id, $focus->filename);
|
|
}
|
|
|
|
|
|
if($redirect){
|
|
$GLOBALS['log']->debug("Saved record with id of ".$return_id);
|
|
handleRedirect($return_id, "EcmPrivateDocuments");
|
|
}else{
|
|
return $focus;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
?>
|