Add php files

This commit is contained in:
2025-05-12 15:44:39 +00:00
parent c951760058
commit 82d5804ac4
9534 changed files with 2638137 additions and 0 deletions

508
include/Popups/PopupSmarty.php Executable file
View File

@@ -0,0 +1,508 @@
<?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-2010 SugarCRM Inc.
*
* 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. If the display of the logo is not reasonably feasible for
* technical reasons, the Appropriate Legal Notices must display the words
* "Powered by SugarCRM".
********************************************************************************/
require_once('include/ListView/ListViewSmarty.php');
require_once('include/TemplateHandler/TemplateHandler.php');
require_once('include/SearchForm/SearchForm2.php');
define("NUM_COLS", 2);
class PopupSmarty extends ListViewSmarty{
var $contextMenus = false;
var $export = false;
var $mailmerge = false;
var $mergeduplicates = false;
var $quickViewLinks = false;
var $multiSelect = false;
var $headerTpl;
var $footerTpl;
var $th;
var $tpl;
var $view;
var $field_defs;
var $formData;
var $_popupMeta;
var $_create = false;
var $searchdefs = array();
var $listviewdefs = array();
var $searchFields = array();
var $customFieldDefs;
var $filter_fields = array();
//rrs
var $searchForm;
var $module;
var $massUpdateData = '';
function PopupSmarty($seed, $module){
parent::ListViewSmarty();
$this->th = new TemplateHandler();
$this->th->loadSmarty();
$this->seed = $seed;
$this->view = 'Popup';
$this->module = $module;
$this->searchForm = new SearchForm($this->seed, $this->module);
$this->th->deleteTemplate($module, $this->view);
}
/**
* Processes the request. Calls ListViewData process. Also assigns all lang strings, export links,
* This is called from ListViewDisplay
*
* @param file file Template file to use
* @param data array from ListViewData
* @param html_var string the corresponding html var in xtpl per row
*
*/
function process($file, $data, $htmlVar) {
global $odd_bg, $even_bg, $hilite_bg, $click_bg, $app_strings;
parent::process($file, $data, $htmlVar);
$this->tpl = $file;
$this->data = $data;
$totalWidth = 0;
foreach($this->displayColumns as $name => $params) {
$totalWidth += $params['width'];
}
$adjustment = $totalWidth / 100;
$contextMenuObjectsTypes = array();
foreach($this->displayColumns as $name => $params) {
$this->displayColumns[$name]['width'] = round($this->displayColumns[$name]['width'] / $adjustment, 2);
// figure out which contextMenu objectsTypes are required
if(!empty($params['contextMenu']['objectType']))
$contextMenuObjectsTypes[$params['contextMenu']['objectType']] = true;
}
$this->th->ss->assign('displayColumns', $this->displayColumns);
$this->th->ss->assign('bgHilite', $hilite_bg);
$this->th->ss->assign('colCount', count($this->displayColumns) + 1);
$this->th->ss->assign('htmlVar', strtoupper($htmlVar));
$this->th->ss->assign('moduleString', $this->moduleString);
$this->th->ss->assign('editLinkString', $GLOBALS['app_strings']['LBL_EDIT_BUTTON']);
$this->th->ss->assign('viewLinkString', $GLOBALS['app_strings']['LBL_VIEW_BUTTON']);
//rrs
$this->searchForm->parsedView = 'popup_query_form';
$this->searchForm->displayType = 'popupView';
$this->th->ss->assign('searchForm', $this->searchForm->display(false));
//rrs
if($this->overlib) $this->th->ss->assign('overlib', true);
if($this->export) $this->th->ss->assign('exportLink', $this->buildExportLink());
$this->th->ss->assign('quickViewLinks', $this->quickViewLinks);
if($this->mailMerge) $this->th->ss->assign('mergeLink', $this->buildMergeLink()); // still check for mailmerge access
if($this->mergeduplicates) $this->th->ss->assign('mergedupLink', $this->buildMergeDuplicatesLink());
if (!empty($_REQUEST['mode']) && strtoupper($_REQUEST['mode']) == 'MULTISELECT') {
$this->multiSelect = true;
}
// handle save checks and stuff
if($this->multiSelect) {
$this->th->ss->assign('selectedObjectsSpan', $this->buildSelectedObjectsSpan());
$this->th->ss->assign('multiSelectData', $this->getMultiSelectData());
$this->th->ss->assign('MODE', "<input type='hidden' name='mode' value='MultiSelect'>");
}
$this->processArrows($data['pageData']['ordering']);
$this->th->ss->assign('prerow', $this->multiSelect);
$this->th->ss->assign('rowColor', array('oddListRow', 'evenListRow'));
$this->th->ss->assign('bgColor', array($odd_bg, $even_bg));
$this->th->ss->assign('contextMenus', $this->contextMenus);
if($this->contextMenus && !empty($contextMenuObjectsTypes)) {
$script = '';
$cm = new contextMenu();
foreach($contextMenuObjectsTypes as $type => $value) {
$cm->loadFromFile($type);
$script .= $cm->getScript();
$cm->menuItems = array(); // clear menuItems out
}
$this->th->ss->assign('contextMenuScript', $script);
}
//rrs
$this->_build_field_defs();
}
/*
* Display the Smarty template. Here we are using the TemplateHandler for caching per the module.
*/
function display($end = true) {
global $app_strings;
if(!is_file($GLOBALS['sugar_config']['cache_dir'] . 'jsLanguage/' . $GLOBALS['current_language'] . '.js')) {
require_once('include/language/jsLanguage.php');
jsLanguage::createAppStringsCache($GLOBALS['current_language']);
}
$jsLang = '<script type="text/javascript" src="' . $GLOBALS['sugar_config']['cache_dir'] . 'jsLanguage/' . $GLOBALS['current_language'] . '.js?s=' . $GLOBALS['sugar_version'] . '&c=' . $GLOBALS['sugar_config']['js_custom_version'] . '&j=' . $GLOBALS['sugar_config']['js_lang_version'] . '"></script>';
$this->th->ss->assign('data', $this->data['data']);
$this->data['pageData']['offsets']['lastOffsetOnPage'] = $this->data['pageData']['offsets']['current'] + count($this->data['data']);
$this->th->ss->assign('pageData', $this->data['pageData']);
$navStrings = array('next' => $GLOBALS['app_strings']['LNK_LIST_NEXT'],
'previous' => $GLOBALS['app_strings']['LNK_LIST_PREVIOUS'],
'end' => $GLOBALS['app_strings']['LNK_LIST_END'],
'start' => $GLOBALS['app_strings']['LNK_LIST_START'],
'of' => $GLOBALS['app_strings']['LBL_LIST_OF']);
$this->th->ss->assign('navStrings', $navStrings);
$associated_row_data = array();
foreach($this->data['data'] as $val){
$associated_row_data[$val['ID']] = $val;
}
$is_show_fullname = showFullName() ? 1 : 0;
$json = getJSONobj();
$this->th->ss->assign('jsLang', $jsLang);
$this->th->ss->assign('lang', substr($GLOBALS['current_language'], 0, 2));
$this->th->ss->assign('headerTpl', 'include/Popups/tpls/header.tpl');
$this->th->ss->assign('footerTpl', 'include/Popups/tpls/footer.tpl');
$this->th->ss->assign('ASSOCIATED_JAVASCRIPT_DATA', 'var associated_javascript_data = '.$json->encode($associated_row_data). '; var is_show_fullname = '.$is_show_fullname.';');
$this->th->ss->assign('module', $this->seed->module_dir);
$request_data = empty($_REQUEST['request_data']) ? '' : $_REQUEST['request_data'];
$this->th->ss->assign('request_data', $request_data);
$this->th->ss->assign('fields', $this->fieldDefs);
$this->th->ss->assign('formData', $this->formData);
$this->th->ss->assign('APP', $GLOBALS['app_strings']);
$this->th->ss->assign('MOD', $GLOBALS['mod_strings']);
$this->th->ss->assign('popupMeta', $this->_popupMeta);
$this->th->ss->assign('current_query', base64_encode(serialize($_REQUEST)));
$this->th->ss->assign('customFields', $this->customFieldDefs);
$this->th->ss->assign('numCols', NUM_COLS);
$this->th->ss->assign('massUpdateData', $this->massUpdateData);
$this->th->ss->assign('jsCustomVersion', $GLOBALS['sugar_config']['js_custom_version']);
$this->th->ss->assign('sugarVersion', $GLOBALS['sugar_version']);
$this->th->ss->assign('should_process', $this->should_process);
if($this->_create){
$this->th->ss->assign('ADDFORM', $this->_getAddForm());
$this->th->ss->assign('ADDFORMHEADER', $this->_getAddFormHeader());
$this->th->ss->assign('object_name', $this->seed->object_name);
}
$this->th->ss->assign('LIST_HEADER', get_form_header($GLOBALS['mod_strings']['LBL_LIST_FORM_TITLE'], '', false));
$this->th->ss->assign('SEARCH_FORM_HEADER', get_form_header($GLOBALS['mod_strings']['LBL_SEARCH_FORM_TITLE'], '', false));
$str = $this->th->displayTemplate($this->seed->module_dir, $this->view, $this->tpl);
return $str;
}
/*
* Setup up the smarty template. we added an extra step here to add the order by from the popupdefs.
*/
function setup($file) {
if(isset($this->_popupMeta)){
if(isset($this->_popupMeta['create']['formBase'])) {
require_once('modules/' . $this->seed->module_dir . '/' . $this->_popupMeta['create']['formBase']);
$this->_create = true;
}
}
if(!empty($this->_popupMeta['create'])){
$formBase = new $this->_popupMeta['create']['formBaseClass']();
if(isset($_REQUEST['doAction']) && $_REQUEST['doAction'] == 'save')
{
$formBase->handleSave('', false, true);
}
}
$params = array();
if(!empty($this->_popupMeta['orderBy'])){
$params['orderBy'] = $this->_popupMeta['orderBy'];
}
if(file_exists('custom/modules/'.$this->module.'/metadata/metafiles.php')){
require('custom/modules/'.$this->module.'/metadata/metafiles.php');
}elseif(file_exists('modules/'.$this->module.'/metadata/metafiles.php')){
require('modules/'.$this->module.'/metadata/metafiles.php');
}
if(!empty($metafiles[$this->module]['searchfields'])) {
require($metafiles[$this->module]['searchfields']);
} elseif(file_exists('modules/'.$this->module.'/metadata/SearchFields.php')) {
require('modules/'.$this->module.'/metadata/SearchFields.php');
}
$this->searchdefs[$this->module]['templateMeta']['maxColumns'] = 2;
$this->searchdefs[$this->module]['templateMeta']['widths']['label'] = 10;
$this->searchdefs[$this->module]['templateMeta']['widths']['field'] = 30;
$this->searchForm->view = 'PopupSearchForm';
$this->searchForm->setup($this->searchdefs, $searchFields, 'include/SearchForm/tpls/SearchFormGenericAdvanced.tpl', 'advanced_search', $this->listviewdefs);
$lv = new ListViewSmarty();
$displayColumns = array();
if(!empty($_REQUEST['displayColumns'])) {
foreach(explode('|', $_REQUEST['displayColumns']) as $num => $col) {
if(!empty($listViewDefs[$this->module][$col]))
$displayColumns[$col] = $this->listviewdefs[$this->module][$col];
}
}
else {
foreach($this->listviewdefs[$this->module] as $col => $para) {
if(!empty($para['default']) && $para['default'])
$displayColumns[$col] = $para;
}
}
$params['massupdate'] = true;
if(!empty($_REQUEST['orderBy'])) {
$params['orderBy'] = $_REQUEST['orderBy'];
$params['overrideOrder'] = true;
if(!empty($_REQUEST['sortOrder'])) $params['sortOrder'] = $_REQUEST['sortOrder'];
}
$lv->displayColumns = $displayColumns;
$this->searchForm->lv = $lv;
$this->searchForm->displaySavedSearch = false;
$this->searchForm->populateFromRequest('advanced_search');
$searchWhere = $this->_get_where_clause();
$this->searchColumns = $this->searchForm->searchColumns;
//parent::setup($this->seed, $file, $searchWhere, $params, 0, -1, $this->filter_fields);
$this->should_process = true;
if(isset($params['export'])) {
$this->export = $params['export'];
}
if(!empty($params['multiSelectPopup'])) {
$this->multi_select_popup = $params['multiSelectPopup'];
}
if(!empty($params['massupdate']) && $params['massupdate'] != false) {
$this->show_mass_update_form = true;
$this->mass = new MassUpdate();
$this->mass->setSugarBean($this->seed);
if(!empty($params['handleMassupdate']) || !isset($params['handleMassupdate'])) {
$this->mass->handleMassUpdate();
}
}
// create filter fields based off of display columns
if(empty($this->filter_fields) || $this->mergeDisplayColumns) {
foreach($this->displayColumns as $columnName => $def) {
$this->filter_fields[strtolower($columnName)] = true;
if(!empty($def['related_fields'])) {
foreach($def['related_fields'] as $field) {
//id column is added by query construction function. This addition creates duplicates
//and causes issues in oracle. #10165
if ($field != 'id') {
$this->filter_fields[$field] = true;
}
}
}
if (!empty($this->seed->field_defs[strtolower($columnName)]['db_concat_fields'])) {
foreach($this->seed->field_defs[strtolower($columnName)]['db_concat_fields'] as $index=>$field){
if(!isset($this->filter_fields[strtolower($field)]) || !$this->filter_fields[strtolower($field)])
{
$this->filter_fields[strtolower($field)] = true;
}
}
}
}
foreach ($this->searchColumns as $columnName => $def )
{
$this->filter_fields[strtolower($columnName)] = true;
}
}
if (!empty($_REQUEST['query']) || (!empty($GLOBALS['sugar_config']['save_query']) && $GLOBALS['sugar_config']['save_query'] != 'populate_only')) {
$data = $this->lvd->getListViewData($this->seed, $searchWhere, 0, -1, $this->filter_fields, $params, 'id');
} else {
$this->should_process = false;
$data = array(
'data'=>array(),
'pageData'=>array(
'bean'=>array('moduleDir'=>$this->seed->module_dir),
'ordering'=>'',
'offsets'=>array('total'=>0,'next'=>0,'current'=>0),
),
);
}
foreach($this->displayColumns as $columnName => $def)
{
$seedName = strtolower($columnName);
if(empty($this->displayColumns[$columnName]['type'])){
if(!empty($this->lvd->seed->field_defs[$seedName]['type'])){
$seedDef = $this->lvd->seed->field_defs[$seedName];
$this->displayColumns[$columnName]['type'] = (!empty($seedDef['custom_type']))?$seedDef['custom_type']:$seedDef['type'];
}else{
$this->displayColumns[$columnName]['type'] = '';
}
}//fi empty(...)
if(!empty($this->lvd->seed->field_defs[$seedName]['options'])){
$this->displayColumns[$columnName]['options'] = $this->lvd->seed->field_defs[$seedName]['options'];
}
//C.L. Fix for 11177
if($this->displayColumns[$columnName]['type'] == 'html') {
$cField = $this->seed->custom_fields;
if(isset($cField) && isset($cField->bean->$seedName)) {
$seedName2 = strtoupper($columnName);
$htmlDisplay = html_entity_decode($cField->bean->$seedName);
$count = 0;
while($count < count($data['data'])) {
$data['data'][$count][$seedName2] = &$htmlDisplay;
$count++;
}
}
}//fi == 'html'
if (!empty($this->lvd->seed->field_defs[$seedName]['sort_on'])) {
$this->displayColumns[$columnName]['orderBy'] = $this->lvd->seed->field_defs[$seedName]['sort_on'];
}
}
$this->process($file, $data, $this->seed->object_name);
}
/*
* Return the where clause as per the REQUEST.
*/
function _get_where_clause()
{
$where = '';
$where_clauses = $this->searchForm->generateSearchWhere(true, $this->seed->module_dir);
if (count($where_clauses) > 0 )$where= implode(' and ', $where_clauses);
// Need to include the default whereStatement
if(!empty($this->_popupMeta['whereStatement'])){
if(!empty($where))$where .= ' AND ';
$where .= $this->_popupMeta['whereStatement'];
}
return $where;
}
/*
* Generate the data for the search form on the header of the Popup.
*/
function _build_field_defs(){
$this->formData = array();
$this->customFieldDefs = array();
foreach($this->searchdefs[$this->module]['layout']['advanced_search'] as $data){
if(is_array($data)){
$this->formData[] = array('field' => $data);
$value = '';
$this->customFieldDefs[$data['name']]= $data;
if(!empty($_REQUEST[$data['name']]))
$value = $_REQUEST[$data['name']];
$this->customFieldDefs[$data['name']]['value'] = $value;
}else
$this->formData[] = array('field' => array('name'=>$data));
}
$this->fieldDefs = array();
if($this->seed){
$this->seed->fill_in_additional_detail_fields();
foreach($this->seed->toArray() as $name => $value) {
$this->fieldDefs[$name] = $this->seed->field_defs[$name];
//if we have a relate type then reset to name so that we end up with a textbox
//rather than a select button
$this->fieldDefs[$name]['name'] = $this->fieldDefs[$name]['name'];
if($this->fieldDefs[$name]['type'] == 'relate')
$this->fieldDefs[$name]['type'] = 'name';
if(isset($this->fieldDefs[$name]['options']) && isset($GLOBALS['app_list_strings'][$this->fieldDefs[$name]['options']])) {
$this->fieldDefs[$name]['options'] = $GLOBALS['app_list_strings'][$this->fieldDefs[$name]['options']]; // fill in enums
}
if(!empty($_REQUEST[$name]))
$value = $_REQUEST[$name];
$this->fieldDefs[$name]['value'] = $value;
}
}
}
function _getAddForm(){
$addform = '';
if(!$this->seed->ACLAccess('save')){
return;
}
if(!empty($this->_popupMeta['create'])){
$formBase = new $this->_popupMeta['create']['formBaseClass']();
// TODO: cleanup the construction of $addform
$prefix = empty($this->_popupMeta['create']['getFormBodyParams'][0]) ? '' : $this->_popupMeta['create']['getFormBodyParams'][0];
$mod = empty($this->_popupMeta['create']['getFormBodyParams'][1]) ? '' : $this->_popupMeta['create']['getFormBodyParams'][1];
$formBody = empty($this->_popupMeta['create']['getFormBodyParams'][2]) ? '' : $this->_popupMeta['create']['getFormBodyParams'][2];
$getFormMethod = (empty($this->_popupMeta['create']['getFormMethod']) ? 'getFormBody' : $this->_popupMeta['create']['getFormMethod']);
$formbody = $formBase->$getFormMethod($prefix, $mod, $formBody);
$addform = '<table><tr><td nowrap="nowrap" valign="top">'
. str_replace('<br>', '</td><td nowrap="nowrap" valign="top">&nbsp;', $formbody)
. '</td></tr></table>'
. '<input type="hidden" name="action" value="Popup" />';
return $addform;
}
}
function _getAddFormHeader(){
$lbl_save_button_title = $GLOBALS['app_strings']['LBL_SAVE_BUTTON_TITLE'];
$lbl_save_button_key = $GLOBALS['app_strings']['LBL_SAVE_BUTTON_KEY'];
$lbl_save_button_label = $GLOBALS['app_strings']['LBL_SAVE_BUTTON_LABEL'];
$module_dir = $this->seed->module_dir;
$formSave = <<<EOQ
<input type="hidden" name="create" value="true">
<input type="hidden" name="popup" value="true">
<input type="hidden" name="to_pdf" value="true">
<input type="hidden" name="return_module" value="$module_dir">
<input type="hidden" name="return_action" value="Popup">
<input type="submit" name="button" class="button" title="$lbl_save_button_title" accesskey="$lbl_save_button_key" value=" $lbl_save_button_label " />
<input type="button" name="button" class="button" title="{$GLOBALS['app_strings']['LBL_CANCEL_BUTTON_TITLE']}" accesskey="{$GLOBALS['app_strings']['LBL_CANCEL_BUTTON_KEY']}" value="{$GLOBALS['app_strings']['LBL_CANCEL_BUTTON_LABEL']}" onclick="toggleDisplay('addform');" />
EOQ;
// if metadata contains custom inputs for the quickcreate
if(!empty($this->_popupMeta['customInput']) && is_array($this->_popupMeta['customInput'])) {
foreach($this->_popupMeta['customInput'] as $key => $value)
$formSave .= '<input type="hidden" name="' . $key . '" value="'. $value .'">\n';
}
$addformheader = get_form_header($this->_popupMeta['create']['createButton'], $formSave, false);
return $addformheader;
}
}
?>

343
include/Popups/Popup_picker.php Executable file
View File

@@ -0,0 +1,343 @@
<?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-2010 SugarCRM Inc.
*
* 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. If the display of the logo is not reasonably feasible for
* technical reasons, the Appropriate Legal Notices must display the words
* "Powered by SugarCRM".
********************************************************************************/
class Popup_Picker
{
var $_popupMeta;
var $_create = false;
var $_hide_clear_button = false;
/**
* Creates a new Popup_Picker object. Controls displaying of single select and multi select popups
*
*/
function Popup_Picker()
{
global $currentModule, $popupMeta;
// cn: bug 12269 - directory navigation attack - detect and stop.
if(isset($_REQUEST['metadata']) && strpos($_REQUEST['metadata'], "..") !== false)
die("Directory navigation attack denied.");
if(empty($popupMeta)){
if(!empty($_REQUEST['metadata']) && $_REQUEST['metadata'] != 'undefined') // if custom metadata is requested
require_once('modules/' . $currentModule . '/metadata/' . $_REQUEST['metadata'] . '.php');
else
require_once('modules/' . $currentModule . '/metadata/popupdefs.php');
}
$this->_popupMeta = $popupMeta;
require_once('modules/' . $currentModule . '/' . $this->_popupMeta['moduleMain'] . '.php');
if(isset($this->_popupMeta['create']['formBase']) && isset($_REQUEST['create']) && $_REQUEST['create'] == 'true') { // include create form
require_once('modules/' . $currentModule . '/' . $this->_popupMeta['create']['formBase']);
$this->_create = true;
}
}
/*
*
*/
function _get_where_clause()
{
$where = '';
$whereClauses = array();
if(isset($_REQUEST['query']))
{
foreach(array_keys($this->_popupMeta['whereClauses']) as $key) {
append_where_clause($whereClauses, $key, $this->_popupMeta['whereClauses'][$key]);
}
$where = generate_where_statement($whereClauses);
}
if(!empty($this->_popupMeta['whereStatement'])){
if(!empty($where))$where .= ' AND ';
$where .= $this->_popupMeta['whereStatement'];
}
return $where;
}
/**
*
*/
function process_page()
{
global $theme;
global $mod_strings;
global $app_strings;
global $currentModule;
global $app_list_strings, $sugar_version, $sugar_config;
$output_html = "<script type=\"text/javascript\" src=\"" . getJSPath('include/javascript/sugar_3.js'). "\"></script>";
$where = '';
if(empty($_REQUEST[$currentModule . '_' . strtoupper($this->_popupMeta['moduleMain']) . '_offset'])) {
$_POST[$currentModule . '_' . strtoupper($this->_popupMeta['moduleMain']) . '_offset'] = '';
}
if(empty($_REQUEST['saved_associated_data'])) {
$_POST['saved_associated_data'] = '';
}
$where = $this->_get_where_clause();
// CREATE STUFF
if($this->_create) {
$formBase = new $this->_popupMeta['create']['formBaseClass']();
if(isset($_REQUEST['doAction']) && $_REQUEST['doAction'] == 'save')
{
$formBase->handleSave('', false, true);
}
$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'];
// TODO: cleanup the construction of $addform
$prefix = empty($this->_popupMeta['create']['getFormBodyParams'][0]) ? '' : $this->_popupMeta['create']['getFormBodyParams'][0];
$mod = empty($this->_popupMeta['create']['getFormBodyParams'][1]) ? '' : $this->_popupMeta['create']['getFormBodyParams'][1];
$formBody = empty($this->_popupMeta['create']['getFormBodyParams'][2]) ? '' : $this->_popupMeta['create']['getFormBodyParams'][2];
$getFormMethod = (empty($this->_popupMeta['create']['getFormMethod']) ? 'getFormBody' : $this->_popupMeta['create']['getFormMethod']);
$formbody = $formBase->$getFormMethod($prefix, $mod, $formBody);
$addform = '<table><tr><td nowrap="nowrap" valign="top">'
. str_replace('<br>', '</td><td nowrap="nowrap" valign="top">&nbsp;', $formbody)
. '</td></tr></table>'
. '<input type="hidden" name="action" value="Popup" />';
$formSave = <<<EOQ
<input type="hidden" name="create" value="true">
<input type="hidden" name="popup" value="true">
<input type="hidden" name="to_pdf" value="true">
<input type="hidden" name="return_module" value="$currentModule">
<input type="hidden" name="return_action" value="Popup">
<input type="submit" name="button" class="button" title="$lbl_save_button_title" accesskey="$lbl_save_button_key" value=" $lbl_save_button_label " />
<input type="button" name="button" class="button" title="{$app_strings['LBL_CANCEL_BUTTON_TITLE']}" accesskey="{$app_strings['LBL_CANCEL_BUTTON_KEY']}" value="{$app_strings['LBL_CANCEL_BUTTON_LABEL']}" onclick="toggleDisplay('addform');" />
EOQ;
// if metadata contains custom inputs for the quickcreate
if(!empty($this->_popupMeta['customInput']) && is_array($this->_popupMeta['customInput'])) {
foreach($this->_popupMeta['customInput'] as $key => $value)
$formSave .= '<input type="hidden" name="' . $key . '" value="'. $value .'">\n';
}
$createButton = <<<EOQ
<input type="button" name="showAdd" class="button" value="{$this->_popupMeta['create']['createButton']}" onclick="toggleDisplay('addform');" />
EOQ;
$addformheader = get_form_header($this->_popupMeta['create']['createButton'], $formSave, false);
}
// END CREATE STUFF
// search request inputs
$searchInputs = array();
foreach($this->_popupMeta['searchInputs'] as $input)
$searchInputs[$input] = empty($_REQUEST[$input]) ? '' : $_REQUEST[$input];
$request_data = empty($_REQUEST['request_data']) ? '' : $_REQUEST['request_data'];
$hide_clear_button = empty($_REQUEST['hide_clear_button']) && empty($this->_hide_clear_button) ? false : true;
$button = '<script>eval("var request_data = " + window.document.forms[\'popup_query_form\'].request_data.value);</script>';
if(isset($_REQUEST['mass'])) {
foreach(array_unique($_REQUEST['mass']) as $record) {
$button .= "<input style='display: none' checked type='checkbox' name='mass[]' value='$record'>\n";
}
}
//START:FOR MULTI-SELECT
$multi_select = false;
if (!empty($_REQUEST['mode']) && strtoupper($_REQUEST['mode']) == 'MULTISELECT') {
$multi_select = true;
$button .= "<input type='hidden' name='mode' value='MultiSelect'>";
$button .= "<input type='button' name='button' class='button' onclick=\"send_back_selected('$currentModule',document.MassUpdate,'mass[]','" .$app_strings['ERR_NOTHING_SELECTED']."', request_data.field_to_name_array);\" title='"
.$app_strings['LBL_SELECT_BUTTON_TITLE']."' accesskey='"
.$app_strings['LBL_SELECT_BUTTON_KEY']."' value=' "
.$app_strings['LBL_SELECT_BUTTON_LABEL']." ' />\n";
}
//END:FOR MULTI-SELECT
if(!$hide_clear_button)
{
$button .= "<input type='button' name='button' class='button' onclick=\"send_back('','');\" title='"
.$app_strings['LBL_CLEAR_BUTTON_TITLE']."' accesskey='"
.$app_strings['LBL_CLEAR_BUTTON_KEY']."' value=' "
.$app_strings['LBL_CLEAR_BUTTON_LABEL']." ' />\n";
}
$button .= "<input type='submit' name='button' class='button' onclick=\"window.close();\" title='"
.$app_strings['LBL_CANCEL_BUTTON_TITLE']."' accesskey='"
.$app_strings['LBL_CANCEL_BUTTON_KEY']."' value=' "
.$app_strings['LBL_CANCEL_BUTTON_LABEL']." ' />\n";
if(isset($this->_popupMeta['templateForm'])) {
$form = new XTemplate($this->_popupMeta['templateForm']);
}
else {
$form = new XTemplate('modules/' . $currentModule . '/Popup_picker.html');
}
$form->assign('MOD', $mod_strings);
$form->assign('APP', $app_strings);
$form->assign('THEME', $theme);
$form->assign('MODULE_NAME', $currentModule);
$form->assign('request_data', $request_data);
// CREATE STUFF
if($this->_create) {
$form->assign('CREATEBUTTON', $createButton);
$form->assign('ADDFORMHEADER', $addformheader);
$form->assign('ADDFORM', $addform);
}
// CREATE STUFF
if(isset($this->_popupMeta['className'])) $seed_bean = new $this->_popupMeta['className']();
else $seed_bean = new $this->_popupMeta['moduleMain']();
// assign search inputs to xtemplates
foreach(array_keys($searchInputs) as $key) {
if(!empty($_REQUEST[$key]) && (isset($seed_bean->field_name_map[$key]['type']) && $seed_bean->field_name_map[$key]['type'] == 'bool')) {
$form->assign(strtoupper($key), ' checked ');
} else {
$form->assign(strtoupper($key), $searchInputs[$key]);
}
}
if($this->_create) $form->assign('CREATE', 'true');
else $form->assign('CREATE', 'false');
// fill any doms
if(isset($this->_popupMeta['selectDoms']))
foreach($this->_popupMeta['selectDoms'] as $key => $value) {
$form->assign($key, get_select_options_with_id($app_list_strings[$value['dom']], $value['searchInput']));
}
$form->assign('MULTI_SELECT', !empty($_REQUEST['mode']) ? strtoupper($_REQUEST['mode']) : '');
ob_start();
insert_popup_header($theme);
$output_html .= ob_get_contents();
ob_end_clean();
$output_html .= get_form_header($mod_strings['LBL_SEARCH_FORM_TITLE'], '', false);
$form->parse('main.SearchHeader');
$output_html .= $form->text('main.SearchHeader');
// Reset the sections that are already in the page so that they do not print again later.
$form->reset('main.SearchHeader');
$ListView = new ListView();
$ListView->show_select_menu = false;
$ListView->show_delete_button = false;
$ListView->show_export_button = false;
$ListView->process_for_popups = true;
$ListView->setXTemplate($form);
$ListView->multi_select_popup = $multi_select;
$ListView->xTemplate->assign('TAG_TYPE', 'A');
if(isset($this->_popupMeta['listTitle'])) {
$ListView->setHeaderTitle($this->_popupMeta['listTitle']);
}
else {
$ListView->setHeaderTitle($mod_strings['LBL_LIST_FORM_TITLE']);
}
$ListView->setHeaderText($button);
$ListView->setQuery($where, '', $this->_popupMeta['orderBy'], $this->_popupMeta['varName']);
$ListView->setModStrings($mod_strings);
ob_start();
$ListView->processListView($seed_bean, 'main', $this->_popupMeta['varName']);
$output_html .= ob_get_contents();
ob_end_clean();
$json = getJSONobj();
// decode then encode to escape "'s
$output_html .= "</form>
<script type=\"text/javascript\">
function save_checks(offset) {
checked_ids = Array();
for (i = 0; i < document.MassUpdate.elements.length; i++){
if(document.MassUpdate.elements[i].name == 'mass[]' && document.MassUpdate.elements[i].checked) {
temp_string = '';
temp_string += '\"' + document.MassUpdate.elements[i].value + '\": {';
for(the_key in associated_javascript_data[document.MassUpdate.elements[i].value]) {
temp_string += '\"' + the_key + '\":\"' + associated_javascript_data[document.MassUpdate.elements[i].value][the_key] + '\",';
}
temp_string = temp_string.substring(0,temp_string.length - 1);
temp_string += '}';
checked_ids.push(temp_string);
}
}
document.MassUpdate.saved_associated_data.value = escape('{' + checked_ids.join(',') + '}');
document.MassUpdate.action.value = \"Popup\";
document.MassUpdate.$currentModule" . '_' . strtoupper($this->_popupMeta['moduleMain']) . '_offset.value = offset;
document.MassUpdate.submit();
}
// reassigned the saved data from the saved checks
if(typeof(document.MassUpdate) != \'undefined\' && document.MassUpdate.saved_associated_data.value != \'\') {
temp_array = ' . (!empty($_REQUEST['saved_associated_data']) ? $json->encode($json->decode(urldecode($_REQUEST['saved_associated_data']))) : '\'\'') . ';
for(the_key in temp_array) {
associated_javascript_data[the_key] = temp_array[the_key];
}
}
// save checks across pages for multiselects
if(typeof(document.MassUpdate) != "undefined") {
checked_items = Array();
inputs_array = document.MassUpdate.elements;
for(wp = 0 ; wp < inputs_array.length; wp++) {
if(inputs_array[wp].name == "mass[]" && inputs_array[wp].style.display == "none") {
checked_items.push(inputs_array[wp].value);
}
}
for(i in checked_items) {
for(wp = 0 ; wp < inputs_array.length; wp++) {
if(inputs_array[wp].name == "mass[]" && inputs_array[wp].value == checked_items[i]) {
inputs_array[wp].checked = true;
}
}
}
}
</script>';
$output_html .= insert_popup_footer();
return $output_html;
}
} // end of class Popup_Picker
?>