/
var
/
www
/
html
/
sugardemo
/
modules
/
WorkFlowAlertShells
/
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. */ /********************************************************************************* * Description: TODO: To be written. * Portions created by SugarCRM are Copyright (C) SugarCRM, Inc. * All Rights Reserved. * Contributor(s): ______________________________________.. ********************************************************************************/ global $app_strings; //we don't want the parent module's string file, but rather the string file specifc to this subpanel global $current_language; global $current_module_strings, $current_module_strings2; $current_module_strings = return_module_language($current_language, 'WorkFlowAlertShells'); $current_module_strings2 = return_module_language($current_language, 'WorkFlowActionShells'); global $currentModule; global $focus; global $action; // focus_alerts_lists is the means of passing data to a SubPanelView. global $focus_alerts_list; global $focus_actions_list; $the_title = "<table width='100%' cellpadding='0' cellspacing='0' border='0' style='padding-top:3px; margin-bottom: 0px; padding-bottom: 0px; margin-top: 3px;'>\n"; $module = preg_replace('/ /', '', $mod_strings['LBL_MODULE_NAME']); $the_title .= "<tr><td><table width='100%' cellpadding='0' cellspacing='0' border='0' style='padding-top:3px; margin-bottom: 0px; padding-bottom: 0px; margin-top: 3px;'><tr><td valign='top'></td></tr></table></td></tr>"; $the_title .= "<tr><td valign='top'><h3>" . $current_module_strings['LBL_MODULE_SECTION_TITLE'] . ":</h3></td>\n"; $the_title .= "</tr></table>\n"; echo $the_title; $buttons = [ "<input title='" . $app_strings['LBL_NEW_BUTTON_TITLE'] . "' class='button' type='submit' name='NewWorkFlowAlertShells' id='NewWorkFlowAlertShells' value=' " . $app_strings['LBL_NEW_BUTTON_LABEL'] . " '>\n", ]; $button = "<form action='index.php' method='post' name='form' id='form'>\n"; $button .= "<input type='hidden' name='module' value='WorkFlowAlertShells'>\n"; $button .= "<input type='hidden' name='module_tab' value='WorkFlow'>\n"; $button .= "<input type='hidden' name='workflow_id' value='$focus->id'>\n<input type='hidden' name='alert_name' value='$focus->name'>\n"; $button .= "<input type='hidden' name='return_module' value='" . $currentModule . "'>\n"; $button .= "<input type='hidden' name='return_action' value='" . $action . "'>\n"; $button .= "<input type='hidden' name='return_id' value='" . $focus->id . "'>\n"; $button .= "<input type='hidden' name='action' value='EditView';>\n"; require_once 'include/SugarSmarty/plugins/function.sugar_action_menu.php'; $button .= smarty_function_sugar_action_menu([ 'id' => 'ACLRoles_EditView_action_menu', 'buttons' => $buttons, ], $xtpl); //$button .= "<input title='".$current_module_strings['LBL_NEW_BUTTON_TITLE_ACTION']."' class='button' type='button' name='New' value=' ".$current_module_strings['LBL_NEW_BUTTON_LABEL_ACTION']."'"; //$button .= "LANGUAGE=javascript onclick='window.open(\"index.php?module=WorkFlowActionShells&action=CreateStep1&html=CreateStep1&form=ComponentView&form_submit=false&query=true&sugar_body_only=true&workflow_id=$focus->id\",\"new\",\"width=400,height=500,resizable=1,scrollbars=1\");'"; //$button .= ">\n"; $button .= '</form>'; $admin = Administration::getSettings(); $mail_server = trim($admin->settings['mail_smtpserver']); if (empty($mail_server) && !empty($focus_alerts_list)) { echo "<BR><font color='red'><b>" . $mod_strings['LBL_LACK_OF_NOTIFICATIONS_ON'] . '</b></font><BR>'; } //ALERT SUBPANEL //$focus_alerts_list2 = array_merge($focus_alerts_list, $focus_actions_list); $ListView = new ListView(); $header_text = ''; $ListView->initNewXTemplate('modules/WorkFlowAlertShells/SubPanelView.html', $current_module_strings); $ListView->xTemplateAssign('WORKFLOW_ID', $focus->id); $ListView->xTemplateAssign('RETURN_URL', '&return_module=' . $currentModule . "&return_action=DetailView&return_id={$_REQUEST['record']}"); $ListView->xTemplateAssign('EDIT_INLINE_PNG', SugarThemeRegistry::current()->getImage('edit_inline', 'align="absmiddle" border="0"', null, null, '.gif', $app_strings['LNK_EDIT'])); $ListView->xTemplateAssign('DELETE_INLINE_PNG', SugarThemeRegistry::current()->getImage('delete_inline', 'align="absmiddle" border="0"', null, null, '.gif', $app_strings['LNK_REMOVE'])); $ListView->setHeaderTitle($current_module_strings['LBL_MODULE_NAME_COMBO'] . $header_text); $ListView->setHeaderText($button); $ListView->processListView($focus_alerts_list, 'main', 'ALERT');