示例#1
0
} else {
    $xtpl->assign('DISPLAY', "display:none");
}
$leaveMessagesOnMailServerStyle = "display:none";
if ($focus->is_personal) {
    $xtpl->assign('DISABLE_GROUP', 'DISABLED');
    $xtpl->assign('EDIT_GROUP_FOLDER_STYLE', "display:none");
    $xtpl->assign('CREATE_GROUP_FOLDER_STYLE', "display:none");
    $xtpl->assign('MAILBOX_TYPE_STYLE', "display:none");
    $xtpl->assign('AUTO_IMPORT_STYLE', "display:none");
} else {
    $folder = new SugarFolder();
    $xtpl->assign('CREATE_GROUP_FOLDER_STYLE', "display:''");
    $xtpl->assign('MAILBOX_TYPE_STYLE', "display:''");
    $xtpl->assign('AUTO_IMPORT_STYLE', "display:''");
    $ret = $folder->getFoldersForSettings($current_user);
    //For existing records, do not allow
    $is_auto_import_disabled = "";
    if (!empty($focus->groupfolder_id)) {
        $is_auto_import = "checked";
        $xtpl->assign('EDIT_GROUP_FOLDER_STYLE', "visibility:inline");
        $leaveMessagesOnMailServerStyle = "display:''";
        $allow_outbound = isset($storedOptions['allow_outbound_group_usage']) && $storedOptions['allow_outbound_group_usage'] == 1 ? 'CHECKED' : '';
    } else {
        $xtpl->assign('EDIT_GROUP_FOLDER_STYLE', "visibility:hidden");
    }
    $xtpl->assign('ALLOW_OUTBOUND_USAGE', $allow_outbound);
    $xtpl->assign('IS_AUTO_IMPORT', $is_auto_import);
    if ($focus->isMailBoxTypeCreateCase()) {
        $createCaseRowStyle = "display:''";
    }