Completed
Push — console-installer ( 67c42e...186d32 )
by Adam
89:28 queued 70:47
created
modules/AOS_Products/metadata/subpaneldefs.php 3 patches
Indentation   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -40,24 +40,24 @@
 block discarded – undo
40 40
 
41 41
 
42 42
 $layout_defs['AOS_Products'] = array(
43
-	// list of what Subpanels to show in the DetailView
44
-	'subpanel_setup' => array(
43
+    // list of what Subpanels to show in the DetailView
44
+    'subpanel_setup' => array(
45 45
 
46
-		'aos_products_purchases' => array(
47
-			'order' => 100,
48
-			'module' => 'AOS_Quotes',
49
-			'subpanel_name' => 'ForProductPurchases',
50
-			'sort_order' => 'asc',
51
-			'sort_by' => 'id',
52
-			'title_key' => 'LBL_CUSTOMERS_PURCHASED_PRODUCTS_SUBPANEL_TITLE',
53
-			//'get_subpanel_data' => 'aos_products_aos_quotes_1',
54
-			'get_subpanel_data' => 'function:getCustomersPurchasedProductsQuery',
55
-			'top_buttons' =>
56
-			array(
57
-			),
58
-		),
46
+        'aos_products_purchases' => array(
47
+            'order' => 100,
48
+            'module' => 'AOS_Quotes',
49
+            'subpanel_name' => 'ForProductPurchases',
50
+            'sort_order' => 'asc',
51
+            'sort_by' => 'id',
52
+            'title_key' => 'LBL_CUSTOMERS_PURCHASED_PRODUCTS_SUBPANEL_TITLE',
53
+            //'get_subpanel_data' => 'aos_products_aos_quotes_1',
54
+            'get_subpanel_data' => 'function:getCustomersPurchasedProductsQuery',
55
+            'top_buttons' =>
56
+            array(
57
+            ),
58
+        ),
59 59
 
60
-	),
60
+    ),
61 61
 );
62 62
 
63 63
 
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 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.
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/AOS_Products/metadata/dashletviewdefs.php 3 patches
Indentation   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -30,27 +30,27 @@
 block discarded – undo
30 30
 global $current_user;
31 31
 
32 32
 $dashletData['AOS_ProductsDashlet']['searchFields'] = array('date_entered'     => array('default' => ''),
33
-                                                          'date_modified'    => array('default' => ''),
33
+                                                            'date_modified'    => array('default' => ''),
34 34
 
35 35
 
36 36
 
37
-                                                          'assigned_user_id' => array('type'    => 'assigned_user_name', 
38
-                                                                                      'default' => $current_user->name));
37
+                                                            'assigned_user_id' => array('type'    => 'assigned_user_name', 
38
+                                                                                        'default' => $current_user->name));
39 39
 $dashletData['AOS_ProductsDashlet']['columns'] =  array(   'name' => array('width'   => '40', 
40
-                                                                      'label'   => 'LBL_LIST_NAME',
41
-                                                                      'link'    => true,
42
-                                                                      'default' => true), 
43
-                                                      'date_entered' => array('width'   => '15', 
44
-                                                                              'label'   => 'LBL_DATE_ENTERED',
45
-                                                                              'default' => true),
46
-                                                      'date_modified' => array('width'   => '15', 
47
-                                                                              'label'   => 'LBL_DATE_MODIFIED'),    
48
-                                                      'created_by' => array('width'   => '8', 
40
+                                                                        'label'   => 'LBL_LIST_NAME',
41
+                                                                        'link'    => true,
42
+                                                                        'default' => true), 
43
+                                                        'date_entered' => array('width'   => '15', 
44
+                                                                                'label'   => 'LBL_DATE_ENTERED',
45
+                                                                                'default' => true),
46
+                                                        'date_modified' => array('width'   => '15', 
47
+                                                                                'label'   => 'LBL_DATE_MODIFIED'),    
48
+                                                        'created_by' => array('width'   => '8', 
49 49
                                                                             'label'   => 'LBL_CREATED'),
50
-                                                      'assigned_user_name' => array('width'   => '8', 
51
-                                                                                     'label'   => 'LBL_LIST_ASSIGNED_USER'),
50
+                                                        'assigned_user_name' => array('width'   => '8', 
51
+                                                                                        'label'   => 'LBL_LIST_ASSIGNED_USER'),
52 52
 
53 53
 
54 54
 
55 55
 
56
-                                               );
56
+                                                );
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
  * Products, Quotations & Invoices modules.
5 5
  * Extensions to SugarCRM
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
 
37 37
                                                           'assigned_user_id' => array('type'    => 'assigned_user_name', 
38 38
                                                                                       'default' => $current_user->name));
39
-$dashletData['AOS_ProductsDashlet']['columns'] =  array(   'name' => array('width'   => '40', 
39
+$dashletData['AOS_ProductsDashlet']['columns'] = array('name' => array('width'   => '40', 
40 40
                                                                       'label'   => 'LBL_LIST_NAME',
41 41
                                                                       'link'    => true,
42 42
                                                                       '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/AOS_Products/metadata/editviewdefs.php 2 patches
Indentation   +60 added lines, -60 removed lines patch added patch discarded remove patch
@@ -2,129 +2,129 @@
 block discarded – undo
2 2
 $module_name = 'AOS_Products';
3 3
 $viewdefs [$module_name] = 
4 4
 array (
5
-  'EditView' => 
6
-  array (
5
+    'EditView' => 
6
+    array (
7 7
     'templateMeta' => 
8 8
     array (
9
-      'maxColumns' => '2',
10
-      'widths' => 
11
-      array (
9
+        'maxColumns' => '2',
10
+        'widths' => 
11
+        array (
12 12
         0 => 
13 13
         array (
14
-          'label' => '10',
15
-          'field' => '30',
14
+            'label' => '10',
15
+            'field' => '30',
16 16
         ),
17 17
         1 => 
18 18
         array (
19
-          'label' => '10',
20
-          'field' => '30',
19
+            'label' => '10',
20
+            'field' => '30',
21
+        ),
21 22
         ),
22
-      ),
23
-      'form' => 
24
-      array (
23
+        'form' => 
24
+        array (
25 25
         'enctype' => 'multipart/form-data',
26 26
         'headerTpl' => 'modules/AOS_Products/tpls/EditViewHeader.tpl',
27
-      ),
28
-      'includes' => 
29
-      array (
27
+        ),
28
+        'includes' => 
29
+        array (
30 30
         0 => 
31 31
         array (
32
-          'file' => 'modules/AOS_Products/js/products.js',
32
+            'file' => 'modules/AOS_Products/js/products.js',
33 33
         ),
34
-      ),
35
-      'useTabs' => false,
36
-      'tabDefs' => 
37
-      array (
34
+        ),
35
+        'useTabs' => false,
36
+        'tabDefs' => 
37
+        array (
38 38
         'DEFAULT' => 
39 39
         array (
40
-          'newTab' => false,
41
-          'panelDefault' => 'expanded',
40
+            'newTab' => false,
41
+            'panelDefault' => 'expanded',
42
+        ),
42 43
         ),
43
-      ),
44 44
     ),
45 45
     'panels' => 
46 46
     array (
47
-      'default' => 
48
-      array (
47
+        'default' => 
48
+        array (
49 49
         0 => 
50 50
         array (
51
-          0 => 
52
-          array (
51
+            0 => 
52
+            array (
53 53
             'name' => 'name',
54 54
             'label' => 'LBL_NAME',
55
-          ),
56
-          1 => 
57
-          array (
55
+            ),
56
+            1 => 
57
+            array (
58 58
             'name' => 'part_number',
59 59
             'label' => 'LBL_PART_NUMBER',
60
-          ),
60
+            ),
61 61
         ),
62 62
         1 => 
63 63
         array (
64
-          0 => 
65
-          array (
64
+            0 => 
65
+            array (
66 66
             'name' => 'aos_product_category_name',
67 67
             'label' => 'LBL_AOS_PRODUCT_CATEGORYS_NAME',
68
-          ),
69
-          1 => 
70
-          array (
68
+            ),
69
+            1 => 
70
+            array (
71 71
             'name' => 'type',
72 72
             'label' => 'LBL_TYPE',
73
-          ),
73
+            ),
74 74
         ),
75 75
         2 => 
76 76
         array (
77
-          0 => 
78
-          array (
77
+            0 => 
78
+            array (
79 79
             'name' => 'currency_id',
80 80
             'studio' => 'visible',
81 81
             'label' => 'LBL_CURRENCY',
82
-          ),
82
+            ),
83 83
         ),
84 84
         3 => 
85 85
         array (
86
-          0 => 
87
-          array (
86
+            0 => 
87
+            array (
88 88
             'name' => 'cost',
89 89
             'label' => 'LBL_COST',
90
-          ),
91
-          1 => 
92
-          array (
90
+            ),
91
+            1 => 
92
+            array (
93 93
             'name' => 'price',
94 94
             'label' => 'LBL_PRICE',
95
-          ),
95
+            ),
96 96
         ),
97 97
         4 => 
98 98
         array (
99
-          0 => 
100
-          array (
99
+            0 => 
100
+            array (
101 101
             'name' => 'contact',
102 102
             'label' => 'LBL_CONTACT',
103
-          ),
104
-          1 => 
105
-          array (
103
+            ),
104
+            1 => 
105
+            array (
106 106
             'name' => 'url',
107 107
             'label' => 'LBL_URL',
108
-          ),
108
+            ),
109 109
         ),
110 110
         5 => 
111 111
         array (
112
-          0 => 
113
-          array (
112
+            0 => 
113
+            array (
114 114
             'name' => 'description',
115 115
             'label' => 'LBL_DESCRIPTION',
116
-          ),
116
+            ),
117 117
         ),
118 118
         6 => 
119 119
         array (
120
-          0 => 
121
-          array (
120
+            0 => 
121
+            array (
122 122
             'name' => 'product_image',
123 123
             'customCode' => '{$PRODUCT_IMAGE}',
124
-          ),
124
+            ),
125
+        ),
125 126
         ),
126
-      ),
127 127
     ),
128
-  ),
128
+    ),
129 129
 );
130 130
 ?>
Please login to merge, or discard this patch.
Spacing   +31 added lines, -31 removed lines patch added patch discarded remove patch
@@ -1,124 +1,124 @@
 block discarded – undo
1 1
 <?php
2 2
 $module_name = 'AOS_Products';
3 3
 $viewdefs [$module_name] = 
4
-array (
4
+array(
5 5
   'EditView' => 
6
-  array (
6
+  array(
7 7
     'templateMeta' => 
8
-    array (
8
+    array(
9 9
       'maxColumns' => '2',
10 10
       'widths' => 
11
-      array (
11
+      array(
12 12
         0 => 
13
-        array (
13
+        array(
14 14
           'label' => '10',
15 15
           'field' => '30',
16 16
         ),
17 17
         1 => 
18
-        array (
18
+        array(
19 19
           'label' => '10',
20 20
           'field' => '30',
21 21
         ),
22 22
       ),
23 23
       'form' => 
24
-      array (
24
+      array(
25 25
         'enctype' => 'multipart/form-data',
26 26
         'headerTpl' => 'modules/AOS_Products/tpls/EditViewHeader.tpl',
27 27
       ),
28 28
       'includes' => 
29
-      array (
29
+      array(
30 30
         0 => 
31
-        array (
31
+        array(
32 32
           'file' => 'modules/AOS_Products/js/products.js',
33 33
         ),
34 34
       ),
35 35
       'useTabs' => false,
36 36
       'tabDefs' => 
37
-      array (
37
+      array(
38 38
         'DEFAULT' => 
39
-        array (
39
+        array(
40 40
           'newTab' => false,
41 41
           'panelDefault' => 'expanded',
42 42
         ),
43 43
       ),
44 44
     ),
45 45
     'panels' => 
46
-    array (
46
+    array(
47 47
       'default' => 
48
-      array (
48
+      array(
49 49
         0 => 
50
-        array (
50
+        array(
51 51
           0 => 
52
-          array (
52
+          array(
53 53
             'name' => 'name',
54 54
             'label' => 'LBL_NAME',
55 55
           ),
56 56
           1 => 
57
-          array (
57
+          array(
58 58
             'name' => 'part_number',
59 59
             'label' => 'LBL_PART_NUMBER',
60 60
           ),
61 61
         ),
62 62
         1 => 
63
-        array (
63
+        array(
64 64
           0 => 
65
-          array (
65
+          array(
66 66
             'name' => 'aos_product_category_name',
67 67
             'label' => 'LBL_AOS_PRODUCT_CATEGORYS_NAME',
68 68
           ),
69 69
           1 => 
70
-          array (
70
+          array(
71 71
             'name' => 'type',
72 72
             'label' => 'LBL_TYPE',
73 73
           ),
74 74
         ),
75 75
         2 => 
76
-        array (
76
+        array(
77 77
           0 => 
78
-          array (
78
+          array(
79 79
             'name' => 'currency_id',
80 80
             'studio' => 'visible',
81 81
             'label' => 'LBL_CURRENCY',
82 82
           ),
83 83
         ),
84 84
         3 => 
85
-        array (
85
+        array(
86 86
           0 => 
87
-          array (
87
+          array(
88 88
             'name' => 'cost',
89 89
             'label' => 'LBL_COST',
90 90
           ),
91 91
           1 => 
92
-          array (
92
+          array(
93 93
             'name' => 'price',
94 94
             'label' => 'LBL_PRICE',
95 95
           ),
96 96
         ),
97 97
         4 => 
98
-        array (
98
+        array(
99 99
           0 => 
100
-          array (
100
+          array(
101 101
             'name' => 'contact',
102 102
             'label' => 'LBL_CONTACT',
103 103
           ),
104 104
           1 => 
105
-          array (
105
+          array(
106 106
             'name' => 'url',
107 107
             'label' => 'LBL_URL',
108 108
           ),
109 109
         ),
110 110
         5 => 
111
-        array (
111
+        array(
112 112
           0 => 
113
-          array (
113
+          array(
114 114
             'name' => 'description',
115 115
             'label' => 'LBL_DESCRIPTION',
116 116
           ),
117 117
         ),
118 118
         6 => 
119
-        array (
119
+        array(
120 120
           0 => 
121
-          array (
121
+          array(
122 122
             'name' => 'product_image',
123 123
             'customCode' => '{$PRODUCT_IMAGE}',
124 124
           ),
Please login to merge, or discard this patch.
modules/AOS_Products/metadata/popupdefs.php 2 patches
Indentation   +44 added lines, -44 removed lines patch added patch discarded remove patch
@@ -4,94 +4,94 @@
 block discarded – undo
4 4
     'varName' => 'AOS_Products',
5 5
     'orderBy' => 'aos_products.name',
6 6
     'whereClauses' => array (
7
-  'name' => 'aos_products.name',
8
-  'part_number' => 'aos_products.part_number',
9
-  'cost' => 'aos_products.cost',
10
-  'price' => 'aos_products.price',
11
-  'created_by' => 'aos_products.created_by',
7
+    'name' => 'aos_products.name',
8
+    'part_number' => 'aos_products.part_number',
9
+    'cost' => 'aos_products.cost',
10
+    'price' => 'aos_products.price',
11
+    'created_by' => 'aos_products.created_by',
12 12
 ),
13 13
     'searchInputs' => array (
14
-  1 => 'name',
15
-  4 => 'part_number',
16
-  5 => 'cost',
17
-  6 => 'price',
18
-  7 => 'created_by',
14
+    1 => 'name',
15
+    4 => 'part_number',
16
+    5 => 'cost',
17
+    6 => 'price',
18
+    7 => 'created_by',
19 19
 ),
20 20
     'searchdefs' => array (
21
-  'name' => 
22
-  array (
21
+    'name' => 
22
+    array (
23 23
     'name' => 'name',
24 24
     'width' => '10%',
25
-  ),
26
-  'part_number' => 
27
-  array (
25
+    ),
26
+    'part_number' => 
27
+    array (
28 28
     'name' => 'part_number',
29 29
     'width' => '10%',
30
-  ),
31
-  'cost' => 
32
-  array (
30
+    ),
31
+    'cost' => 
32
+    array (
33 33
     'name' => 'cost',
34 34
     'width' => '10%',
35
-  ),
36
-  'price' => 
37
-  array (
35
+    ),
36
+    'price' => 
37
+    array (
38 38
     'name' => 'price',
39 39
     'width' => '10%',
40
-  ),
41
-  'created_by' => 
42
-  array (
40
+    ),
41
+    'created_by' => 
42
+    array (
43 43
     'name' => 'created_by',
44 44
     'label' => 'LBL_CREATED',
45 45
     'type' => 'enum',
46 46
     'function' => 
47 47
     array (
48
-      'name' => 'get_user_array',
49
-      'params' => 
50
-      array (
48
+        'name' => 'get_user_array',
49
+        'params' => 
50
+        array (
51 51
         0 => false,
52
-      ),
52
+        ),
53 53
     ),
54 54
     'width' => '10%',
55
-  ),
55
+    ),
56 56
 ),
57 57
     'listviewdefs' => array (
58
-  'NAME' => 
59
-  array (
58
+    'NAME' => 
59
+    array (
60 60
     'width' => '25%',
61 61
     'label' => 'LBL_NAME',
62 62
     'default' => true,
63 63
     'link' => true,
64 64
     'name' => 'name',
65
-  ),
66
-  'PART_NUMBER' => 
67
-  array (
65
+    ),
66
+    'PART_NUMBER' => 
67
+    array (
68 68
     'width' => '10%',
69 69
     'label' => 'LBL_PART_NUMBER',
70 70
     'default' => true,
71 71
     'name' => 'part_number',
72
-  ),
73
-  'COST' => 
74
-  array (
72
+    ),
73
+    'COST' => 
74
+    array (
75 75
     'width' => '10%',
76 76
     'label' => 'LBL_COST',
77 77
     'default' => true,
78 78
     'name' => 'cost',
79
-  ),
80
-  'PRICE' => 
81
-  array (
79
+    ),
80
+    'PRICE' => 
81
+    array (
82 82
     'width' => '10%',
83 83
     'label' => 'LBL_PRICE',
84 84
     'default' => true,
85 85
     'name' => 'price',
86
-  ),
87
-  'CURRENCY_ID' =>
88
-  array (
86
+    ),
87
+    'CURRENCY_ID' =>
88
+    array (
89 89
     'type' => 'id',
90 90
     'studio' => 'visible',
91 91
     'label' => 'LBL_CURRENCY',
92 92
     'width' => '10%',
93 93
     'default' => false,
94 94
     'name' => 'currency_id',
95
-  ),
95
+    ),
96 96
 ),
97 97
 );
Please login to merge, or discard this patch.
Spacing   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -1,62 +1,62 @@  discard block
 block discarded – undo
1 1
 <?php
2
-$popupMeta = array (
2
+$popupMeta = array(
3 3
     'moduleMain' => 'AOS_Products',
4 4
     'varName' => 'AOS_Products',
5 5
     'orderBy' => 'aos_products.name',
6
-    'whereClauses' => array (
6
+    'whereClauses' => array(
7 7
   'name' => 'aos_products.name',
8 8
   'part_number' => 'aos_products.part_number',
9 9
   'cost' => 'aos_products.cost',
10 10
   'price' => 'aos_products.price',
11 11
   'created_by' => 'aos_products.created_by',
12 12
 ),
13
-    'searchInputs' => array (
13
+    'searchInputs' => array(
14 14
   1 => 'name',
15 15
   4 => 'part_number',
16 16
   5 => 'cost',
17 17
   6 => 'price',
18 18
   7 => 'created_by',
19 19
 ),
20
-    'searchdefs' => array (
20
+    'searchdefs' => array(
21 21
   'name' => 
22
-  array (
22
+  array(
23 23
     'name' => 'name',
24 24
     'width' => '10%',
25 25
   ),
26 26
   'part_number' => 
27
-  array (
27
+  array(
28 28
     'name' => 'part_number',
29 29
     'width' => '10%',
30 30
   ),
31 31
   'cost' => 
32
-  array (
32
+  array(
33 33
     'name' => 'cost',
34 34
     'width' => '10%',
35 35
   ),
36 36
   'price' => 
37
-  array (
37
+  array(
38 38
     'name' => 'price',
39 39
     'width' => '10%',
40 40
   ),
41 41
   'created_by' => 
42
-  array (
42
+  array(
43 43
     'name' => 'created_by',
44 44
     'label' => 'LBL_CREATED',
45 45
     'type' => 'enum',
46 46
     'function' => 
47
-    array (
47
+    array(
48 48
       'name' => 'get_user_array',
49 49
       'params' => 
50
-      array (
50
+      array(
51 51
         0 => false,
52 52
       ),
53 53
     ),
54 54
     'width' => '10%',
55 55
   ),
56 56
 ),
57
-    'listviewdefs' => array (
57
+    'listviewdefs' => array(
58 58
   'NAME' => 
59
-  array (
59
+  array(
60 60
     'width' => '25%',
61 61
     'label' => 'LBL_NAME',
62 62
     'default' => true,
@@ -64,28 +64,28 @@  discard block
 block discarded – undo
64 64
     'name' => 'name',
65 65
   ),
66 66
   'PART_NUMBER' => 
67
-  array (
67
+  array(
68 68
     'width' => '10%',
69 69
     'label' => 'LBL_PART_NUMBER',
70 70
     'default' => true,
71 71
     'name' => 'part_number',
72 72
   ),
73 73
   'COST' => 
74
-  array (
74
+  array(
75 75
     'width' => '10%',
76 76
     'label' => 'LBL_COST',
77 77
     'default' => true,
78 78
     'name' => 'cost',
79 79
   ),
80 80
   'PRICE' => 
81
-  array (
81
+  array(
82 82
     'width' => '10%',
83 83
     'label' => 'LBL_PRICE',
84 84
     'default' => true,
85 85
     'name' => 'price',
86 86
   ),
87 87
   'CURRENCY_ID' =>
88
-  array (
88
+  array(
89 89
     'type' => 'id',
90 90
     'studio' => 'visible',
91 91
     'label' => 'LBL_CURRENCY',
Please login to merge, or discard this patch.
modules/AOS_Products/metadata/searchdefs.php 2 patches
Indentation   +31 added lines, -31 removed lines patch added patch discarded remove patch
@@ -2,71 +2,71 @@
 block discarded – undo
2 2
 $module_name = 'AOS_Products';
3 3
 $searchdefs [$module_name] = 
4 4
 array (
5
-  'layout' => 
6
-  array (
5
+    'layout' => 
6
+    array (
7 7
     'basic_search' => 
8 8
     array (
9
-      0 => 'name',
10
-      1 => 
11
-      array (
9
+        0 => 'name',
10
+        1 => 
11
+        array (
12 12
         'name' => 'current_user_only',
13 13
         'label' => 'LBL_CURRENT_USER_FILTER',
14 14
         'type' => 'bool',
15
-      ),
15
+        ),
16 16
         'favorites_only' => array ('name' => 'favorites_only','label' => 'LBL_FAVORITES_FILTER','type' => 'bool',),
17 17
     ),
18 18
     'advanced_search' => 
19 19
     array (
20
-      'name' => 
21
-      array (
20
+        'name' => 
21
+        array (
22 22
         'name' => 'name',
23 23
         'default' => true,
24 24
         'width' => '10%',
25
-      ),
26
-      'part_number' => 
27
-      array (
25
+        ),
26
+        'part_number' => 
27
+        array (
28 28
         'name' => 'part_number',
29 29
         'default' => true,
30 30
         'width' => '10%',
31
-      ),
32
-      'cost' => 
33
-      array (
31
+        ),
32
+        'cost' => 
33
+        array (
34 34
         'name' => 'cost',
35 35
         'default' => true,
36 36
         'width' => '10%',
37
-      ),
38
-      'price' => 
39
-      array (
37
+        ),
38
+        'price' => 
39
+        array (
40 40
         'name' => 'price',
41 41
         'default' => true,
42 42
         'width' => '10%',
43
-      ),
44
-      'created_by' => 
45
-      array (
43
+        ),
44
+        'created_by' => 
45
+        array (
46 46
         'name' => 'created_by',
47 47
         'label' => 'LBL_CREATED',
48 48
         'type' => 'enum',
49 49
         'function' => 
50 50
         array (
51
-          'name' => 'get_user_array',
52
-          'params' => 
53
-          array (
51
+            'name' => 'get_user_array',
52
+            'params' => 
53
+            array (
54 54
             0 => false,
55
-          ),
55
+            ),
56 56
         ),
57 57
         'default' => true,
58 58
         'width' => '10%',
59
-      ),
59
+        ),
60
+    ),
60 61
     ),
61
-  ),
62
-  'templateMeta' => 
63
-  array (
62
+    'templateMeta' => 
63
+    array (
64 64
     'maxColumns' => '3',
65 65
     'widths' => 
66 66
     array (
67
-      'label' => '10',
68
-      'field' => '30',
67
+        'label' => '10',
68
+        'field' => '30',
69
+    ),
69 70
     ),
70
-  ),
71 71
 );
72 72
 ?>
Please login to merge, or discard this patch.
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -1,56 +1,56 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 $module_name = 'AOS_Products';
3 3
 $searchdefs [$module_name] = 
4
-array (
4
+array(
5 5
   'layout' => 
6
-  array (
6
+  array(
7 7
     'basic_search' => 
8
-    array (
8
+    array(
9 9
       0 => 'name',
10 10
       1 => 
11
-      array (
11
+      array(
12 12
         'name' => 'current_user_only',
13 13
         'label' => 'LBL_CURRENT_USER_FILTER',
14 14
         'type' => 'bool',
15 15
       ),
16
-        'favorites_only' => array ('name' => 'favorites_only','label' => 'LBL_FAVORITES_FILTER','type' => 'bool',),
16
+        'favorites_only' => array('name' => 'favorites_only', 'label' => 'LBL_FAVORITES_FILTER', 'type' => 'bool',),
17 17
     ),
18 18
     'advanced_search' => 
19
-    array (
19
+    array(
20 20
       'name' => 
21
-      array (
21
+      array(
22 22
         'name' => 'name',
23 23
         'default' => true,
24 24
         'width' => '10%',
25 25
       ),
26 26
       'part_number' => 
27
-      array (
27
+      array(
28 28
         'name' => 'part_number',
29 29
         'default' => true,
30 30
         'width' => '10%',
31 31
       ),
32 32
       'cost' => 
33
-      array (
33
+      array(
34 34
         'name' => 'cost',
35 35
         'default' => true,
36 36
         'width' => '10%',
37 37
       ),
38 38
       'price' => 
39
-      array (
39
+      array(
40 40
         'name' => 'price',
41 41
         'default' => true,
42 42
         'width' => '10%',
43 43
       ),
44 44
       'created_by' => 
45
-      array (
45
+      array(
46 46
         'name' => 'created_by',
47 47
         'label' => 'LBL_CREATED',
48 48
         'type' => 'enum',
49 49
         'function' => 
50
-        array (
50
+        array(
51 51
           'name' => 'get_user_array',
52 52
           'params' => 
53
-          array (
53
+          array(
54 54
             0 => false,
55 55
           ),
56 56
         ),
@@ -60,10 +60,10 @@  discard block
 block discarded – undo
60 60
     ),
61 61
   ),
62 62
   'templateMeta' => 
63
-  array (
63
+  array(
64 64
     'maxColumns' => '3',
65 65
     'widths' => 
66
-    array (
66
+    array(
67 67
       'label' => '10',
68 68
       'field' => '30',
69 69
     ),
Please login to merge, or discard this patch.
modules/AOS_Products/metadata/SearchFields.php 2 patches
Indentation   +43 added lines, -43 removed lines patch added patch discarded remove patch
@@ -2,87 +2,87 @@
 block discarded – undo
2 2
 // created: 2013-05-07 12:48:58
3 3
 global $current_user;
4 4
 $searchFields['AOS_Products'] = array (
5
-  'name' => 
6
-  array (
5
+    'name' => 
6
+    array (
7 7
     'query_type' => 'default',
8
-  ),
9
-  'current_user_only' => 
10
-  array (
8
+    ),
9
+    'current_user_only' => 
10
+    array (
11 11
     'query_type' => 'default',
12 12
     'db_field' => 
13 13
     array (
14
-      0 => 'created_by',
14
+        0 => 'created_by',
15 15
     ),
16 16
     'my_items' => true,
17 17
     'vname' => 'LBL_CURRENT_USER_FILTER',
18 18
     'type' => 'bool',
19
-  ),
20
-  'range_price' => 
21
-  array (
19
+    ),
20
+    'range_price' => 
21
+    array (
22 22
     'query_type' => 'default',
23 23
     'enable_range_search' => true,
24
-  ),
25
-  'start_range_price' => 
26
-  array (
24
+    ),
25
+    'start_range_price' => 
26
+    array (
27 27
     'query_type' => 'default',
28 28
     'enable_range_search' => true,
29
-  ),
30
-  'end_range_price' => 
31
-  array (
29
+    ),
30
+    'end_range_price' => 
31
+    array (
32 32
     'query_type' => 'default',
33 33
     'enable_range_search' => true,
34
-  ),
35
-  'range_cost' => 
36
-  array (
34
+    ),
35
+    'range_cost' => 
36
+    array (
37 37
     'query_type' => 'default',
38 38
     'enable_range_search' => true,
39
-  ),
40
-  'start_range_cost' => 
41
-  array (
39
+    ),
40
+    'start_range_cost' => 
41
+    array (
42 42
     'query_type' => 'default',
43 43
     'enable_range_search' => true,
44
-  ),
45
-  'end_range_cost' => 
46
-  array (
44
+    ),
45
+    'end_range_cost' => 
46
+    array (
47 47
     'query_type' => 'default',
48 48
     'enable_range_search' => true,
49
-  ),
50
-  'range_date_entered' => 
51
-  array (
49
+    ),
50
+    'range_date_entered' => 
51
+    array (
52 52
     'query_type' => 'default',
53 53
     'enable_range_search' => true,
54 54
     'is_date_field' => true,
55
-  ),
56
-  'start_range_date_entered' => 
57
-  array (
55
+    ),
56
+    'start_range_date_entered' => 
57
+    array (
58 58
     'query_type' => 'default',
59 59
     'enable_range_search' => true,
60 60
     'is_date_field' => true,
61
-  ),
62
-  'end_range_date_entered' => 
63
-  array (
61
+    ),
62
+    'end_range_date_entered' => 
63
+    array (
64 64
     'query_type' => 'default',
65 65
     'enable_range_search' => true,
66 66
     'is_date_field' => true,
67
-  ),
68
-  'range_date_modified' => 
69
-  array (
67
+    ),
68
+    'range_date_modified' => 
69
+    array (
70 70
     'query_type' => 'default',
71 71
     'enable_range_search' => true,
72 72
     'is_date_field' => true,
73
-  ),
74
-  'start_range_date_modified' => 
75
-  array (
73
+    ),
74
+    'start_range_date_modified' => 
75
+    array (
76 76
     'query_type' => 'default',
77 77
     'enable_range_search' => true,
78 78
     'is_date_field' => true,
79
-  ),
80
-  'end_range_date_modified' => 
81
-  array (
79
+    ),
80
+    'end_range_date_modified' => 
81
+    array (
82 82
     'query_type' => 'default',
83 83
     'enable_range_search' => true,
84 84
     'is_date_field' => true,
85
-  ),
85
+    ),
86 86
     'favorites_only' => array(
87 87
         'query_type'=>'format',
88 88
         'operator' => 'subquery',
Please login to merge, or discard this patch.
Spacing   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -1,14 +1,14 @@  discard block
 block discarded – undo
1 1
 <?php
2
-$searchFields['AOS_Products'] = array (
2
+$searchFields['AOS_Products'] = array(
3 3
   'name' => 
4
-  array (
4
+  array(
5 5
     'query_type' => 'default',
6 6
   ),
7 7
   'current_user_only' => 
8
-  array (
8
+  array(
9 9
     'query_type' => 'default',
10 10
     'db_field' => 
11
-    array (
11
+    array(
12 12
       0 => 'created_by',
13 13
     ),
14 14
     'my_items' => true,
@@ -16,67 +16,67 @@  discard block
 block discarded – undo
16 16
     'type' => 'bool',
17 17
   ),
18 18
   'range_price' => 
19
-  array (
19
+  array(
20 20
     'query_type' => 'default',
21 21
     'enable_range_search' => true,
22 22
   ),
23 23
   'start_range_price' => 
24
-  array (
24
+  array(
25 25
     'query_type' => 'default',
26 26
     'enable_range_search' => true,
27 27
   ),
28 28
   'end_range_price' => 
29
-  array (
29
+  array(
30 30
     'query_type' => 'default',
31 31
     'enable_range_search' => true,
32 32
   ),
33 33
   'range_cost' => 
34
-  array (
34
+  array(
35 35
     'query_type' => 'default',
36 36
     'enable_range_search' => true,
37 37
   ),
38 38
   'start_range_cost' => 
39
-  array (
39
+  array(
40 40
     'query_type' => 'default',
41 41
     'enable_range_search' => true,
42 42
   ),
43 43
   'end_range_cost' => 
44
-  array (
44
+  array(
45 45
     'query_type' => 'default',
46 46
     'enable_range_search' => true,
47 47
   ),
48 48
   'range_date_entered' => 
49
-  array (
49
+  array(
50 50
     'query_type' => 'default',
51 51
     'enable_range_search' => true,
52 52
     'is_date_field' => true,
53 53
   ),
54 54
   'start_range_date_entered' => 
55
-  array (
55
+  array(
56 56
     'query_type' => 'default',
57 57
     'enable_range_search' => true,
58 58
     'is_date_field' => true,
59 59
   ),
60 60
   'end_range_date_entered' => 
61
-  array (
61
+  array(
62 62
     'query_type' => 'default',
63 63
     'enable_range_search' => true,
64 64
     'is_date_field' => true,
65 65
   ),
66 66
   'range_date_modified' => 
67
-  array (
67
+  array(
68 68
     'query_type' => 'default',
69 69
     'enable_range_search' => true,
70 70
     'is_date_field' => true,
71 71
   ),
72 72
   'start_range_date_modified' => 
73
-  array (
73
+  array(
74 74
     'query_type' => 'default',
75 75
     'enable_range_search' => true,
76 76
     'is_date_field' => true,
77 77
   ),
78 78
   'end_range_date_modified' => 
79
-  array (
79
+  array(
80 80
     'query_type' => 'default',
81 81
     'enable_range_search' => true,
82 82
     'is_date_field' => true,
Please login to merge, or discard this patch.
modules/AOS_Products/metadata/detailviewdefs.php 2 patches
Indentation   +59 added lines, -59 removed lines patch added patch discarded remove patch
@@ -2,127 +2,127 @@
 block discarded – undo
2 2
 $module_name = 'AOS_Products';
3 3
 $viewdefs [$module_name] = 
4 4
 array (
5
-  'DetailView' => 
6
-  array (
5
+    'DetailView' => 
6
+    array (
7 7
     'templateMeta' => 
8 8
     array (
9
-      'form' => 
10
-      array (
9
+        'form' => 
10
+        array (
11 11
         'buttons' => 
12 12
         array (
13
-          0 => 'EDIT',
14
-          1 => 'DUPLICATE',
15
-          2 => 'DELETE',
13
+            0 => 'EDIT',
14
+            1 => 'DUPLICATE',
15
+            2 => 'DELETE',
16
+        ),
16 17
         ),
17
-      ),
18
-      'maxColumns' => '2',
19
-      'widths' => 
20
-      array (
18
+        'maxColumns' => '2',
19
+        'widths' => 
20
+        array (
21 21
         0 => 
22 22
         array (
23
-          'label' => '10',
24
-          'field' => '30',
23
+            'label' => '10',
24
+            'field' => '30',
25 25
         ),
26 26
         1 => 
27 27
         array (
28
-          'label' => '10',
29
-          'field' => '30',
28
+            'label' => '10',
29
+            'field' => '30',
30
+        ),
30 31
         ),
31
-      ),
32
-      'useTabs' => true,
33
-      'tabDefs' => 
34
-      array (
32
+        'useTabs' => true,
33
+        'tabDefs' => 
34
+        array (
35 35
         'DEFAULT' => 
36 36
         array (
37
-          'newTab' => true,
38
-          'panelDefault' => 'expanded',
37
+            'newTab' => true,
38
+            'panelDefault' => 'expanded',
39
+        ),
39 40
         ),
40
-      ),
41 41
     ),
42 42
     'panels' => 
43 43
     array (
44
-      'default' => 
45
-      array (
44
+        'default' => 
45
+        array (
46 46
         0 => 
47 47
         array (
48
-          0 => 
49
-          array (
48
+            0 => 
49
+            array (
50 50
             'name' => 'name',
51 51
             'label' => 'LBL_NAME',
52
-          ),
53
-          1 => 
54
-          array (
52
+            ),
53
+            1 => 
54
+            array (
55 55
             'name' => 'part_number',
56 56
             'label' => 'LBL_PART_NUMBER',
57
-          ),
57
+            ),
58 58
         ),
59 59
         1 => 
60 60
         array (
61
-          0 => 
62
-          array (
61
+            0 => 
62
+            array (
63 63
             'name' => 'aos_product_category_name',
64 64
             'label' => 'LBL_AOS_PRODUCT_CATEGORYS_NAME',
65
-          ),
66
-          1 => 
67
-          array (
65
+            ),
66
+            1 => 
67
+            array (
68 68
             'name' => 'type',
69 69
             'label' => 'LBL_TYPE',
70
-          ),
70
+            ),
71 71
         ),
72 72
         2 => 
73 73
         array (
74
-          0 => 
75
-          array (
74
+            0 => 
75
+            array (
76 76
             'name' => 'currency_id',
77 77
             'studio' => 'visible',
78 78
             'label' => 'LBL_CURRENCY',
79
-          ),
79
+            ),
80 80
         ),
81 81
         3 => 
82 82
         array (
83
-          0 => 
84
-          array (
83
+            0 => 
84
+            array (
85 85
             'name' => 'cost',
86 86
             'label' => 'LBL_COST',
87
-          ),
88
-          1 => 
89
-          array (
87
+            ),
88
+            1 => 
89
+            array (
90 90
             'name' => 'price',
91 91
             'label' => 'LBL_PRICE',
92
-          ),
92
+            ),
93 93
         ),
94 94
         4 => 
95 95
         array (
96
-          0 => 
97
-          array (
96
+            0 => 
97
+            array (
98 98
             'name' => 'contact',
99 99
             'label' => 'LBL_CONTACT',
100
-          ),
101
-          1 => 
102
-          array (
100
+            ),
101
+            1 => 
102
+            array (
103 103
             'name' => 'url',
104 104
             'label' => 'LBL_URL',
105
-          ),
105
+            ),
106 106
         ),
107 107
         5 => 
108 108
         array (
109
-          0 => 
110
-          array (
109
+            0 => 
110
+            array (
111 111
             'name' => 'description',
112 112
             'label' => 'LBL_DESCRIPTION',
113
-          ),
113
+            ),
114 114
         ),
115 115
         6 => 
116 116
         array (
117
-          0 => 
118
-          array (
117
+            0 => 
118
+            array (
119 119
             'name' => 'product_image',
120 120
             'label' => 'LBL_PRODUCT_IMAGE',
121 121
             'customCode' => '<img src="{$fields.product_image.value}"/>',
122
-          ),
122
+            ),
123 123
         ),
124
-      ),
124
+        ),
125
+    ),
125 126
     ),
126
-  ),
127 127
 );
128 128
 ?>
Please login to merge, or discard this patch.
Spacing   +30 added lines, -30 removed lines patch added patch discarded remove patch
@@ -1,15 +1,15 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 $module_name = 'AOS_Products';
3 3
 $viewdefs [$module_name] = 
4
-array (
4
+array(
5 5
   'DetailView' => 
6
-  array (
6
+  array(
7 7
     'templateMeta' => 
8
-    array (
8
+    array(
9 9
       'form' => 
10
-      array (
10
+      array(
11 11
         'buttons' => 
12
-        array (
12
+        array(
13 13
           0 => 'EDIT',
14 14
           1 => 'DUPLICATE',
15 15
           2 => 'DELETE',
@@ -17,105 +17,105 @@  discard block
 block discarded – undo
17 17
       ),
18 18
       'maxColumns' => '2',
19 19
       'widths' => 
20
-      array (
20
+      array(
21 21
         0 => 
22
-        array (
22
+        array(
23 23
           'label' => '10',
24 24
           'field' => '30',
25 25
         ),
26 26
         1 => 
27
-        array (
27
+        array(
28 28
           'label' => '10',
29 29
           'field' => '30',
30 30
         ),
31 31
       ),
32 32
       'useTabs' => true,
33 33
       'tabDefs' => 
34
-      array (
34
+      array(
35 35
         'DEFAULT' => 
36
-        array (
36
+        array(
37 37
           'newTab' => true,
38 38
           'panelDefault' => 'expanded',
39 39
         ),
40 40
       ),
41 41
     ),
42 42
     'panels' => 
43
-    array (
43
+    array(
44 44
       'default' => 
45
-      array (
45
+      array(
46 46
         0 => 
47
-        array (
47
+        array(
48 48
           0 => 
49
-          array (
49
+          array(
50 50
             'name' => 'name',
51 51
             'label' => 'LBL_NAME',
52 52
           ),
53 53
           1 => 
54
-          array (
54
+          array(
55 55
             'name' => 'part_number',
56 56
             'label' => 'LBL_PART_NUMBER',
57 57
           ),
58 58
         ),
59 59
         1 => 
60
-        array (
60
+        array(
61 61
           0 => 
62
-          array (
62
+          array(
63 63
             'name' => 'aos_product_category_name',
64 64
             'label' => 'LBL_AOS_PRODUCT_CATEGORYS_NAME',
65 65
           ),
66 66
           1 => 
67
-          array (
67
+          array(
68 68
             'name' => 'type',
69 69
             'label' => 'LBL_TYPE',
70 70
           ),
71 71
         ),
72 72
         2 => 
73
-        array (
73
+        array(
74 74
           0 => 
75
-          array (
75
+          array(
76 76
             'name' => 'currency_id',
77 77
             'studio' => 'visible',
78 78
             'label' => 'LBL_CURRENCY',
79 79
           ),
80 80
         ),
81 81
         3 => 
82
-        array (
82
+        array(
83 83
           0 => 
84
-          array (
84
+          array(
85 85
             'name' => 'cost',
86 86
             'label' => 'LBL_COST',
87 87
           ),
88 88
           1 => 
89
-          array (
89
+          array(
90 90
             'name' => 'price',
91 91
             'label' => 'LBL_PRICE',
92 92
           ),
93 93
         ),
94 94
         4 => 
95
-        array (
95
+        array(
96 96
           0 => 
97
-          array (
97
+          array(
98 98
             'name' => 'contact',
99 99
             'label' => 'LBL_CONTACT',
100 100
           ),
101 101
           1 => 
102
-          array (
102
+          array(
103 103
             'name' => 'url',
104 104
             'label' => 'LBL_URL',
105 105
           ),
106 106
         ),
107 107
         5 => 
108
-        array (
108
+        array(
109 109
           0 => 
110
-          array (
110
+          array(
111 111
             'name' => 'description',
112 112
             'label' => 'LBL_DESCRIPTION',
113 113
           ),
114 114
         ),
115 115
         6 => 
116
-        array (
116
+        array(
117 117
           0 => 
118
-          array (
118
+          array(
119 119
             'name' => 'product_image',
120 120
             'label' => 'LBL_PRODUCT_IMAGE',
121 121
             'customCode' => '<img src="{$fields.product_image.value}"/>',
Please login to merge, or discard this patch.
modules/AOS_Products/metadata/quickcreatedefs.php 2 patches
Indentation   +54 added lines, -54 removed lines patch added patch discarded remove patch
@@ -2,115 +2,115 @@
 block discarded – undo
2 2
 $module_name = 'AOS_Products';
3 3
 $viewdefs [$module_name] = 
4 4
 array (
5
-  'QuickCreate' => 
6
-  array (
5
+    'QuickCreate' => 
6
+    array (
7 7
     'templateMeta' => 
8 8
     array (
9
-      'maxColumns' => '2',
10
-      'widths' => 
11
-      array (
9
+        'maxColumns' => '2',
10
+        'widths' => 
11
+        array (
12 12
         0 => 
13 13
         array (
14
-          'label' => '10',
15
-          'field' => '30',
14
+            'label' => '10',
15
+            'field' => '30',
16 16
         ),
17 17
         1 => 
18 18
         array (
19
-          'label' => '10',
20
-          'field' => '30',
19
+            'label' => '10',
20
+            'field' => '30',
21
+        ),
21 22
         ),
22
-      ),
23
-      'form' => 
24
-      array (
23
+        'form' => 
24
+        array (
25 25
         'enctype' => 'multipart/form-data',
26 26
         'headerTpl' => 'modules/AOS_Products/tpls/EditViewHeader.tpl',
27
-      ),
28
-      'includes' => 
29
-      array (
27
+        ),
28
+        'includes' => 
29
+        array (
30 30
         0 => 
31 31
         array (
32
-          'file' => 'modules/AOS_Products/js/products.js',
32
+            'file' => 'modules/AOS_Products/js/products.js',
33 33
         ),
34
-      ),
35
-      'useTabs' => false,
36
-      'tabDefs' => 
37
-      array (
34
+        ),
35
+        'useTabs' => false,
36
+        'tabDefs' => 
37
+        array (
38 38
         'DEFAULT' => 
39 39
         array (
40
-          'newTab' => false,
41
-          'panelDefault' => 'expanded',
40
+            'newTab' => false,
41
+            'panelDefault' => 'expanded',
42
+        ),
42 43
         ),
43
-      ),
44 44
     ),
45 45
     'panels' => 
46 46
     array (
47
-      'default' => 
48
-      array (
47
+        'default' => 
48
+        array (
49 49
         0 => 
50 50
         array (
51
-          0 => 
52
-          array (
51
+            0 => 
52
+            array (
53 53
             'name' => 'name',
54 54
             'label' => 'LBL_NAME',
55
-          ),
56
-          1 => 
57
-          array (
55
+            ),
56
+            1 => 
57
+            array (
58 58
             'name' => 'part_number',
59 59
             'label' => 'LBL_PART_NUMBER',
60
-          ),
60
+            ),
61 61
         ),
62 62
         1 => 
63 63
         array (
64
-          0 => 
65
-          array (
64
+            0 => 
65
+            array (
66 66
             'name' => 'url',
67 67
             'label' => 'LBL_URL',
68
-          ),
69
-          1 => 
70
-          array (
68
+            ),
69
+            1 => 
70
+            array (
71 71
             'name' => 'type',
72 72
             'label' => 'LBL_TYPE',
73
-          ),
73
+            ),
74 74
         ),
75 75
         2 => 
76 76
         array (
77
-          0 => 
78
-          array (
77
+            0 => 
78
+            array (
79 79
             'name' => 'cost',
80 80
             'label' => 'LBL_COST',
81
-          ),
82
-          1 => 
83
-          array (
81
+            ),
82
+            1 => 
83
+            array (
84 84
             'name' => 'price',
85 85
             'label' => 'LBL_PRICE',
86
-          ),
86
+            ),
87 87
         ),
88 88
         3 => 
89 89
         array (
90
-          0 => 
91
-          array (
90
+            0 => 
91
+            array (
92 92
             'name' => 'contact',
93 93
             'label' => 'LBL_CONTACT',
94
-          ),
94
+            ),
95 95
         ),
96 96
         4 => 
97 97
         array (
98
-          0 => 
99
-          array (
98
+            0 => 
99
+            array (
100 100
             'name' => 'description',
101 101
             'label' => 'LBL_DESCRIPTION',
102
-          ),
102
+            ),
103 103
         ),
104 104
         5 => 
105 105
         array (
106
-          0 => 
107
-          array (
106
+            0 => 
107
+            array (
108 108
             'name' => 'product_image',
109 109
             'customCode' => '{$PRODUCT_IMAGE}',
110
-          ),
110
+            ),
111
+        ),
111 112
         ),
112
-      ),
113 113
     ),
114
-  ),
114
+    ),
115 115
 );
116 116
 ?>
Please login to merge, or discard this patch.
Spacing   +28 added lines, -28 removed lines patch added patch discarded remove patch
@@ -1,110 +1,110 @@
 block discarded – undo
1 1
 <?php
2 2
 $module_name = 'AOS_Products';
3 3
 $viewdefs [$module_name] = 
4
-array (
4
+array(
5 5
   'QuickCreate' => 
6
-  array (
6
+  array(
7 7
     'templateMeta' => 
8
-    array (
8
+    array(
9 9
       'maxColumns' => '2',
10 10
       'widths' => 
11
-      array (
11
+      array(
12 12
         0 => 
13
-        array (
13
+        array(
14 14
           'label' => '10',
15 15
           'field' => '30',
16 16
         ),
17 17
         1 => 
18
-        array (
18
+        array(
19 19
           'label' => '10',
20 20
           'field' => '30',
21 21
         ),
22 22
       ),
23 23
       'form' => 
24
-      array (
24
+      array(
25 25
         'enctype' => 'multipart/form-data',
26 26
         'headerTpl' => 'modules/AOS_Products/tpls/EditViewHeader.tpl',
27 27
       ),
28 28
       'includes' => 
29
-      array (
29
+      array(
30 30
         0 => 
31
-        array (
31
+        array(
32 32
           'file' => 'modules/AOS_Products/js/products.js',
33 33
         ),
34 34
       ),
35 35
       'useTabs' => false,
36 36
       'tabDefs' => 
37
-      array (
37
+      array(
38 38
         'DEFAULT' => 
39
-        array (
39
+        array(
40 40
           'newTab' => false,
41 41
           'panelDefault' => 'expanded',
42 42
         ),
43 43
       ),
44 44
     ),
45 45
     'panels' => 
46
-    array (
46
+    array(
47 47
       'default' => 
48
-      array (
48
+      array(
49 49
         0 => 
50
-        array (
50
+        array(
51 51
           0 => 
52
-          array (
52
+          array(
53 53
             'name' => 'name',
54 54
             'label' => 'LBL_NAME',
55 55
           ),
56 56
           1 => 
57
-          array (
57
+          array(
58 58
             'name' => 'part_number',
59 59
             'label' => 'LBL_PART_NUMBER',
60 60
           ),
61 61
         ),
62 62
         1 => 
63
-        array (
63
+        array(
64 64
           0 => 
65
-          array (
65
+          array(
66 66
             'name' => 'url',
67 67
             'label' => 'LBL_URL',
68 68
           ),
69 69
           1 => 
70
-          array (
70
+          array(
71 71
             'name' => 'type',
72 72
             'label' => 'LBL_TYPE',
73 73
           ),
74 74
         ),
75 75
         2 => 
76
-        array (
76
+        array(
77 77
           0 => 
78
-          array (
78
+          array(
79 79
             'name' => 'cost',
80 80
             'label' => 'LBL_COST',
81 81
           ),
82 82
           1 => 
83
-          array (
83
+          array(
84 84
             'name' => 'price',
85 85
             'label' => 'LBL_PRICE',
86 86
           ),
87 87
         ),
88 88
         3 => 
89
-        array (
89
+        array(
90 90
           0 => 
91
-          array (
91
+          array(
92 92
             'name' => 'contact',
93 93
             'label' => 'LBL_CONTACT',
94 94
           ),
95 95
         ),
96 96
         4 => 
97
-        array (
97
+        array(
98 98
           0 => 
99
-          array (
99
+          array(
100 100
             'name' => 'description',
101 101
             'label' => 'LBL_DESCRIPTION',
102 102
           ),
103 103
         ),
104 104
         5 => 
105
-        array (
105
+        array(
106 106
           0 => 
107
-          array (
107
+          array(
108 108
             'name' => 'product_image',
109 109
             'customCode' => '{$PRODUCT_IMAGE}',
110 110
           ),
Please login to merge, or discard this patch.
modules/AOS_Products/metadata/metafiles.php 2 patches
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -32,11 +32,11 @@
 block discarded – undo
32 32
  */
33 33
 $module_name = 'AOS_Products';
34 34
  $metafiles[$module_name] = array(
35
-	'detailviewdefs'  => 	'modules/' . $module_name . '/metadata/detailviewdefs.php', 	
36
-	'editviewdefs'    => 	'modules/' . $module_name . '/metadata/editviewdefs.php',
37
- 	'listviewdefs'    => 	'modules/' . $module_name . '/metadata/listviewdefs.php',
38
- 	'searchdefs'      =>    'modules/' . $module_name . '/metadata/searchdefs.php',
39
- 	'popupdefs'	      =>    'modules/' . $module_name . '/metadata/popupdefs.php',
40
- 	'searchfields'	  =>    'modules/' . $module_name . '/metadata/SearchFields.php',
35
+	'detailviewdefs'  => 	'modules/'.$module_name.'/metadata/detailviewdefs.php', 	
36
+	'editviewdefs'    => 	'modules/'.$module_name.'/metadata/editviewdefs.php',
37
+ 	'listviewdefs'    => 	'modules/'.$module_name.'/metadata/listviewdefs.php',
38
+ 	'searchdefs'      =>    'modules/'.$module_name.'/metadata/searchdefs.php',
39
+ 	'popupdefs'	      =>    'modules/'.$module_name.'/metadata/popupdefs.php',
40
+ 	'searchfields'	  =>    'modules/'.$module_name.'/metadata/SearchFields.php',
41 41
  );
42 42
 ?>
Please login to merge, or discard this patch.
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -31,12 +31,12 @@
 block discarded – undo
31 31
  * Window - Preferences - PHPeclipse - PHP - Code Templates
32 32
  */
33 33
 $module_name = 'AOS_Products';
34
- $metafiles[$module_name] = array(
35
-	'detailviewdefs'  => 	'modules/' . $module_name . '/metadata/detailviewdefs.php', 	
36
-	'editviewdefs'    => 	'modules/' . $module_name . '/metadata/editviewdefs.php',
37
- 	'listviewdefs'    => 	'modules/' . $module_name . '/metadata/listviewdefs.php',
38
- 	'searchdefs'      =>    'modules/' . $module_name . '/metadata/searchdefs.php',
39
- 	'popupdefs'	      =>    'modules/' . $module_name . '/metadata/popupdefs.php',
40
- 	'searchfields'	  =>    'modules/' . $module_name . '/metadata/SearchFields.php',
41
- );
34
+    $metafiles[$module_name] = array(
35
+    'detailviewdefs'  => 	'modules/' . $module_name . '/metadata/detailviewdefs.php', 	
36
+    'editviewdefs'    => 	'modules/' . $module_name . '/metadata/editviewdefs.php',
37
+        'listviewdefs'    => 	'modules/' . $module_name . '/metadata/listviewdefs.php',
38
+        'searchdefs'      =>    'modules/' . $module_name . '/metadata/searchdefs.php',
39
+        'popupdefs'	      =>    'modules/' . $module_name . '/metadata/popupdefs.php',
40
+        'searchfields'	  =>    'modules/' . $module_name . '/metadata/SearchFields.php',
41
+    );
42 42
 ?>
Please login to merge, or discard this patch.