Completed
Push — develop ( 675ac9...0c0e51 )
by Adam
22:55
created
modules/Cases/metadata/additionalDetails.php 3 patches
Indentation   +21 added lines, -21 removed lines patch added patch discarded remove patch
@@ -42,31 +42,31 @@
 block discarded – undo
42 42
     return additionalDetailsaCase($fields);
43 43
 }
44 44
 function additionalDetailsaCase($fields) {
45
-	static $mod_strings;
46
-	if(empty($mod_strings)) {
47
-		global $current_language;
48
-		$mod_strings = return_module_language($current_language, 'Cases');
49
-	}
45
+    static $mod_strings;
46
+    if(empty($mod_strings)) {
47
+        global $current_language;
48
+        $mod_strings = return_module_language($current_language, 'Cases');
49
+    }
50 50
 		
51
-	$overlib_string = '';
51
+    $overlib_string = '';
52 52
 		
53
-	if(!empty($fields['DESCRIPTION'])) { 
54
-		$overlib_string .= '<b>'. $mod_strings['LBL_DESCRIPTION'] . '</b> ' . substr($fields['DESCRIPTION'], 0, 300);
55
-		if(strlen($fields['DESCRIPTION']) > 300) $overlib_string .= '...';
56
-		$overlib_string .= '<br>';
57
-	}
58
-	if(!empty($fields['RESOLUTION'])) { 
59
-		$overlib_string .= '<b>'. $mod_strings['LBL_RESOLUTION'] . '</b> ' . substr($fields['RESOLUTION'], 0, 300);
60
-		if(strlen($fields['RESOLUTION']) > 300) $overlib_string .= '...';
61
-	}		
53
+    if(!empty($fields['DESCRIPTION'])) { 
54
+        $overlib_string .= '<b>'. $mod_strings['LBL_DESCRIPTION'] . '</b> ' . substr($fields['DESCRIPTION'], 0, 300);
55
+        if(strlen($fields['DESCRIPTION']) > 300) $overlib_string .= '...';
56
+        $overlib_string .= '<br>';
57
+    }
58
+    if(!empty($fields['RESOLUTION'])) { 
59
+        $overlib_string .= '<b>'. $mod_strings['LBL_RESOLUTION'] . '</b> ' . substr($fields['RESOLUTION'], 0, 300);
60
+        if(strlen($fields['RESOLUTION']) > 300) $overlib_string .= '...';
61
+    }		
62 62
 	
63
-	return array('fieldToAddTo' => 'NAME', 
64
-				 'string' => $overlib_string, 
65
-				 'width' => '400',
66
-				 'editLink' => "index.php?action=EditView&module=Cases&return_module=Cases&record={$fields['ID']}", 
67
-				 'viewLink' => "index.php?action=DetailView&module=Cases&return_module=Cases&record={$fields['ID']}");
63
+    return array('fieldToAddTo' => 'NAME', 
64
+                    'string' => $overlib_string, 
65
+                    'width' => '400',
66
+                    'editLink' => "index.php?action=EditView&module=Cases&return_module=Cases&record={$fields['ID']}", 
67
+                    'viewLink' => "index.php?action=DetailView&module=Cases&return_module=Cases&record={$fields['ID']}");
68 68
 }
69 69
  
70
- ?>
70
+    ?>
71 71
  
72 72
  
73 73
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
2
+if (!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
3 3
 /*********************************************************************************
4 4
  * SugarCRM Community Edition is a customer relationship management program developed by
5 5
  * SugarCRM, Inc. Copyright (C) 2004-2013 SugarCRM Inc.
@@ -43,21 +43,21 @@  discard block
 block discarded – undo
43 43
 }
44 44
 function additionalDetailsaCase($fields) {
45 45
 	static $mod_strings;
46
-	if(empty($mod_strings)) {
46
+	if (empty($mod_strings)) {
47 47
 		global $current_language;
48 48
 		$mod_strings = return_module_language($current_language, 'Cases');
49 49
 	}
50 50
 		
51 51
 	$overlib_string = '';
52 52
 		
53
-	if(!empty($fields['DESCRIPTION'])) { 
54
-		$overlib_string .= '<b>'. $mod_strings['LBL_DESCRIPTION'] . '</b> ' . substr($fields['DESCRIPTION'], 0, 300);
55
-		if(strlen($fields['DESCRIPTION']) > 300) $overlib_string .= '...';
53
+	if (!empty($fields['DESCRIPTION'])) { 
54
+		$overlib_string .= '<b>'.$mod_strings['LBL_DESCRIPTION'].'</b> '.substr($fields['DESCRIPTION'], 0, 300);
55
+		if (strlen($fields['DESCRIPTION']) > 300) $overlib_string .= '...';
56 56
 		$overlib_string .= '<br>';
57 57
 	}
58
-	if(!empty($fields['RESOLUTION'])) { 
59
-		$overlib_string .= '<b>'. $mod_strings['LBL_RESOLUTION'] . '</b> ' . substr($fields['RESOLUTION'], 0, 300);
60
-		if(strlen($fields['RESOLUTION']) > 300) $overlib_string .= '...';
58
+	if (!empty($fields['RESOLUTION'])) { 
59
+		$overlib_string .= '<b>'.$mod_strings['LBL_RESOLUTION'].'</b> '.substr($fields['RESOLUTION'], 0, 300);
60
+		if (strlen($fields['RESOLUTION']) > 300) $overlib_string .= '...';
61 61
 	}		
62 62
 	
63 63
 	return array('fieldToAddTo' => 'NAME', 
Please login to merge, or discard this patch.
Braces   +9 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,5 +1,7 @@  discard block
 block discarded – undo
1 1
 <?php
2
-if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
2
+if(!defined('sugarEntry') || !sugarEntry) {
3
+    die('Not A Valid Entry Point');
4
+}
3 5
 /*********************************************************************************
4 6
  * SugarCRM Community Edition is a customer relationship management program developed by
5 7
  * SugarCRM, Inc. Copyright (C) 2004-2013 SugarCRM Inc.
@@ -52,12 +54,16 @@  discard block
 block discarded – undo
52 54
 		
53 55
 	if(!empty($fields['DESCRIPTION'])) { 
54 56
 		$overlib_string .= '<b>'. $mod_strings['LBL_DESCRIPTION'] . '</b> ' . substr($fields['DESCRIPTION'], 0, 300);
55
-		if(strlen($fields['DESCRIPTION']) > 300) $overlib_string .= '...';
57
+		if(strlen($fields['DESCRIPTION']) > 300) {
58
+		    $overlib_string .= '...';
59
+		}
56 60
 		$overlib_string .= '<br>';
57 61
 	}
58 62
 	if(!empty($fields['RESOLUTION'])) { 
59 63
 		$overlib_string .= '<b>'. $mod_strings['LBL_RESOLUTION'] . '</b> ' . substr($fields['RESOLUTION'], 0, 300);
60
-		if(strlen($fields['RESOLUTION']) > 300) $overlib_string .= '...';
64
+		if(strlen($fields['RESOLUTION']) > 300) {
65
+		    $overlib_string .= '...';
66
+		}
61 67
 	}		
62 68
 	
63 69
 	return array('fieldToAddTo' => 'NAME', 
Please login to merge, or discard this patch.
modules/Cases/metadata/editviewdefs.php 2 patches
Indentation   +66 added lines, -66 removed lines patch added patch discarded remove patch
@@ -39,143 +39,143 @@
 block discarded – undo
39 39
 
40 40
 $viewdefs ['Cases'] =
41 41
 array (
42
-  'EditView' => 
43
-  array (
42
+    'EditView' => 
43
+    array (
44 44
     'templateMeta' => 
45 45
     array (
46
-      'maxColumns' => '2',
47
-      'widths' => 
48
-      array (
46
+        'maxColumns' => '2',
47
+        'widths' => 
48
+        array (
49 49
         0 => 
50 50
         array (
51
-          'label' => '10',
52
-          'field' => '30',
51
+            'label' => '10',
52
+            'field' => '30',
53 53
         ),
54 54
         1 => 
55 55
         array (
56
-          'label' => '10',
57
-          'field' => '30',
56
+            'label' => '10',
57
+            'field' => '30',
58 58
         ),
59
-      ),
60
-      'includes' => 
61
-      array (
62
-          0 =>
63
-              array (
64
-                  'file' => 'include/javascript/bindWithDelay.js',
65
-              ),
59
+        ),
60
+        'includes' => 
61
+        array (
62
+            0 =>
63
+                array (
64
+                    'file' => 'include/javascript/bindWithDelay.js',
65
+                ),
66 66
         1 =>
67 67
         array (
68
-          'file' => 'modules/AOK_KnowledgeBase/AOK_KnowledgeBase_SuggestionBox.js',
68
+            'file' => 'modules/AOK_KnowledgeBase/AOK_KnowledgeBase_SuggestionBox.js',
69
+        ),
70
+            2 =>
71
+                array (
72
+                    'file' => 'include/javascript/qtip/jquery.qtip.min.js',
73
+                ),
69 74
         ),
70
-          2 =>
71
-              array (
72
-                  'file' => 'include/javascript/qtip/jquery.qtip.min.js',
73
-              ),
74
-      ),
75
-      'useTabs' => false,
76
-      'tabDefs' => 
77
-      array (
75
+        'useTabs' => false,
76
+        'tabDefs' => 
77
+        array (
78 78
         'LBL_CASE_INFORMATION' => 
79 79
         array (
80
-          'newTab' => false,
81
-          'panelDefault' => 'expanded',
80
+            'newTab' => false,
81
+            'panelDefault' => 'expanded',
82 82
         ),
83
-      ),
84
-      'form' => 
85
-      array (
83
+        ),
84
+        'form' => 
85
+        array (
86 86
         'enctype' => 'multipart/form-data',
87
-      ),
87
+        ),
88 88
     ),
89 89
     'panels' => 
90 90
     array (
91
-      'lbl_case_information' => 
92
-      array (
91
+        'lbl_case_information' => 
92
+        array (
93 93
         0 => 
94 94
         array (
95
-          0 => 
96
-          array (
95
+            0 => 
96
+            array (
97 97
             'name' => 'case_number',
98 98
             'type' => 'readonly',
99
-          ),
100
-          1 => 'priority',
99
+            ),
100
+            1 => 'priority',
101 101
         ),
102 102
         1 => 
103 103
         array (
104
-          0 => 
105
-          array (
104
+            0 => 
105
+            array (
106 106
             'name' => 'state',
107 107
             'comment' => 'The state of the case (i.e. open/closed)',
108 108
             'label' => 'LBL_STATE',
109
-          ),
110
-          1 => 'status',
109
+            ),
110
+            1 => 'status',
111 111
         ),
112 112
         2 => 
113 113
         array (
114
-          0 => 'type',
115
-          1 => 'account_name',
114
+            0 => 'type',
115
+            1 => 'account_name',
116 116
         ),
117 117
         3 => 
118 118
         array (
119
-          0 => 
120
-          array (
119
+            0 => 
120
+            array (
121 121
             'name' => 'name',
122 122
             'displayParams' => 
123 123
             array (
124
-              //'size' => 75,
124
+                //'size' => 75,
125
+            ),
125 126
             ),
126
-          ),
127 127
             1 =>
128 128
                 array (
129 129
                     'name' => 'suggestion_box',
130
-                  //'studio' => 'visible',
130
+                    //'studio' => 'visible',
131 131
                     'label' => 'LBL_SUGGESTION_BOX'
132 132
                 ),
133 133
         ),
134 134
         4 =>
135 135
         array (
136
-          0 => 
137
-          array (
136
+            0 => 
137
+            array (
138 138
             'name' => 'description',
139 139
             'nl2br' => true,
140
-          ),
140
+            ),
141 141
         ),
142 142
         5 =>
143 143
         array (
144
-          0 => 
145
-          array (
144
+            0 => 
145
+            array (
146 146
             'name' => 'resolution',
147 147
             'nl2br' => true,
148
-          ),
148
+            ),
149 149
         ),
150 150
         6 =>
151 151
         array (
152
-          0 => 
153
-          array (
152
+            0 => 
153
+            array (
154 154
             'name' => 'update_text',
155 155
             'studio' => 'visible',
156 156
             'label' => 'LBL_UPDATE_TEXT',
157
-          ),
158
-          1 => 
159
-          array (
157
+            ),
158
+            1 => 
159
+            array (
160 160
             'name' => 'internal',
161 161
             'studio' => 'visible',
162 162
             'label' => 'LBL_INTERNAL',
163
-          ),
163
+            ),
164 164
         ),
165 165
         7 =>
166 166
         array (
167
-          0 => 
168
-          array (
167
+            0 => 
168
+            array (
169 169
             'name' => 'case_update_form',
170 170
             'studio' => 'visible',
171
-          ),
171
+            ),
172 172
         ),
173 173
         8 =>
174 174
         array (
175
-          0 => 'assigned_user_name',
175
+            0 => 'assigned_user_name',
176 176
         ),
177
-      ),
177
+        ),
178
+    ),
178 179
     ),
179
-  ),
180 180
 );
181 181
 ?>
Please login to merge, or discard this patch.
Spacing   +34 added lines, -34 removed lines patch added patch discarded remove patch
@@ -38,71 +38,71 @@  discard block
 block discarded – undo
38 38
  ********************************************************************************/
39 39
 
40 40
 $viewdefs ['Cases'] =
41
-array (
41
+array(
42 42
   'EditView' => 
43
-  array (
43
+  array(
44 44
     'templateMeta' => 
45
-    array (
45
+    array(
46 46
       'maxColumns' => '2',
47 47
       'widths' => 
48
-      array (
48
+      array(
49 49
         0 => 
50
-        array (
50
+        array(
51 51
           'label' => '10',
52 52
           'field' => '30',
53 53
         ),
54 54
         1 => 
55
-        array (
55
+        array(
56 56
           'label' => '10',
57 57
           'field' => '30',
58 58
         ),
59 59
       ),
60 60
       'includes' => 
61
-      array (
61
+      array(
62 62
           0 =>
63
-              array (
63
+              array(
64 64
                   'file' => 'include/javascript/bindWithDelay.js',
65 65
               ),
66 66
         1 =>
67
-        array (
67
+        array(
68 68
           'file' => 'modules/AOK_KnowledgeBase/AOK_KnowledgeBase_SuggestionBox.js',
69 69
         ),
70 70
           2 =>
71
-              array (
71
+              array(
72 72
                   'file' => 'include/javascript/qtip/jquery.qtip.min.js',
73 73
               ),
74 74
       ),
75 75
       'useTabs' => false,
76 76
       'tabDefs' => 
77
-      array (
77
+      array(
78 78
         'LBL_CASE_INFORMATION' => 
79
-        array (
79
+        array(
80 80
           'newTab' => false,
81 81
           'panelDefault' => 'expanded',
82 82
         ),
83 83
       ),
84 84
       'form' => 
85
-      array (
85
+      array(
86 86
         'enctype' => 'multipart/form-data',
87 87
       ),
88 88
     ),
89 89
     'panels' => 
90
-    array (
90
+    array(
91 91
       'lbl_case_information' => 
92
-      array (
92
+      array(
93 93
         0 => 
94
-        array (
94
+        array(
95 95
           0 => 
96
-          array (
96
+          array(
97 97
             'name' => 'case_number',
98 98
             'type' => 'readonly',
99 99
           ),
100 100
           1 => 'priority',
101 101
         ),
102 102
         1 => 
103
-        array (
103
+        array(
104 104
           0 => 
105
-          array (
105
+          array(
106 106
             'name' => 'state',
107 107
             'comment' => 'The state of the case (i.e. open/closed)',
108 108
             'label' => 'LBL_STATE',
@@ -110,68 +110,68 @@  discard block
 block discarded – undo
110 110
           1 => 'status',
111 111
         ),
112 112
         2 => 
113
-        array (
113
+        array(
114 114
           0 => 'type',
115 115
           1 => 'account_name',
116 116
         ),
117 117
         3 => 
118
-        array (
118
+        array(
119 119
           0 => 
120
-          array (
120
+          array(
121 121
             'name' => 'name',
122 122
             'displayParams' => 
123
-            array (
123
+            array(
124 124
               //'size' => 75,
125 125
             ),
126 126
           ),
127 127
             1 =>
128
-                array (
128
+                array(
129 129
                     'name' => 'suggestion_box',
130 130
                   //'studio' => 'visible',
131 131
                     'label' => 'LBL_SUGGESTION_BOX'
132 132
                 ),
133 133
         ),
134 134
         4 =>
135
-        array (
135
+        array(
136 136
           0 => 
137
-          array (
137
+          array(
138 138
             'name' => 'description',
139 139
             'nl2br' => true,
140 140
           ),
141 141
         ),
142 142
         5 =>
143
-        array (
143
+        array(
144 144
           0 => 
145
-          array (
145
+          array(
146 146
             'name' => 'resolution',
147 147
             'nl2br' => true,
148 148
           ),
149 149
         ),
150 150
         6 =>
151
-        array (
151
+        array(
152 152
           0 => 
153
-          array (
153
+          array(
154 154
             'name' => 'update_text',
155 155
             'studio' => 'visible',
156 156
             'label' => 'LBL_UPDATE_TEXT',
157 157
           ),
158 158
           1 => 
159
-          array (
159
+          array(
160 160
             'name' => 'internal',
161 161
             'studio' => 'visible',
162 162
             'label' => 'LBL_INTERNAL',
163 163
           ),
164 164
         ),
165 165
         7 =>
166
-        array (
166
+        array(
167 167
           0 => 
168
-          array (
168
+          array(
169 169
             'name' => 'case_update_form',
170 170
             'studio' => 'visible',
171 171
           ),
172 172
         ),
173 173
         8 =>
174
-        array (
174
+        array(
175 175
           0 => 'assigned_user_name',
176 176
         ),
177 177
       ),
Please login to merge, or discard this patch.
modules/Cases/metadata/SearchFields.php 3 patches
Indentation   +54 added lines, -54 removed lines patch added patch discarded remove patch
@@ -40,110 +40,110 @@
 block discarded – undo
40 40
 global $current_user;
41 41
 $module_name = "Cases";
42 42
 $searchFields['Cases'] = array (
43
-  'name' => 
44
-  array (
43
+    'name' => 
44
+    array (
45 45
     'query_type' => 'default',
46
-  ),
47
-  'account_name' => 
48
-  array (
46
+    ),
47
+    'account_name' => 
48
+    array (
49 49
     'query_type' => 'default',
50 50
     'db_field' => 
51 51
     array (
52
-      0 => 'accounts.name',
52
+        0 => 'accounts.name',
53
+    ),
53 54
     ),
54
-  ),
55
-  'status' => 
56
-  array (
55
+    'status' => 
56
+    array (
57 57
     'query_type' => 'default',
58 58
     'options' => 'case_status_dom',
59 59
     'template_var' => 'STATUS_OPTIONS',
60
-  ),
61
-  'priority' => 
62
-  array (
60
+    ),
61
+    'priority' => 
62
+    array (
63 63
     'query_type' => 'default',
64 64
     'options' => 'case_priority_dom',
65 65
     'template_var' => 'PRIORITY_OPTIONS',
66 66
     'options_add_blank' => true,
67
-  ),
68
-  'case_number' => 
69
-  array (
67
+    ),
68
+    'case_number' => 
69
+    array (
70 70
     'query_type' => 'default',
71 71
     'operator' => 'in',
72
-  ),
73
-  'current_user_only' => 
74
-  array (
72
+    ),
73
+    'current_user_only' => 
74
+    array (
75 75
     'query_type' => 'default',
76 76
     'db_field' => 
77 77
     array (
78
-      0 => 'assigned_user_id',
78
+        0 => 'assigned_user_id',
79 79
     ),
80 80
     'my_items' => true,
81 81
     'vname' => 'LBL_CURRENT_USER_FILTER',
82 82
     'type' => 'bool',
83
-  ),
84
-  'assigned_user_id' => 
85
-  array (
83
+    ),
84
+    'assigned_user_id' => 
85
+    array (
86 86
     'query_type' => 'default',
87
-  ),
88
-  'open_only' => 
89
-  array (
87
+    ),
88
+    'open_only' => 
89
+    array (
90 90
     'query_type' => 'default',
91 91
     'db_field' => 
92 92
     array (
93
-      0 => 'status',
93
+        0 => 'status',
94 94
     ),
95 95
     'operator' => 'not in',
96 96
     'closed_values' => 
97 97
     array (
98
-      0 => 'Closed',
99
-      1 => 'Rejected',
100
-      2 => 'Duplicate',
101
-      3 => 'Closed_Closed',
102
-      4 => 'Closed_Rejected',
103
-      5 => 'Closed_Duplicate',
98
+        0 => 'Closed',
99
+        1 => 'Rejected',
100
+        2 => 'Duplicate',
101
+        3 => 'Closed_Closed',
102
+        4 => 'Closed_Rejected',
103
+        5 => 'Closed_Duplicate',
104 104
     ),
105 105
     'type' => 'bool',
106
-  ),
107
-  'range_date_entered' => 
108
-  array (
106
+    ),
107
+    'range_date_entered' => 
108
+    array (
109 109
     'query_type' => 'default',
110 110
     'enable_range_search' => true,
111 111
     'is_date_field' => true,
112
-  ),
113
-  'start_range_date_entered' => 
114
-  array (
112
+    ),
113
+    'start_range_date_entered' => 
114
+    array (
115 115
     'query_type' => 'default',
116 116
     'enable_range_search' => true,
117 117
     'is_date_field' => true,
118
-  ),
119
-  'end_range_date_entered' => 
120
-  array (
118
+    ),
119
+    'end_range_date_entered' => 
120
+    array (
121 121
     'query_type' => 'default',
122 122
     'enable_range_search' => true,
123 123
     'is_date_field' => true,
124
-  ),
125
-  'range_date_modified' => 
126
-  array (
124
+    ),
125
+    'range_date_modified' => 
126
+    array (
127 127
     'query_type' => 'default',
128 128
     'enable_range_search' => true,
129 129
     'is_date_field' => true,
130
-  ),
131
-  'start_range_date_modified' => 
132
-  array (
130
+    ),
131
+    'start_range_date_modified' => 
132
+    array (
133 133
     'query_type' => 'default',
134 134
     'enable_range_search' => true,
135 135
     'is_date_field' => true,
136
-  ),
137
-  'end_range_date_modified' => 
138
-  array (
136
+    ),
137
+    'end_range_date_modified' => 
138
+    array (
139 139
     'query_type' => 'default',
140 140
     'enable_range_search' => true,
141 141
     'is_date_field' => true,
142
-  ),
143
-  'state' => 
144
-  array (
142
+    ),
143
+    'state' => 
144
+    array (
145 145
     'query_type' => 'default',
146
-  ),
146
+    ),
147 147
     'favorites_only' => array(
148 148
         'query_type'=>'format',
149 149
         'operator' => 'subquery',
Please login to merge, or discard this patch.
Spacing   +22 added lines, -22 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
2
+if (!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
3 3
 /*********************************************************************************
4 4
  * SugarCRM Community Edition is a customer relationship management program developed by
5 5
  * SugarCRM, Inc. Copyright (C) 2004-2013 SugarCRM Inc.
@@ -39,42 +39,42 @@  discard block
 block discarded – undo
39 39
  ********************************************************************************/
40 40
 global $current_user;
41 41
 $module_name = "Cases";
42
-$searchFields['Cases'] = array (
42
+$searchFields['Cases'] = array(
43 43
   'name' => 
44
-  array (
44
+  array(
45 45
     'query_type' => 'default',
46 46
   ),
47 47
   'account_name' => 
48
-  array (
48
+  array(
49 49
     'query_type' => 'default',
50 50
     'db_field' => 
51
-    array (
51
+    array(
52 52
       0 => 'accounts.name',
53 53
     ),
54 54
   ),
55 55
   'status' => 
56
-  array (
56
+  array(
57 57
     'query_type' => 'default',
58 58
     'options' => 'case_status_dom',
59 59
     'template_var' => 'STATUS_OPTIONS',
60 60
   ),
61 61
   'priority' => 
62
-  array (
62
+  array(
63 63
     'query_type' => 'default',
64 64
     'options' => 'case_priority_dom',
65 65
     'template_var' => 'PRIORITY_OPTIONS',
66 66
     'options_add_blank' => true,
67 67
   ),
68 68
   'case_number' => 
69
-  array (
69
+  array(
70 70
     'query_type' => 'default',
71 71
     'operator' => 'in',
72 72
   ),
73 73
   'current_user_only' => 
74
-  array (
74
+  array(
75 75
     'query_type' => 'default',
76 76
     'db_field' => 
77
-    array (
77
+    array(
78 78
       0 => 'assigned_user_id',
79 79
     ),
80 80
     'my_items' => true,
@@ -82,19 +82,19 @@  discard block
 block discarded – undo
82 82
     'type' => 'bool',
83 83
   ),
84 84
   'assigned_user_id' => 
85
-  array (
85
+  array(
86 86
     'query_type' => 'default',
87 87
   ),
88 88
   'open_only' => 
89
-  array (
89
+  array(
90 90
     'query_type' => 'default',
91 91
     'db_field' => 
92
-    array (
92
+    array(
93 93
       0 => 'status',
94 94
     ),
95 95
     'operator' => 'not in',
96 96
     'closed_values' => 
97
-    array (
97
+    array(
98 98
       0 => 'Closed',
99 99
       1 => 'Rejected',
100 100
       2 => 'Duplicate',
@@ -105,43 +105,43 @@  discard block
 block discarded – undo
105 105
     'type' => 'bool',
106 106
   ),
107 107
   'range_date_entered' => 
108
-  array (
108
+  array(
109 109
     'query_type' => 'default',
110 110
     'enable_range_search' => true,
111 111
     'is_date_field' => true,
112 112
   ),
113 113
   'start_range_date_entered' => 
114
-  array (
114
+  array(
115 115
     'query_type' => 'default',
116 116
     'enable_range_search' => true,
117 117
     'is_date_field' => true,
118 118
   ),
119 119
   'end_range_date_entered' => 
120
-  array (
120
+  array(
121 121
     'query_type' => 'default',
122 122
     'enable_range_search' => true,
123 123
     'is_date_field' => true,
124 124
   ),
125 125
   'range_date_modified' => 
126
-  array (
126
+  array(
127 127
     'query_type' => 'default',
128 128
     'enable_range_search' => true,
129 129
     'is_date_field' => true,
130 130
   ),
131 131
   'start_range_date_modified' => 
132
-  array (
132
+  array(
133 133
     'query_type' => 'default',
134 134
     'enable_range_search' => true,
135 135
     'is_date_field' => true,
136 136
   ),
137 137
   'end_range_date_modified' => 
138
-  array (
138
+  array(
139 139
     'query_type' => 'default',
140 140
     'enable_range_search' => true,
141 141
     'is_date_field' => true,
142 142
   ),
143 143
   'state' => 
144
-  array (
144
+  array(
145 145
     'query_type' => 'default',
146 146
   ),
147 147
     'favorites_only' => array(
@@ -150,6 +150,6 @@  discard block
 block discarded – undo
150 150
         'subquery' => 'SELECT favorites.parent_id FROM favorites
151 151
 			                    WHERE favorites.deleted = 0
152 152
 			                        and favorites.parent_type = "'.$module_name.'"
153
-			                        and favorites.assigned_user_id = "' .$current_user->id . '") OR NOT ({0}',
153
+			                        and favorites.assigned_user_id = "' .$current_user->id.'") OR NOT ({0}',
154 154
         'db_field'=>array('id')),
155 155
 );
156 156
\ No newline at end of file
Please login to merge, or discard this patch.
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,7 @@
 block discarded – undo
1 1
 <?php
2
-if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
2
+if(!defined('sugarEntry') || !sugarEntry) {
3
+    die('Not A Valid Entry Point');
4
+}
3 5
 /*********************************************************************************
4 6
  * SugarCRM Community Edition is a customer relationship management program developed by
5 7
  * SugarCRM, Inc. Copyright (C) 2004-2013 SugarCRM Inc.
Please login to merge, or discard this patch.
modules/Cases/metadata/detailviewdefs.php 2 patches
Indentation   +59 added lines, -59 removed lines patch added patch discarded remove patch
@@ -39,129 +39,129 @@
 block discarded – undo
39 39
 
40 40
 $viewdefs ['Cases'] = 
41 41
 array (
42
-  'DetailView' => 
43
-  array (
42
+    'DetailView' => 
43
+    array (
44 44
     'templateMeta' => 
45 45
     array (
46
-      'form' => 
47
-      array (
46
+        'form' => 
47
+        array (
48 48
         'buttons' => 
49 49
         array (
50
-          0 => 'EDIT',
51
-          1 => 'DUPLICATE',
52
-          2 => 'DELETE',
53
-          3 => 'FIND_DUPLICATES',
50
+            0 => 'EDIT',
51
+            1 => 'DUPLICATE',
52
+            2 => 'DELETE',
53
+            3 => 'FIND_DUPLICATES',
54 54
         ),
55
-      ),
56
-      'maxColumns' => '2',
57
-      'widths' => 
58
-      array (
55
+        ),
56
+        'maxColumns' => '2',
57
+        'widths' => 
58
+        array (
59 59
         0 => 
60 60
         array (
61
-          'label' => '10',
62
-          'field' => '30',
61
+            'label' => '10',
62
+            'field' => '30',
63 63
         ),
64 64
         1 => 
65 65
         array (
66
-          'label' => '10',
67
-          'field' => '30',
66
+            'label' => '10',
67
+            'field' => '30',
68 68
         ),
69
-      ),
70
-      'useTabs' => true,
71
-      'tabDefs' => 
72
-      array (
69
+        ),
70
+        'useTabs' => true,
71
+        'tabDefs' => 
72
+        array (
73 73
         'LBL_CASE_INFORMATION' => 
74 74
         array (
75
-          'newTab' => true,
76
-          'panelDefault' => 'expanded',
75
+            'newTab' => true,
76
+            'panelDefault' => 'expanded',
77 77
         ),
78 78
         'LBL_AOP_CASE_UPDATES' => 
79 79
         array (
80
-          'newTab' => false,
81
-          'panelDefault' => 'expanded',
80
+            'newTab' => false,
81
+            'panelDefault' => 'expanded',
82
+        ),
82 83
         ),
83
-      ),
84 84
     ),
85 85
     'panels' => 
86 86
     array (
87
-      'lbl_case_information' => 
88
-      array (
87
+        'lbl_case_information' => 
88
+        array (
89 89
         0 => 
90 90
         array (
91
-          0 => 
92
-          array (
91
+            0 => 
92
+            array (
93 93
             'name' => 'case_number',
94 94
             'label' => 'LBL_CASE_NUMBER',
95
-          ),
96
-          1 => 'priority',
95
+            ),
96
+            1 => 'priority',
97 97
         ),
98 98
         1 => 
99 99
         array (
100
-          0 => 
101
-          array (
100
+            0 => 
101
+            array (
102 102
             'name' => 'state',
103 103
             'comment' => 'The state of the case (i.e. open/closed)',
104 104
             'label' => 'LBL_STATE',
105
-          ),
106
-          1 => 'status',
105
+            ),
106
+            1 => 'status',
107 107
         ),
108 108
         2 => 
109 109
         array (
110
-          0 => 'type',
111
-          1 => 'account_name',
110
+            0 => 'type',
111
+            1 => 'account_name',
112 112
         ),
113 113
         3 => 
114 114
         array (
115
-          0 => 
116
-          array (
115
+            0 => 
116
+            array (
117 117
             'name' => 'name',
118 118
             'label' => 'LBL_SUBJECT',
119
-          ),
119
+            ),
120 120
         ),
121 121
         4 => 
122 122
         array (
123
-          0 => 'description',
123
+            0 => 'description',
124 124
         ),
125 125
         5 => 
126 126
         array (
127
-          0 => 'resolution',
127
+            0 => 'resolution',
128 128
         ),
129 129
         6 => 
130 130
         array (
131
-          0 => 
132
-          array (
131
+            0 => 
132
+            array (
133 133
             'name' => 'assigned_user_name',
134 134
             'label' => 'LBL_ASSIGNED_TO',
135
-          ),
135
+            ),
136 136
         ),
137 137
         7 => 
138 138
         array (
139
-          0 => 
140
-          array (
139
+            0 => 
140
+            array (
141 141
             'name' => 'date_entered',
142 142
             'customCode' => '{$fields.date_entered.value} {$APP.LBL_BY} {$fields.created_by_name.value}',
143
-          ),
144
-          1 => 
145
-          array (
143
+            ),
144
+            1 => 
145
+            array (
146 146
             'name' => 'date_modified',
147 147
             'label' => 'LBL_DATE_MODIFIED',
148 148
             'customCode' => '{$fields.date_modified.value} {$APP.LBL_BY} {$fields.modified_by_name.value}',
149
-          ),
149
+            ),
150
+        ),
150 151
         ),
151
-      ),
152
-      'LBL_AOP_CASE_UPDATES' => 
153
-      array (
152
+        'LBL_AOP_CASE_UPDATES' => 
153
+        array (
154 154
         0 => 
155 155
         array (
156
-          0 => 
157
-          array (
156
+            0 => 
157
+            array (
158 158
             'name' => 'aop_case_updates_threaded',
159 159
             'studio' => 'visible',
160 160
             'label' => 'LBL_AOP_CASE_UPDATES_THREADED',
161
-          ),
161
+            ),
162
+        ),
162 163
         ),
163
-      ),
164 164
     ),
165
-  ),
165
+    ),
166 166
 );
167 167
 ?>
Please login to merge, or discard this patch.
Spacing   +30 added lines, -30 removed lines patch added patch discarded remove patch
@@ -38,15 +38,15 @@  discard block
 block discarded – undo
38 38
  ********************************************************************************/
39 39
 
40 40
 $viewdefs ['Cases'] = 
41
-array (
41
+array(
42 42
   'DetailView' => 
43
-  array (
43
+  array(
44 44
     'templateMeta' => 
45
-    array (
45
+    array(
46 46
       'form' => 
47
-      array (
47
+      array(
48 48
         'buttons' => 
49
-        array (
49
+        array(
50 50
           0 => 'EDIT',
51 51
           1 => 'DUPLICATE',
52 52
           2 => 'DELETE',
@@ -55,50 +55,50 @@  discard block
 block discarded – undo
55 55
       ),
56 56
       'maxColumns' => '2',
57 57
       'widths' => 
58
-      array (
58
+      array(
59 59
         0 => 
60
-        array (
60
+        array(
61 61
           'label' => '10',
62 62
           'field' => '30',
63 63
         ),
64 64
         1 => 
65
-        array (
65
+        array(
66 66
           'label' => '10',
67 67
           'field' => '30',
68 68
         ),
69 69
       ),
70 70
       'useTabs' => true,
71 71
       'tabDefs' => 
72
-      array (
72
+      array(
73 73
         'LBL_CASE_INFORMATION' => 
74
-        array (
74
+        array(
75 75
           'newTab' => true,
76 76
           'panelDefault' => 'expanded',
77 77
         ),
78 78
         'LBL_AOP_CASE_UPDATES' => 
79
-        array (
79
+        array(
80 80
           'newTab' => false,
81 81
           'panelDefault' => 'expanded',
82 82
         ),
83 83
       ),
84 84
     ),
85 85
     'panels' => 
86
-    array (
86
+    array(
87 87
       'lbl_case_information' => 
88
-      array (
88
+      array(
89 89
         0 => 
90
-        array (
90
+        array(
91 91
           0 => 
92
-          array (
92
+          array(
93 93
             'name' => 'case_number',
94 94
             'label' => 'LBL_CASE_NUMBER',
95 95
           ),
96 96
           1 => 'priority',
97 97
         ),
98 98
         1 => 
99
-        array (
99
+        array(
100 100
           0 => 
101
-          array (
101
+          array(
102 102
             'name' => 'state',
103 103
             'comment' => 'The state of the case (i.e. open/closed)',
104 104
             'label' => 'LBL_STATE',
@@ -106,43 +106,43 @@  discard block
 block discarded – undo
106 106
           1 => 'status',
107 107
         ),
108 108
         2 => 
109
-        array (
109
+        array(
110 110
           0 => 'type',
111 111
           1 => 'account_name',
112 112
         ),
113 113
         3 => 
114
-        array (
114
+        array(
115 115
           0 => 
116
-          array (
116
+          array(
117 117
             'name' => 'name',
118 118
             'label' => 'LBL_SUBJECT',
119 119
           ),
120 120
         ),
121 121
         4 => 
122
-        array (
122
+        array(
123 123
           0 => 'description',
124 124
         ),
125 125
         5 => 
126
-        array (
126
+        array(
127 127
           0 => 'resolution',
128 128
         ),
129 129
         6 => 
130
-        array (
130
+        array(
131 131
           0 => 
132
-          array (
132
+          array(
133 133
             'name' => 'assigned_user_name',
134 134
             'label' => 'LBL_ASSIGNED_TO',
135 135
           ),
136 136
         ),
137 137
         7 => 
138
-        array (
138
+        array(
139 139
           0 => 
140
-          array (
140
+          array(
141 141
             'name' => 'date_entered',
142 142
             'customCode' => '{$fields.date_entered.value} {$APP.LBL_BY} {$fields.created_by_name.value}',
143 143
           ),
144 144
           1 => 
145
-          array (
145
+          array(
146 146
             'name' => 'date_modified',
147 147
             'label' => 'LBL_DATE_MODIFIED',
148 148
             'customCode' => '{$fields.date_modified.value} {$APP.LBL_BY} {$fields.modified_by_name.value}',
@@ -150,11 +150,11 @@  discard block
 block discarded – undo
150 150
         ),
151 151
       ),
152 152
       'LBL_AOP_CASE_UPDATES' => 
153
-      array (
153
+      array(
154 154
         0 => 
155
-        array (
155
+        array(
156 156
           0 => 
157
-          array (
157
+          array(
158 158
             'name' => 'aop_case_updates_threaded',
159 159
             'studio' => 'visible',
160 160
             'label' => 'LBL_AOP_CASE_UPDATES_THREADED',
Please login to merge, or discard this patch.
modules/Cases/metadata/quickcreatedefs.php 3 patches
Indentation   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -45,32 +45,32 @@
 block discarded – undo
45 45
                                         array('label' => '10', 'field' => '30'), 
46 46
                                         array('label' => '10', 'field' => '30')
47 47
                                         ),
48
-                       ),
48
+                        ),
49 49
 'panels' =>
50 50
 
51 51
 array (
52 52
   
53
-  array (
53
+    array (
54 54
     array ('name'=>'name', 'displayParams'=>array('size'=>65, 'required'=>true)),
55 55
     'priority'
56
-  ),
56
+    ),
57 57
   
58
-  array (
58
+    array (
59 59
     'status',
60 60
     array('name'=>'account_name'),
61
-  ),
61
+    ),
62 62
   
63
-  array (
63
+    array (
64 64
     'assigned_user_name',
65
-  ),
65
+    ),
66 66
   
67
-  array (
68 67
     array (
69
-      'name' => 'description',
70
-      'displayParams' => array ('rows' => '4','cols' => '60'),
71
-      'nl2br' => true,
68
+    array (
69
+        'name' => 'description',
70
+        'displayParams' => array ('rows' => '4','cols' => '60'),
71
+        'nl2br' => true,
72
+    ),
72 73
     ),
73
-  ),
74 74
 
75 75
 ),
76 76
 
Please login to merge, or discard this patch.
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
2
+if (!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
3 3
 /*********************************************************************************
4 4
  * SugarCRM Community Edition is a customer relationship management program developed by
5 5
  * SugarCRM, Inc. Copyright (C) 2004-2013 SugarCRM Inc.
@@ -48,26 +48,26 @@  discard block
 block discarded – undo
48 48
                        ),
49 49
 'panels' =>
50 50
 
51
-array (
51
+array(
52 52
   
53
-  array (
54
-    array ('name'=>'name', 'displayParams'=>array('size'=>65, 'required'=>true)),
53
+  array(
54
+    array('name'=>'name', 'displayParams'=>array('size'=>65, 'required'=>true)),
55 55
     'priority'
56 56
   ),
57 57
   
58
-  array (
58
+  array(
59 59
     'status',
60 60
     array('name'=>'account_name'),
61 61
   ),
62 62
   
63
-  array (
63
+  array(
64 64
     'assigned_user_name',
65 65
   ),
66 66
   
67
-  array (
68
-    array (
67
+  array(
68
+    array(
69 69
       'name' => 'description',
70
-      'displayParams' => array ('rows' => '4','cols' => '60'),
70
+      'displayParams' => array('rows' => '4', 'cols' => '60'),
71 71
       'nl2br' => true,
72 72
     ),
73 73
   ),
Please login to merge, or discard this patch.
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,7 @@
 block discarded – undo
1 1
 <?php
2
-if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
2
+if(!defined('sugarEntry') || !sugarEntry) {
3
+    die('Not A Valid Entry Point');
4
+}
3 5
 /*********************************************************************************
4 6
  * SugarCRM Community Edition is a customer relationship management program developed by
5 7
  * SugarCRM, Inc. Copyright (C) 2004-2013 SugarCRM Inc.
Please login to merge, or discard this patch.
modules/Cases/metadata/listviewdefs.php 3 patches
Indentation   +27 added lines, -27 removed lines patch added patch discarded remove patch
@@ -43,41 +43,41 @@
 block discarded – undo
43 43
 
44 44
 
45 45
 $listViewDefs['Cases'] = array(
46
-	'CASE_NUMBER' => array(
47
-		'width' => '5', 
48
-		'label' => 'LBL_LIST_NUMBER',
46
+    'CASE_NUMBER' => array(
47
+        'width' => '5', 
48
+        'label' => 'LBL_LIST_NUMBER',
49 49
         'default' => true), 
50
-	'NAME' => array(
51
-		'width' => '25', 
52
-		'label' => 'LBL_LIST_SUBJECT', 
53
-		'link' => true,
50
+    'NAME' => array(
51
+        'width' => '25', 
52
+        'label' => 'LBL_LIST_SUBJECT', 
53
+        'link' => true,
54 54
         'default' => true), 
55
-	'ACCOUNT_NAME' => array(
56
-		'width' => '20', 
57
-		'label' => 'LBL_LIST_ACCOUNT_NAME', 
58
-		'module' => 'Accounts',
59
-		'id' => 'ACCOUNT_ID',
60
-		'link' => true,
55
+    'ACCOUNT_NAME' => array(
56
+        'width' => '20', 
57
+        'label' => 'LBL_LIST_ACCOUNT_NAME', 
58
+        'module' => 'Accounts',
59
+        'id' => 'ACCOUNT_ID',
60
+        'link' => true,
61 61
         'default' => true,
62 62
         'ACLTag' => 'ACCOUNT',
63 63
         'related_fields' => array('account_id')),
64
-	'PRIORITY' => array(
65
-		'width' => '10', 
66
-		'label' => 'LBL_LIST_PRIORITY',
64
+    'PRIORITY' => array(
65
+        'width' => '10', 
66
+        'label' => 'LBL_LIST_PRIORITY',
67 67
         'default' => true),  
68
-	'STATUS' => array(
69
-		'width' => '10', 
70
-		'label' => 'LBL_LIST_STATUS',
68
+    'STATUS' => array(
69
+        'width' => '10', 
70
+        'label' => 'LBL_LIST_STATUS',
71 71
         'default' => true),
72
-	'ASSIGNED_USER_NAME' => array(
73
-		'width' => '10', 
74
-		'label' => 'LBL_ASSIGNED_TO_NAME',
75
-		'module' => 'Employees',
72
+    'ASSIGNED_USER_NAME' => array(
73
+        'width' => '10', 
74
+        'label' => 'LBL_ASSIGNED_TO_NAME',
75
+        'module' => 'Employees',
76 76
         'id' => 'ASSIGNED_USER_ID',
77 77
         'default' => true),
78
-	'DATE_ENTERED' => array (
79
-	    'width' => '10',
80
-	    'label' => 'LBL_DATE_ENTERED',
81
-	    'default' => true),
78
+    'DATE_ENTERED' => array (
79
+        'width' => '10',
80
+        'label' => 'LBL_DATE_ENTERED',
81
+        'default' => true),
82 82
 );
83 83
 ?>
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
2
+if (!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
3 3
 /*********************************************************************************
4 4
  * SugarCRM Community Edition is a customer relationship management program developed by
5 5
  * SugarCRM, Inc. Copyright (C) 2004-2013 SugarCRM Inc.
@@ -101,7 +101,7 @@  discard block
 block discarded – undo
101 101
         'label' => 'LBL_LIST_STATUS', 
102 102
         'link' => false,
103 103
         'default' => false),
104
-	'DATE_ENTERED' => array (
104
+	'DATE_ENTERED' => array(
105 105
 	    'width' => '10',
106 106
 	    'label' => 'LBL_DATE_ENTERED',
107 107
 	    'default' => true),            
Please login to merge, or discard this patch.
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,7 @@
 block discarded – undo
1 1
 <?php
2
-if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
2
+if(!defined('sugarEntry') || !sugarEntry) {
3
+    die('Not A Valid Entry Point');
4
+}
3 5
 /*********************************************************************************
4 6
  * SugarCRM Community Edition is a customer relationship management program developed by
5 7
  * SugarCRM, Inc. Copyright (C) 2004-2013 SugarCRM Inc.
Please login to merge, or discard this patch.
modules/Opportunities/field_arrays.php 3 patches
Indentation   +20 added lines, -20 removed lines patch added patch discarded remove patch
@@ -46,27 +46,27 @@
 block discarded – undo
46 46
  * Contributor(s): ______________________________________..
47 47
  ********************************************************************************/
48 48
 $fields_array['Opportunity'] = array ('column_fields' => Array("id"
49
-		, "name"
50
-		, "opportunity_type"
51
-		, "lead_source"
52
-		, "amount"
53
-		, "currency_id"
54
-		, "amount_usdollar"
55
-		, "date_entered"
56
-		, "date_modified"
57
-		, "modified_user_id"
58
-		, "assigned_user_id"
59
-		, "created_by"
60
-		, "date_closed"
61
-		, "next_step"
62
-		, "sales_stage"
63
-		, "probability"
64
-		, "description"
65
-		,"campaign_id"
66
-		),
49
+        , "name"
50
+        , "opportunity_type"
51
+        , "lead_source"
52
+        , "amount"
53
+        , "currency_id"
54
+        , "amount_usdollar"
55
+        , "date_entered"
56
+        , "date_modified"
57
+        , "modified_user_id"
58
+        , "assigned_user_id"
59
+        , "created_by"
60
+        , "date_closed"
61
+        , "next_step"
62
+        , "sales_stage"
63
+        , "probability"
64
+        , "description"
65
+        ,"campaign_id"
66
+        ),
67 67
         'list_fields' => Array('id', 'name', 'account_id', 'sales_stage', 'account_name', 'date_closed', 'amount', 'assigned_user_name', 'assigned_user_id','sales_stage','probability','lead_source','opportunity_type'
68
-	, "amount_usdollar"
69
-	),
68
+    , "amount_usdollar"
69
+    ),
70 70
         'required_fields' => Array('name'=>1, 'date_closed'=>2, 'amount'=>3, 'sales_stage'=>4, 'account_name'=>5),
71 71
 );
72 72
 ?>
73 73
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
2
+if (!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
3 3
 /*********************************************************************************
4 4
  * SugarCRM Community Edition is a customer relationship management program developed by
5 5
  * SugarCRM, Inc. Copyright (C) 2004-2013 SugarCRM Inc.
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
  * All Rights Reserved.
46 46
  * Contributor(s): ______________________________________..
47 47
  ********************************************************************************/
48
-$fields_array['Opportunity'] = array ('column_fields' => Array("id"
48
+$fields_array['Opportunity'] = array('column_fields' => Array("id"
49 49
 		, "name"
50 50
 		, "opportunity_type"
51 51
 		, "lead_source"
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
 		, "description"
65 65
 		,"campaign_id"
66 66
 		),
67
-        'list_fields' => Array('id', 'name', 'account_id', 'sales_stage', 'account_name', 'date_closed', 'amount', 'assigned_user_name', 'assigned_user_id','sales_stage','probability','lead_source','opportunity_type'
67
+        'list_fields' => Array('id', 'name', 'account_id', 'sales_stage', 'account_name', 'date_closed', 'amount', 'assigned_user_name', 'assigned_user_id', 'sales_stage', 'probability', 'lead_source', 'opportunity_type'
68 68
 	, "amount_usdollar"
69 69
 	),
70 70
         'required_fields' => Array('name'=>1, 'date_closed'=>2, 'amount'=>3, 'sales_stage'=>4, 'account_name'=>5),
Please login to merge, or discard this patch.
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,7 @@
 block discarded – undo
1 1
 <?php
2
-if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
2
+if(!defined('sugarEntry') || !sugarEntry) {
3
+    die('Not A Valid Entry Point');
4
+}
3 5
 /*********************************************************************************
4 6
  * SugarCRM Community Edition is a customer relationship management program developed by
5 7
  * SugarCRM, Inc. Copyright (C) 2004-2013 SugarCRM Inc.
Please login to merge, or discard this patch.
modules/Opportunities/vardefs.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -319,7 +319,7 @@
 block discarded – undo
319 319
             array(
320 320
                 'name' => 'emails',
321 321
                 'type' => 'link',
322
-                'relationship' => 'emails_opportunities_rel',/* reldef in emails */
322
+                'relationship' => 'emails_opportunities_rel', /* reldef in emails */
323 323
                 'source' => 'non-db',
324 324
                 'vname' => 'LBL_EMAILS',
325 325
             ),
Please login to merge, or discard this patch.
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,7 @@
 block discarded – undo
1 1
 <?php
2
-if (!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
2
+if (!defined('sugarEntry') || !sugarEntry) {
3
+    die('Not A Valid Entry Point');
4
+}
3 5
 /*********************************************************************************
4 6
  * SugarCRM Community Edition is a customer relationship management program developed by
5 7
  * SugarCRM, Inc. Copyright (C) 2004-2013 SugarCRM Inc.
Please login to merge, or discard this patch.
modules/Opportunities/SubPanelViewProjects.php 3 patches
Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -71,12 +71,12 @@  discard block
 block discarded – undo
71 71
 /// SETUP PARENT POPUP
72 72
 
73 73
 $popup_request_data = array(
74
-	'call_back_function' => 'set_return_and_save',
75
-	'form_name' => 'DetailView',
76
-	'field_to_name_array' => array(
77
-		'id' => 'opportunity_id',
78
-		),
79
-	);
74
+    'call_back_function' => 'set_return_and_save',
75
+    'form_name' => 'DetailView',
76
+    'field_to_name_array' => array(
77
+        'id' => 'opportunity_id',
78
+        ),
79
+    );
80 80
 
81 81
 $json = getJSONobj();
82 82
 $encoded_popup_request_data = $json->encode($popup_request_data);
@@ -94,14 +94,14 @@  discard block
 block discarded – undo
94 94
 $button .= "<input type='hidden' name='return_id' value='".$focus->id."'>\n";
95 95
 $button .= "<input type='hidden' name='action'>\n";
96 96
 $button .= "<input title='".$app_strings['LBL_SELECT_BUTTON_TITLE']
97
-	."' accessyKey='".$app_strings['LBL_SELECT_BUTTON_KEY']
98
-	."' type='button' class='button' value='  "
99
-	.$app_strings['LBL_SELECT_BUTTON_LABEL']
100
-	."  ' name='button' onclick='open_popup(\"Opportunities\", 600, 400, \"\", false, true, {$encoded_popup_request_data});'>\n";
97
+    ."' accessyKey='".$app_strings['LBL_SELECT_BUTTON_KEY']
98
+    ."' type='button' class='button' value='  "
99
+    .$app_strings['LBL_SELECT_BUTTON_LABEL']
100
+    ."  ' name='button' onclick='open_popup(\"Opportunities\", 600, 400, \"\", false, true, {$encoded_popup_request_data});'>\n";
101 101
 $button .= "</form>\n";
102 102
 $header_text = '';
103 103
 if(is_admin($current_user) && $_REQUEST['module'] != 'DynamicLayout' && !empty($_SESSION['editinplace'])){	
104
-		$header_text = "&nbsp;<a href='index.php?action=index&module=DynamicLayout&from_action=SubPanelView&from_module=Opportunities&record=". $_REQUEST['record']."'>".SugarThemeRegistry::current()->getImage("EditLayout","border='0' align='bottom'",null,null,'.gif',$mod_strings['LBL_EDITLAYOUT'])."</a>";
104
+        $header_text = "&nbsp;<a href='index.php?action=index&module=DynamicLayout&from_action=SubPanelView&from_module=Opportunities&record=". $_REQUEST['record']."'>".SugarThemeRegistry::current()->getImage("EditLayout","border='0' align='bottom'",null,null,'.gif',$mod_strings['LBL_EDITLAYOUT'])."</a>";
105 105
 }
106 106
 $ListView = new ListView();
107 107
 $ListView->initNewXTemplate('modules/Opportunities/SubPanelViewProjects.html',$current_module_strings);
Please login to merge, or discard this patch.
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
2
+if (!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
3 3
 /*********************************************************************************
4 4
  * SugarCRM Community Edition is a customer relationship management program developed by
5 5
  * SugarCRM, Inc. Copyright (C) 2004-2013 SugarCRM Inc.
@@ -100,14 +100,14 @@  discard block
 block discarded – undo
100 100
 	."  ' name='button' onclick='open_popup(\"Opportunities\", 600, 400, \"\", false, true, {$encoded_popup_request_data});'>\n";
101 101
 $button .= "</form>\n";
102 102
 $header_text = '';
103
-if(is_admin($current_user) && $_REQUEST['module'] != 'DynamicLayout' && !empty($_SESSION['editinplace'])){	
104
-		$header_text = "&nbsp;<a href='index.php?action=index&module=DynamicLayout&from_action=SubPanelView&from_module=Opportunities&record=". $_REQUEST['record']."'>".SugarThemeRegistry::current()->getImage("EditLayout","border='0' align='bottom'",null,null,'.gif',$mod_strings['LBL_EDITLAYOUT'])."</a>";
103
+if (is_admin($current_user) && $_REQUEST['module'] != 'DynamicLayout' && !empty($_SESSION['editinplace'])) {	
104
+		$header_text = "&nbsp;<a href='index.php?action=index&module=DynamicLayout&from_action=SubPanelView&from_module=Opportunities&record=".$_REQUEST['record']."'>".SugarThemeRegistry::current()->getImage("EditLayout", "border='0' align='bottom'", null, null, '.gif', $mod_strings['LBL_EDITLAYOUT'])."</a>";
105 105
 }
106 106
 $ListView = new ListView();
107
-$ListView->initNewXTemplate('modules/Opportunities/SubPanelViewProjects.html',$current_module_strings);
107
+$ListView->initNewXTemplate('modules/Opportunities/SubPanelViewProjects.html', $current_module_strings);
108 108
 $ListView->xTemplateAssign("RETURN_URL", "&return_module=".$currentModule."&return_action=DetailView&return_id={$_REQUEST['record']}");
109
-$ListView->xTemplateAssign("REMOVE_INLINE_PNG", SugarThemeRegistry::current()->getImage('delete_inline','align="absmiddle" border="0"',null,null,'.gif',$app_strings['LNK_REMOVE']));
110
-$ListView->setHeaderTitle($project_module_strings['LBL_OPPORTUNITY_SUBPANEL_TITLE']. $header_text );
109
+$ListView->xTemplateAssign("REMOVE_INLINE_PNG", SugarThemeRegistry::current()->getImage('delete_inline', 'align="absmiddle" border="0"', null, null, '.gif', $app_strings['LNK_REMOVE']));
110
+$ListView->setHeaderTitle($project_module_strings['LBL_OPPORTUNITY_SUBPANEL_TITLE'].$header_text);
111 111
 $ListView->setHeaderText($button);
112 112
 $ListView->processListView($focus_list, "main", "OPPORTUNITY");
113 113
 
Please login to merge, or discard this patch.
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,7 @@
 block discarded – undo
1 1
 <?php
2
-if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
2
+if(!defined('sugarEntry') || !sugarEntry) {
3
+    die('Not A Valid Entry Point');
4
+}
3 5
 /*********************************************************************************
4 6
  * SugarCRM Community Edition is a customer relationship management program developed by
5 7
  * SugarCRM, Inc. Copyright (C) 2004-2013 SugarCRM Inc.
Please login to merge, or discard this patch.