@@ -1,6 +1,6 @@ |
||
1 | 1 | <!-- snippets --> |
2 | 2 | <?php |
3 | -if( ! defined('IN_MANAGER_MODE') || IN_MANAGER_MODE !== true) { |
|
3 | +if (!defined('IN_MANAGER_MODE') || IN_MANAGER_MODE !== true) { |
|
4 | 4 | die("<b>INCLUDE_ORDERING_ERROR</b><br /><br />Please use the EVO Content Manager instead of accessing this file directly."); |
5 | 5 | } |
6 | 6 |
@@ -1,23 +1,23 @@ discard block |
||
1 | 1 | <?php |
2 | -if( ! defined('IN_MANAGER_MODE') || IN_MANAGER_MODE !== true) { |
|
2 | +if (!defined('IN_MANAGER_MODE') || IN_MANAGER_MODE !== true) { |
|
3 | 3 | die("<b>INCLUDE_ORDERING_ERROR</b><br /><br />Please use the EVO Content Manager instead of accessing this file directly."); |
4 | 4 | } |
5 | 5 | |
6 | 6 | $tpl = array( |
7 | - 'viewForm' => file_get_contents(MODX_MANAGER_PATH . 'actions/resources/tpl_viewForm.tpl'), |
|
8 | - 'panelGroup' => file_get_contents(MODX_MANAGER_PATH . 'actions/resources/tpl_panelGroup.tpl'), |
|
9 | - 'panelHeading' => file_get_contents(MODX_MANAGER_PATH . 'actions/resources/tpl_panelHeading.tpl'), |
|
10 | - 'panelCollapse' => file_get_contents(MODX_MANAGER_PATH . 'actions/resources/tpl_panelCollapse.tpl'), |
|
11 | - 'elementsRow' => file_get_contents(MODX_MANAGER_PATH . 'actions/resources/tpl_elementsRow.tpl') |
|
7 | + 'viewForm' => file_get_contents(MODX_MANAGER_PATH.'actions/resources/tpl_viewForm.tpl'), |
|
8 | + 'panelGroup' => file_get_contents(MODX_MANAGER_PATH.'actions/resources/tpl_panelGroup.tpl'), |
|
9 | + 'panelHeading' => file_get_contents(MODX_MANAGER_PATH.'actions/resources/tpl_panelHeading.tpl'), |
|
10 | + 'panelCollapse' => file_get_contents(MODX_MANAGER_PATH.'actions/resources/tpl_panelCollapse.tpl'), |
|
11 | + 'elementsRow' => file_get_contents(MODX_MANAGER_PATH.'actions/resources/tpl_elementsRow.tpl') |
|
12 | 12 | ); |
13 | 13 | |
14 | -function parsePh($tpl, $ph) { |
|
14 | +function parsePh($tpl, $ph){ |
|
15 | 15 | global $modx, $_lang; |
16 | 16 | $tpl = $modx->parseText($tpl, $_lang, '[%', '%]'); |
17 | 17 | return $modx->parseText($tpl, $ph); |
18 | 18 | } |
19 | 19 | |
20 | -function renderViewSwitchButtons($cssId) { |
|
20 | +function renderViewSwitchButtons($cssId){ |
|
21 | 21 | global $modx, $_lang, $tpl; |
22 | 22 | |
23 | 23 | return parsePh($tpl['viewForm'], array( |
@@ -25,19 +25,19 @@ discard block |
||
25 | 25 | )); |
26 | 26 | } |
27 | 27 | |
28 | -function createResourceList($resourceTable, $resources) { |
|
28 | +function createResourceList($resourceTable, $resources){ |
|
29 | 29 | global $modx, $_lang, $_style, $modx_textdir, $tpl; |
30 | 30 | |
31 | 31 | $items = isset($resources->items[$resourceTable]) ? $resources->items[$resourceTable] : false; |
32 | 32 | |
33 | - if( ! is_array($items) || empty($items)) { |
|
33 | + if (!is_array($items) || empty($items)) { |
|
34 | 34 | return $_lang['no_results']; |
35 | 35 | } |
36 | 36 | |
37 | 37 | // Prepare elements- and categories-list |
38 | 38 | $elements = array(); |
39 | 39 | $categories = array(); |
40 | - foreach($items as $row) { |
|
40 | + foreach ($items as $row) { |
|
41 | 41 | $catid = $row['catid'] ? $row['catid'] : 0; |
42 | 42 | $categories[$catid] = array('name' => stripslashes($row['category'])); |
43 | 43 | $elements[$catid][] = prepareElementRowPh($row, $resourceTable, $resources); |
@@ -45,18 +45,18 @@ discard block |
||
45 | 45 | |
46 | 46 | // Now render categories / panel-collapse |
47 | 47 | $panelGroup = ''; |
48 | - foreach($elements as $catid => $elList) { |
|
48 | + foreach ($elements as $catid => $elList) { |
|
49 | 49 | // Add panel-heading / category-collapse to output |
50 | 50 | $panelGroup .= parsePh($tpl['panelHeading'], array( |
51 | 51 | 'tab' => $resourceTable, |
52 | 52 | 'category' => $categories[$catid]['name'], |
53 | - 'categoryid' => $catid != '' ? ' <small>(' . $catid . ')</small>' : '', |
|
53 | + 'categoryid' => $catid != '' ? ' <small>('.$catid.')</small>' : '', |
|
54 | 54 | 'catid' => $catid, |
55 | 55 | )); |
56 | 56 | |
57 | 57 | // Prepare content for panel-collapse |
58 | 58 | $panelCollapse = ''; |
59 | - foreach($elList as $el) { |
|
59 | + foreach ($elList as $el) { |
|
60 | 60 | $panelCollapse .= parsePh($tpl['elementsRow'], $el); |
61 | 61 | } |
62 | 62 | |
@@ -74,30 +74,30 @@ discard block |
||
74 | 74 | )); |
75 | 75 | } |
76 | 76 | |
77 | -function createCombinedView($resources) { |
|
77 | +function createCombinedView($resources){ |
|
78 | 78 | global $modx, $_lang, $_style, $modx_textdir; |
79 | 79 | |
80 | 80 | $itemsPerCategory = isset($resources->itemsPerCategory) ? $resources->itemsPerCategory : false; |
81 | 81 | $types = isset($resources->types) ? $resources->types : false; |
82 | 82 | $categories = isset($resources->categories) ? $resources->categories : false; |
83 | 83 | |
84 | - if(!$itemsPerCategory) { |
|
84 | + if (!$itemsPerCategory) { |
|
85 | 85 | return $_lang['no_results']; |
86 | 86 | } |
87 | 87 | |
88 | 88 | $tpl = array( |
89 | - 'panelGroup' => file_get_contents(MODX_MANAGER_PATH . 'actions/resources/tpl_panelGroup.tpl'), |
|
90 | - 'panelHeading' => file_get_contents(MODX_MANAGER_PATH . 'actions/resources/tpl_panelHeading.tpl'), |
|
91 | - 'panelCollapse' => file_get_contents(MODX_MANAGER_PATH . 'actions/resources/tpl_panelCollapse.tpl'), |
|
92 | - 'elementsRow' => file_get_contents(MODX_MANAGER_PATH . 'actions/resources/tpl_elementsRow.tpl'), |
|
89 | + 'panelGroup' => file_get_contents(MODX_MANAGER_PATH.'actions/resources/tpl_panelGroup.tpl'), |
|
90 | + 'panelHeading' => file_get_contents(MODX_MANAGER_PATH.'actions/resources/tpl_panelHeading.tpl'), |
|
91 | + 'panelCollapse' => file_get_contents(MODX_MANAGER_PATH.'actions/resources/tpl_panelCollapse.tpl'), |
|
92 | + 'elementsRow' => file_get_contents(MODX_MANAGER_PATH.'actions/resources/tpl_elementsRow.tpl'), |
|
93 | 93 | ); |
94 | 94 | |
95 | 95 | // Easily loop through $itemsPerCategory-Array |
96 | 96 | $panelGroup = ''; |
97 | - foreach($categories as $catid => $category) { |
|
97 | + foreach ($categories as $catid => $category) { |
|
98 | 98 | // Prepare collapse content / elements-list |
99 | 99 | $panelCollapse = ''; |
100 | - foreach($itemsPerCategory[$catid] as $el) { |
|
100 | + foreach ($itemsPerCategory[$catid] as $el) { |
|
101 | 101 | $resourceTable = $el['type']; |
102 | 102 | $ph = prepareElementRowPh($el, $resourceTable, $resources); |
103 | 103 | $panelCollapse .= parsePh($tpl['elementsRow'], $ph); |
@@ -107,7 +107,7 @@ discard block |
||
107 | 107 | $panelGroup .= parsePh($tpl['panelHeading'], array( |
108 | 108 | 'tab' => 'categories_list', |
109 | 109 | 'category' => $categories[$catid], |
110 | - 'categoryid' => $catid != '' ? ' <small>(' . $catid . ')</small>' : '', |
|
110 | + 'categoryid' => $catid != '' ? ' <small>('.$catid.')</small>' : '', |
|
111 | 111 | 'catid' => $catid, |
112 | 112 | )); |
113 | 113 | |
@@ -125,7 +125,7 @@ discard block |
||
125 | 125 | )); |
126 | 126 | } |
127 | 127 | |
128 | -function prepareElementRowPh($row, $resourceTable, $resources) { |
|
128 | +function prepareElementRowPh($row, $resourceTable, $resources){ |
|
129 | 129 | global $modx, $modx_textdir, $_style, $_lang; |
130 | 130 | |
131 | 131 | $types = isset($resources->types[$resourceTable]) ? $resources->types[$resourceTable] : false; |
@@ -133,32 +133,32 @@ discard block |
||
133 | 133 | $class = ''; |
134 | 134 | $_lang["confirm_delete"] = $_lang["delete"]; |
135 | 135 | |
136 | - if($resourceTable == 'site_templates') { |
|
136 | + if ($resourceTable == 'site_templates') { |
|
137 | 137 | $class = $row['selectable'] ? '' : 'disabledPlugin'; |
138 | 138 | $lockElementType = 1; |
139 | 139 | $_lang["confirm_delete"] = $_lang["confirm_delete_template"]; |
140 | 140 | } |
141 | - if($resourceTable == 'site_tmplvars') { |
|
141 | + if ($resourceTable == 'site_tmplvars') { |
|
142 | 142 | $class = $row['reltpl'] ? '' : 'disabledPlugin'; |
143 | 143 | $lockElementType = 2; |
144 | 144 | $_lang["confirm_delete"] = $_lang["confirm_delete_tmplvars"]; |
145 | 145 | } |
146 | - if($resourceTable == 'site_htmlsnippets') { |
|
146 | + if ($resourceTable == 'site_htmlsnippets') { |
|
147 | 147 | $class = $row['disabled'] ? 'disabledPlugin' : ''; |
148 | 148 | $lockElementType = 3; |
149 | 149 | $_lang["confirm_delete"] = $_lang["confirm_delete_htmlsnippet"]; |
150 | 150 | } |
151 | - if($resourceTable == 'site_snippets') { |
|
151 | + if ($resourceTable == 'site_snippets') { |
|
152 | 152 | $class = $row['disabled'] ? 'disabledPlugin' : ''; |
153 | 153 | $lockElementType = 4; |
154 | 154 | $_lang["confirm_delete"] = $_lang["confirm_delete_snippet"]; |
155 | 155 | } |
156 | - if($resourceTable == 'site_plugins') { |
|
156 | + if ($resourceTable == 'site_plugins') { |
|
157 | 157 | $class = $row['disabled'] ? 'disabledPlugin' : ''; |
158 | 158 | $lockElementType = 5; |
159 | 159 | $_lang["confirm_delete"] = $_lang["confirm_delete_plugin"]; |
160 | 160 | } |
161 | - if($resourceTable == 'site_modules') { |
|
161 | + if ($resourceTable == 'site_modules') { |
|
162 | 162 | $class = $row['disabled'] ? '' : 'disabledPlugin'; |
163 | 163 | $_lang["confirm_delete"] = $_lang["confirm_delete_module"]; |
164 | 164 | } |
@@ -166,65 +166,65 @@ discard block |
||
166 | 166 | // Prepare displaying user-locks |
167 | 167 | $lockedByUser = ''; |
168 | 168 | $rowLock = $modx->elementIsLocked($lockElementType, $row['id'], true); |
169 | - if($rowLock && $modx->hasPermission('display_locks')) { |
|
170 | - if($rowLock['sid'] == $modx->sid) { |
|
169 | + if ($rowLock && $modx->hasPermission('display_locks')) { |
|
170 | + if ($rowLock['sid'] == $modx->sid) { |
|
171 | 171 | $title = $modx->parseText($_lang["lock_element_editing"], array( |
172 | - 'element_type' => $_lang["lock_element_type_" . $lockElementType], |
|
172 | + 'element_type' => $_lang["lock_element_type_".$lockElementType], |
|
173 | 173 | 'lasthit_df' => $rowLock['lasthit_df'] |
174 | 174 | )); |
175 | - $lockedByUser = '<span title="' . $title . '" class="editResource" style="cursor:context-menu;">' . $_style['tree_preview_resource'] . '</span> '; |
|
175 | + $lockedByUser = '<span title="'.$title.'" class="editResource" style="cursor:context-menu;">'.$_style['tree_preview_resource'].'</span> '; |
|
176 | 176 | } else { |
177 | 177 | $title = $modx->parseText($_lang["lock_element_locked_by"], array( |
178 | - 'element_type' => $_lang["lock_element_type_" . $lockElementType], |
|
178 | + 'element_type' => $_lang["lock_element_type_".$lockElementType], |
|
179 | 179 | 'username' => $rowLock['username'], |
180 | 180 | 'lasthit_df' => $rowLock['lasthit_df'] |
181 | 181 | )); |
182 | - if($modx->hasPermission('remove_locks')) { |
|
183 | - $lockedByUser = '<a href="javascript:;" onclick="unlockElement(' . $lockElementType . ', ' . $row['id'] . ', this);return false;" title="' . $title . '" class="lockedResource"><i class="' . $_style['icons_secured'] . '"></i></a>'; |
|
182 | + if ($modx->hasPermission('remove_locks')) { |
|
183 | + $lockedByUser = '<a href="javascript:;" onclick="unlockElement('.$lockElementType.', '.$row['id'].', this);return false;" title="'.$title.'" class="lockedResource"><i class="'.$_style['icons_secured'].'"></i></a>'; |
|
184 | 184 | } else { |
185 | - $lockedByUser = '<span title="' . $title . '" class="lockedResource" style="cursor:context-menu;"><i class="' . $_style['icons_secured'] . '"></i></span>'; |
|
185 | + $lockedByUser = '<span title="'.$title.'" class="lockedResource" style="cursor:context-menu;"><i class="'.$_style['icons_secured'].'"></i></span>'; |
|
186 | 186 | } |
187 | 187 | } |
188 | 188 | } |
189 | - if($lockedByUser) { |
|
190 | - $lockedByUser = '<div class="lockCell">' . $lockedByUser . '</div>'; |
|
189 | + if ($lockedByUser) { |
|
190 | + $lockedByUser = '<div class="lockCell">'.$lockedByUser.'</div>'; |
|
191 | 191 | } |
192 | 192 | |
193 | 193 | // Caption |
194 | - if($resourceTable == 'site_tmplvars') { |
|
195 | - $caption = !empty($row['description']) ? ' ' . $row['caption'] . ' <small>(' . $row['description'] . ')</small>' : ' ' . $row['caption']; |
|
194 | + if ($resourceTable == 'site_tmplvars') { |
|
195 | + $caption = !empty($row['description']) ? ' '.$row['caption'].' <small>('.$row['description'].')</small>' : ' '.$row['caption']; |
|
196 | 196 | } else { |
197 | - $caption = !empty($row['description']) ? ' ' . $row['description'] : ''; |
|
197 | + $caption = !empty($row['description']) ? ' '.$row['description'] : ''; |
|
198 | 198 | } |
199 | 199 | |
200 | 200 | // Special marks |
201 | 201 | $tplInfo = array(); |
202 | - if($row['locked']) { |
|
202 | + if ($row['locked']) { |
|
203 | 203 | $tplInfo[] = $_lang['locked']; |
204 | 204 | } |
205 | - if($row['id'] == $modx->config['default_template'] && $resourceTable == 'site_templates') { |
|
205 | + if ($row['id'] == $modx->config['default_template'] && $resourceTable == 'site_templates') { |
|
206 | 206 | $tplInfo[] = $_lang['defaulttemplate_title']; |
207 | 207 | } |
208 | - $marks = !empty($tplInfo) ? ' <em>(' . join(', ', $tplInfo) . ')</em>' : ''; |
|
208 | + $marks = !empty($tplInfo) ? ' <em>('.join(', ', $tplInfo).')</em>' : ''; |
|
209 | 209 | |
210 | 210 | /* row buttons */ |
211 | 211 | $buttons = ''; |
212 | - if($modx->hasPermission($types['actions']['edit'][1])) { |
|
213 | - $buttons .= '<li><a title="' . $_lang["edit_resource"] . '" href="index.php?a=' . $types['actions']['edit'][0] . '&id=' . $row['id'] . '"><i class="fa fa-edit fa-fw"></i></a></li>'; |
|
212 | + if ($modx->hasPermission($types['actions']['edit'][1])) { |
|
213 | + $buttons .= '<li><a title="'.$_lang["edit_resource"].'" href="index.php?a='.$types['actions']['edit'][0].'&id='.$row['id'].'"><i class="fa fa-edit fa-fw"></i></a></li>'; |
|
214 | 214 | } |
215 | - if($modx->hasPermission($types['actions']['duplicate'][1])) { |
|
216 | - $buttons .= '<li><a onclick="return confirm(\'' . $_lang["confirm_duplicate_record"] . '\')" title="' . $_lang["resource_duplicate"] . '" href="index.php?a=' . $types['actions']['duplicate'][0] . '&id=' . $row['id'] . '"><i class="fa fa-clone fa-fw"></i></a></li>'; |
|
215 | + if ($modx->hasPermission($types['actions']['duplicate'][1])) { |
|
216 | + $buttons .= '<li><a onclick="return confirm(\''.$_lang["confirm_duplicate_record"].'\')" title="'.$_lang["resource_duplicate"].'" href="index.php?a='.$types['actions']['duplicate'][0].'&id='.$row['id'].'"><i class="fa fa-clone fa-fw"></i></a></li>'; |
|
217 | 217 | } |
218 | - if($modx->hasPermission($types['actions']['remove'][1])) { |
|
219 | - $buttons .= '<li><a onclick="return confirm(\'' . $_lang["confirm_delete"] . '\')" title="' . $_lang["delete"] . '" href="index.php?a=' . $types['actions']['remove'][0] . '&id=' . $row['id'] . '"><i class="fa fa-trash fa-fw"></i></a></li>'; |
|
218 | + if ($modx->hasPermission($types['actions']['remove'][1])) { |
|
219 | + $buttons .= '<li><a onclick="return confirm(\''.$_lang["confirm_delete"].'\')" title="'.$_lang["delete"].'" href="index.php?a='.$types['actions']['remove'][0].'&id='.$row['id'].'"><i class="fa fa-trash fa-fw"></i></a></li>'; |
|
220 | 220 | } |
221 | - $buttons = $buttons ? '<div class="btnCell"><ul class="elements_buttonbar">' . $buttons . '</ul></div>' : ''; |
|
221 | + $buttons = $buttons ? '<div class="btnCell"><ul class="elements_buttonbar">'.$buttons.'</ul></div>' : ''; |
|
222 | 222 | |
223 | 223 | $catid = $row['catid'] ? $row['catid'] : 0; |
224 | 224 | |
225 | 225 | // Placeholders for elements-row |
226 | 226 | return array( |
227 | - 'class' => $class ? ' class="' . $class . '"' : '', |
|
227 | + 'class' => $class ? ' class="'.$class.'"' : '', |
|
228 | 228 | 'lockedByUser' => $lockedByUser, |
229 | 229 | 'name' => $row['name'], |
230 | 230 | 'caption' => $caption, |
@@ -1,77 +1,77 @@ discard block |
||
1 | 1 | <?php |
2 | -if( ! defined('IN_MANAGER_MODE') || IN_MANAGER_MODE !== true) { |
|
2 | +if (!defined('IN_MANAGER_MODE') || IN_MANAGER_MODE !== true) { |
|
3 | 3 | die("<b>INCLUDE_ORDERING_ERROR</b><br /><br />Please use the EVO Content Manager instead of accessing this file directly."); |
4 | 4 | } |
5 | 5 | |
6 | -class mgrResources { |
|
6 | +class mgrResources{ |
|
7 | 7 | var $types = array(); |
8 | 8 | var $items = array(); |
9 | 9 | var $categories = array(); |
10 | 10 | var $itemsPerCategory = array(); |
11 | 11 | |
12 | - function __construct() { |
|
12 | + function __construct(){ |
|
13 | 13 | $this->setTypes(); |
14 | 14 | $this->queryItemsFromDB(); |
15 | 15 | $this->prepareCategoryArrays(); |
16 | 16 | } |
17 | 17 | |
18 | - function setTypes() { |
|
18 | + function setTypes(){ |
|
19 | 19 | global $_lang; |
20 | - $this->types['site_templates'] = array( |
|
20 | + $this->types['site_templates'] = array( |
|
21 | 21 | 'title'=>$_lang["manage_templates"], |
22 | - 'actions'=>array( 'edit'=>array(16,'edit_template'), 'duplicate'=>array(96,'new_template'), 'remove'=>array(21,'delete_template') ), |
|
23 | - 'permissions'=>array('new_template','edit_template'), |
|
22 | + 'actions'=>array('edit'=>array(16, 'edit_template'), 'duplicate'=>array(96, 'new_template'), 'remove'=>array(21, 'delete_template')), |
|
23 | + 'permissions'=>array('new_template', 'edit_template'), |
|
24 | 24 | 'name'=>'templatename' |
25 | 25 | ); |
26 | - $this->types['site_tmplvars'] = array( |
|
26 | + $this->types['site_tmplvars'] = array( |
|
27 | 27 | 'title'=>$_lang["tmplvars"], |
28 | - 'actions'=>array('edit'=>array(301,'edit_template'), 'duplicate'=>array(304,'edit_template'), 'remove'=>array(303,'edit_template')), |
|
29 | - 'permissions'=>array('new_template','edit_template'), |
|
28 | + 'actions'=>array('edit'=>array(301, 'edit_template'), 'duplicate'=>array(304, 'edit_template'), 'remove'=>array(303, 'edit_template')), |
|
29 | + 'permissions'=>array('new_template', 'edit_template'), |
|
30 | 30 | ); |
31 | 31 | $this->types['site_htmlsnippets'] = array( |
32 | 32 | 'title'=>$_lang["manage_htmlsnippets"], |
33 | - 'actions'=>array('edit'=>array(78,'edit_chunk'), 'duplicate'=>array(97,'new_chunk'), 'remove'=>array(80,'delete_chunk')), |
|
34 | - 'permissions'=>array('new_chunk','edit_chunk'), |
|
33 | + 'actions'=>array('edit'=>array(78, 'edit_chunk'), 'duplicate'=>array(97, 'new_chunk'), 'remove'=>array(80, 'delete_chunk')), |
|
34 | + 'permissions'=>array('new_chunk', 'edit_chunk'), |
|
35 | 35 | ); |
36 | - $this->types['site_snippets'] = array( |
|
36 | + $this->types['site_snippets'] = array( |
|
37 | 37 | 'title'=>$_lang["manage_snippets"], |
38 | - 'actions'=>array('edit'=>array(22,'edit_snippet'), 'duplicate'=>array(98,'new_snippet'), 'remove'=>array(25,'delete_snippet')), |
|
39 | - 'permissions'=>array('new_snippet','edit_snippet'), |
|
38 | + 'actions'=>array('edit'=>array(22, 'edit_snippet'), 'duplicate'=>array(98, 'new_snippet'), 'remove'=>array(25, 'delete_snippet')), |
|
39 | + 'permissions'=>array('new_snippet', 'edit_snippet'), |
|
40 | 40 | ); |
41 | - $this->types['site_plugins'] = array( |
|
41 | + $this->types['site_plugins'] = array( |
|
42 | 42 | 'title'=>$_lang["manage_plugins"], |
43 | - 'actions'=>array('edit'=>array(102,'edit_plugin'), 'duplicate'=>array(105,'new_plugin'), 'remove'=>array(104,'delete_plugin')), |
|
44 | - 'permissions'=>array('new_plugin','edit_plugin'), |
|
43 | + 'actions'=>array('edit'=>array(102, 'edit_plugin'), 'duplicate'=>array(105, 'new_plugin'), 'remove'=>array(104, 'delete_plugin')), |
|
44 | + 'permissions'=>array('new_plugin', 'edit_plugin'), |
|
45 | 45 | ); |
46 | - $this->types['site_modules'] = array( |
|
46 | + $this->types['site_modules'] = array( |
|
47 | 47 | 'title'=>$_lang["manage_modules"], |
48 | - 'actions'=>array('edit'=>array(108,'edit_module'), 'duplicate'=>array(111,'new_module'), 'remove'=>array(110,'delete_module')), |
|
49 | - 'permissions'=>array('new_module','edit_module'), |
|
48 | + 'actions'=>array('edit'=>array(108, 'edit_module'), 'duplicate'=>array(111, 'new_module'), 'remove'=>array(110, 'delete_module')), |
|
49 | + 'permissions'=>array('new_module', 'edit_module'), |
|
50 | 50 | ); |
51 | 51 | } |
52 | 52 | |
53 | - function queryItemsFromDB() { |
|
54 | - foreach($this->types as $resourceTable=>$type) { |
|
55 | - if($this->hasAnyPermissions($type['permissions'])) { |
|
53 | + function queryItemsFromDB(){ |
|
54 | + foreach ($this->types as $resourceTable=>$type) { |
|
55 | + if ($this->hasAnyPermissions($type['permissions'])) { |
|
56 | 56 | $nameField = isset($type['name']) ? $type['name'] : 'name'; |
57 | 57 | $this->items[$resourceTable] = $this->queryResources($resourceTable, $nameField); |
58 | 58 | } |
59 | 59 | } |
60 | 60 | } |
61 | 61 | |
62 | - function hasAnyPermissions($permissions) { |
|
62 | + function hasAnyPermissions($permissions){ |
|
63 | 63 | global $modx; |
64 | 64 | |
65 | - foreach($permissions as $p) |
|
66 | - if($modx->hasPermission($p)) return true; |
|
65 | + foreach ($permissions as $p) |
|
66 | + if ($modx->hasPermission($p)) return true; |
|
67 | 67 | |
68 | 68 | return false; |
69 | 69 | } |
70 | 70 | |
71 | - function queryResources($resourceTable, $nameField = 'name') { |
|
71 | + function queryResources($resourceTable, $nameField = 'name'){ |
|
72 | 72 | global $modx, $_lang; |
73 | 73 | |
74 | - $pluginsql = ($resourceTable == 'site_htmlsnippets' || $resourceTable == 'site_snippets' || $resourceTable == 'site_plugins' || $resourceTable == 'site_modules') ? $resourceTable . '.disabled, ' : ''; |
|
74 | + $pluginsql = ($resourceTable == 'site_htmlsnippets' || $resourceTable == 'site_snippets' || $resourceTable == 'site_plugins' || $resourceTable == 'site_modules') ? $resourceTable.'.disabled, ' : ''; |
|
75 | 75 | |
76 | 76 | $tvsql = ''; |
77 | 77 | $tvjoin = ''; |
@@ -86,14 +86,14 @@ discard block |
||
86 | 86 | |
87 | 87 | $rs = $modx->db->select( |
88 | 88 | "{$sttfield} {$pluginsql} {$tvsql} {$resourceTable}.{$nameField} as name, {$resourceTable}.id, {$resourceTable}.description, {$resourceTable}.locked, {$selectableTemplates}IF(isnull(categories.category),'{$_lang['no_category']}',categories.category) as category, categories.id as catid", |
89 | - $modx->getFullTableName($resourceTable) . " AS {$resourceTable} |
|
90 | - LEFT JOIN " . $modx->getFullTableName('categories') . " AS categories ON {$resourceTable}.category = categories.id {$tvjoin}", |
|
89 | + $modx->getFullTableName($resourceTable)." AS {$resourceTable} |
|
90 | + LEFT JOIN ".$modx->getFullTableName('categories')." AS categories ON {$resourceTable}.category = categories.id {$tvjoin}", |
|
91 | 91 | "", |
92 | 92 | "category,name" |
93 | 93 | ); |
94 | 94 | $limit = $modx->db->getRecordCount($rs); |
95 | 95 | |
96 | - if($limit < 1) return false; |
|
96 | + if ($limit < 1) return false; |
|
97 | 97 | |
98 | 98 | $result = array(); |
99 | 99 | while ($row = $modx->db->getRow($rs)) { |
@@ -102,9 +102,9 @@ discard block |
||
102 | 102 | return $result; |
103 | 103 | } |
104 | 104 | |
105 | - function prepareCategoryArrays() { |
|
106 | - foreach($this->items as $type=>$items) { |
|
107 | - foreach((array)$items as $item) { |
|
105 | + function prepareCategoryArrays(){ |
|
106 | + foreach ($this->items as $type=>$items) { |
|
107 | + foreach ((array) $items as $item) { |
|
108 | 108 | $catid = $item['catid'] ? $item['catid'] : 0; |
109 | 109 | $this->categories[$catid] = $item['category']; |
110 | 110 | |
@@ -117,8 +117,8 @@ discard block |
||
117 | 117 | natcasesort($this->categories); |
118 | 118 | |
119 | 119 | // Now sort by name |
120 | - foreach($this->itemsPerCategory as $catid=>$items) { |
|
121 | - usort($this->itemsPerCategory[$catid], function ($a, $b) { |
|
120 | + foreach ($this->itemsPerCategory as $catid=>$items) { |
|
121 | + usort($this->itemsPerCategory[$catid], function($a, $b){ |
|
122 | 122 | return strcasecmp($a['name'], $b['name']); |
123 | 123 | }); |
124 | 124 | } |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <!-- Templates --> |
2 | 2 | <?php |
3 | -if( ! defined('IN_MANAGER_MODE') || IN_MANAGER_MODE !== true) { |
|
3 | +if (!defined('IN_MANAGER_MODE') || IN_MANAGER_MODE !== true) { |
|
4 | 4 | die("<b>INCLUDE_ORDERING_ERROR</b><br /><br />Please use the EVO Content Manager instead of accessing this file directly."); |
5 | 5 | } |
6 | 6 |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <!-- plugins --> |
2 | 2 | <?php |
3 | -if( ! defined('IN_MANAGER_MODE') || IN_MANAGER_MODE !== true) { |
|
3 | +if (!defined('IN_MANAGER_MODE') || IN_MANAGER_MODE !== true) { |
|
4 | 4 | die("<b>INCLUDE_ORDERING_ERROR</b><br /><br />Please use the EVO Content Manager instead of accessing this file directly."); |
5 | 5 | } |
6 | 6 |
@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -if( ! defined('IN_MANAGER_MODE') || IN_MANAGER_MODE !== true) { |
|
2 | +if (!defined('IN_MANAGER_MODE') || IN_MANAGER_MODE !== true) { |
|
3 | 3 | die("<b>INCLUDE_ORDERING_ERROR</b><br /><br />Please use the EVO Content Manager instead of accessing this file directly."); |
4 | 4 | } |
5 | 5 | if (!$modx->hasPermission('bk_manager')) { |
@@ -9,10 +9,10 @@ discard block |
||
9 | 9 | $dbase = trim($dbase, '`'); |
10 | 10 | |
11 | 11 | if (!isset($modx->config['snapshot_path'])) { |
12 | - if (is_dir(MODX_BASE_PATH . 'temp/backup/')) { |
|
13 | - $modx->config['snapshot_path'] = MODX_BASE_PATH . 'temp/backup/'; |
|
12 | + if (is_dir(MODX_BASE_PATH.'temp/backup/')) { |
|
13 | + $modx->config['snapshot_path'] = MODX_BASE_PATH.'temp/backup/'; |
|
14 | 14 | } else { |
15 | - $modx->config['snapshot_path'] = MODX_BASE_PATH . 'assets/backup/'; |
|
15 | + $modx->config['snapshot_path'] = MODX_BASE_PATH.'assets/backup/'; |
|
16 | 16 | } |
17 | 17 | } |
18 | 18 | |
@@ -23,7 +23,7 @@ discard block |
||
23 | 23 | if ($mode == 'restore1') { |
24 | 24 | if (isset($_POST['textarea']) && !empty($_POST['textarea'])) { |
25 | 25 | $source = trim($_POST['textarea']); |
26 | - $_SESSION['textarea'] = $source . "\n"; |
|
26 | + $_SESSION['textarea'] = $source."\n"; |
|
27 | 27 | } else { |
28 | 28 | $source = file_get_contents($_FILES['sqlfile']['tmp_name']); |
29 | 29 | } |
@@ -31,7 +31,7 @@ discard block |
||
31 | 31 | header('Location: index.php?r=9&a=93'); |
32 | 32 | exit; |
33 | 33 | } elseif ($mode == 'restore2') { |
34 | - $path = $modx->config['snapshot_path'] . $_POST['filename']; |
|
34 | + $path = $modx->config['snapshot_path'].$_POST['filename']; |
|
35 | 35 | if (file_exists($path)) { |
36 | 36 | $source = file_get_contents($path); |
37 | 37 | import_sql($source); |
@@ -77,7 +77,7 @@ discard block |
||
77 | 77 | if (!is_writable(rtrim($modx->config['snapshot_path'], '/'))) { |
78 | 78 | $modx->webAlertAndQuit(parsePlaceholder($_lang["bkmgr_alert_mkdir"], array('snapshot_path' => $modx->config['snapshot_path']))); |
79 | 79 | } |
80 | - $sql = "SHOW TABLE STATUS FROM `{$dbase}` LIKE '" . $modx->db->escape($modx->db->config['table_prefix']) . "%'"; |
|
80 | + $sql = "SHOW TABLE STATUS FROM `{$dbase}` LIKE '".$modx->db->escape($modx->db->config['table_prefix'])."%'"; |
|
81 | 81 | $rs = $modx->db->query($sql); |
82 | 82 | $tables = $modx->db->getColumn('Name', $rs); |
83 | 83 | $today = date('Y-m-d_H-i-s'); |
@@ -109,18 +109,18 @@ discard block |
||
109 | 109 | $modx->webAlertAndQuit('Unable to Backup Database'); |
110 | 110 | } |
111 | 111 | } else { |
112 | - include_once MODX_MANAGER_PATH . "includes/header.inc.php"; // start normal header |
|
112 | + include_once MODX_MANAGER_PATH."includes/header.inc.php"; // start normal header |
|
113 | 113 | } |
114 | 114 | |
115 | 115 | if (isset($_SESSION['result_msg']) && $_SESSION['result_msg'] != '') { |
116 | 116 | switch ($_SESSION['result_msg']) { |
117 | 117 | case 'import_ok': |
118 | - $ph['result_msg_import'] = '<div class="alert alert-success">' . $_lang["bkmgr_import_ok"] . '</div>'; |
|
119 | - $ph['result_msg_snapshot'] = '<div class="alert alert-success">' . $_lang["bkmgr_import_ok"] . '</div>'; |
|
118 | + $ph['result_msg_import'] = '<div class="alert alert-success">'.$_lang["bkmgr_import_ok"].'</div>'; |
|
119 | + $ph['result_msg_snapshot'] = '<div class="alert alert-success">'.$_lang["bkmgr_import_ok"].'</div>'; |
|
120 | 120 | break; |
121 | 121 | case 'snapshot_ok': |
122 | 122 | $ph['result_msg_import'] = ''; |
123 | - $ph['result_msg_snapshot'] = '<div class="alert alert-success">' . $_lang["bkmgr_snapshot_ok"] . '</div>'; |
|
123 | + $ph['result_msg_snapshot'] = '<div class="alert alert-success">'.$_lang["bkmgr_snapshot_ok"].'</div>'; |
|
124 | 124 | break; |
125 | 125 | } |
126 | 126 | $_SESSION['result_msg'] = ''; |
@@ -179,7 +179,7 @@ discard block |
||
179 | 179 | f.style.display = 'none'; |
180 | 180 | } |
181 | 181 | } |
182 | - <?= (isset($_REQUEST['r']) ? " doRefresh(" . $_REQUEST['r'] . ");" : "") ?> |
|
182 | + <?= (isset($_REQUEST['r']) ? " doRefresh(".$_REQUEST['r'].");" : "") ?> |
|
183 | 183 | |
184 | 184 | </script> |
185 | 185 | |
@@ -223,7 +223,7 @@ discard block |
||
223 | 223 | </thead> |
224 | 224 | <tbody> |
225 | 225 | <?php |
226 | - $sql = "SHOW TABLE STATUS FROM `{$dbase}` LIKE '" . $modx->db->escape($modx->db->config['table_prefix']) . "%'"; |
|
226 | + $sql = "SHOW TABLE STATUS FROM `{$dbase}` LIKE '".$modx->db->escape($modx->db->config['table_prefix'])."%'"; |
|
227 | 227 | $rs = $modx->db->query($sql); |
228 | 228 | $i = 0; |
229 | 229 | while ($db_status = $modx->db->getRow($rs)) { |
@@ -233,29 +233,29 @@ discard block |
||
233 | 233 | $table_string = ''; |
234 | 234 | } |
235 | 235 | |
236 | - echo '<tr>' . "\n" . '<td><label class="form-check form-check-label"><input type="checkbox" name="chk[]" class="form-check-input" value="' . $db_status['Name'] . '"' . (strstr($table_string, $db_status['Name']) === false ? '' : ' checked="checked"') . ' /><b class="text-primary">' . $db_status['Name'] . '</b></label></td>' . "\n"; |
|
237 | - echo '<td class="text-xs-center">' . (!empty($db_status['Comment']) ? '<i class="' . $_style['actions_help'] . '" data-tooltip="' . $db_status['Comment'] . '"></i>' : '') . '</td>' . "\n"; |
|
238 | - echo '<td class="text-xs-right">' . $db_status['Rows'] . '</td>' . "\n"; |
|
239 | - echo '<td class="text-xs-right">' . $db_status['Collation'] . '</td>' . "\n"; |
|
236 | + echo '<tr>'."\n".'<td><label class="form-check form-check-label"><input type="checkbox" name="chk[]" class="form-check-input" value="'.$db_status['Name'].'"'.(strstr($table_string, $db_status['Name']) === false ? '' : ' checked="checked"').' /><b class="text-primary">'.$db_status['Name'].'</b></label></td>'."\n"; |
|
237 | + echo '<td class="text-xs-center">'.(!empty($db_status['Comment']) ? '<i class="'.$_style['actions_help'].'" data-tooltip="'.$db_status['Comment'].'"></i>' : '').'</td>'."\n"; |
|
238 | + echo '<td class="text-xs-right">'.$db_status['Rows'].'</td>'."\n"; |
|
239 | + echo '<td class="text-xs-right">'.$db_status['Collation'].'</td>'."\n"; |
|
240 | 240 | |
241 | 241 | // Enable record deletion for certain tables (TRUNCATE TABLE) if they're not already empty |
242 | 242 | $truncateable = array( |
243 | - $modx->db->config['table_prefix'] . 'event_log', |
|
244 | - $modx->db->config['table_prefix'] . 'manager_log', |
|
243 | + $modx->db->config['table_prefix'].'event_log', |
|
244 | + $modx->db->config['table_prefix'].'manager_log', |
|
245 | 245 | ); |
246 | 246 | if ($modx->hasPermission('settings') && in_array($db_status['Name'], $truncateable) && $db_status['Rows'] > 0) { |
247 | - echo '<td class="text-xs-right"><a class="text-danger" href="index.php?a=54&mode=' . $action . '&u=' . $db_status['Name'] . '" title="' . $_lang['truncate_table'] . '">' . $modx->nicesize($db_status['Data_length'] + $db_status['Data_free']) . '</a>' . '</td>' . "\n"; |
|
247 | + echo '<td class="text-xs-right"><a class="text-danger" href="index.php?a=54&mode='.$action.'&u='.$db_status['Name'].'" title="'.$_lang['truncate_table'].'">'.$modx->nicesize($db_status['Data_length'] + $db_status['Data_free']).'</a>'.'</td>'."\n"; |
|
248 | 248 | } else { |
249 | - echo '<td class="text-xs-right">' . $modx->nicesize($db_status['Data_length'] + $db_status['Data_free']) . '</td>' . "\n"; |
|
249 | + echo '<td class="text-xs-right">'.$modx->nicesize($db_status['Data_length'] + $db_status['Data_free']).'</td>'."\n"; |
|
250 | 250 | } |
251 | 251 | |
252 | 252 | if ($modx->hasPermission('settings')) { |
253 | - echo '<td class="text-xs-right">' . ($db_status['Data_free'] > 0 ? '<a class="text-danger" href="index.php?a=54&mode=' . $action . '&t=' . $db_status['Name'] . '" title="' . $_lang['optimize_table'] . '">' . $modx->nicesize($db_status['Data_free']) . '</a>' : '-') . '</td>' . "\n"; |
|
253 | + echo '<td class="text-xs-right">'.($db_status['Data_free'] > 0 ? '<a class="text-danger" href="index.php?a=54&mode='.$action.'&t='.$db_status['Name'].'" title="'.$_lang['optimize_table'].'">'.$modx->nicesize($db_status['Data_free']).'</a>' : '-').'</td>'."\n"; |
|
254 | 254 | } else { |
255 | - echo '<td class="text-xs-right">' . ($db_status['Data_free'] > 0 ? $modx->nicesize($db_status['Data_free']) : '-') . '</td>' . "\n"; |
|
255 | + echo '<td class="text-xs-right">'.($db_status['Data_free'] > 0 ? $modx->nicesize($db_status['Data_free']) : '-').'</td>'."\n"; |
|
256 | 256 | } |
257 | 257 | |
258 | - echo '<td class="text-xs-right">' . $modx->nicesize($db_status['Data_length'] - $db_status['Data_free']) . '</td>' . "\n" . '<td class="text-xs-right">' . $modx->nicesize($db_status['Index_length']) . '</td>' . "\n" . '<td class="text-xs-right">' . $modx->nicesize($db_status['Index_length'] + $db_status['Data_length'] + $db_status['Data_free']) . '</td>' . "\n" . "</tr>"; |
|
258 | + echo '<td class="text-xs-right">'.$modx->nicesize($db_status['Data_length'] - $db_status['Data_free']).'</td>'."\n".'<td class="text-xs-right">'.$modx->nicesize($db_status['Index_length']).'</td>'."\n".'<td class="text-xs-right">'.$modx->nicesize($db_status['Index_length'] + $db_status['Data_length'] + $db_status['Data_free']).'</td>'."\n"."</tr>"; |
|
259 | 259 | |
260 | 260 | $total = $total + $db_status['Index_length'] + $db_status['Data_length']; |
261 | 261 | $totaloverhead = $totaloverhead + $db_status['Data_free']; |
@@ -266,9 +266,9 @@ discard block |
||
266 | 266 | <tr> |
267 | 267 | <td class="text-xs-right"><?= $_lang['database_table_totals'] ?></td> |
268 | 268 | <td colspan="4"> </td> |
269 | - <td class="text-xs-right"><?= $totaloverhead > 0 ? '<b class="text-danger">' . $modx->nicesize($totaloverhead) . '</b><br />(' . number_format($totaloverhead) . ' B)' : '-' ?></td> |
|
269 | + <td class="text-xs-right"><?= $totaloverhead > 0 ? '<b class="text-danger">'.$modx->nicesize($totaloverhead).'</b><br />('.number_format($totaloverhead).' B)' : '-' ?></td> |
|
270 | 270 | <td colspan="2"> </td> |
271 | - <td class="text-xs-right"><?= "<b>" . $modx->nicesize($total) . "</b><br />(" . number_format($total) . " B)" ?></td> |
|
271 | + <td class="text-xs-right"><?= "<b>".$modx->nicesize($total)."</b><br />(".number_format($total)." B)" ?></td> |
|
272 | 272 | </tr> |
273 | 273 | </tfoot> |
274 | 274 | </table> |
@@ -319,7 +319,7 @@ discard block |
||
319 | 319 | foreach ($last_result['0'] as $k => $v) { |
320 | 320 | $title[] = $k; |
321 | 321 | } |
322 | - $result = '<thead><tr><th>' . implode('</th><th>', $title) . '</th></tr></thead>'; |
|
322 | + $result = '<thead><tr><th>'.implode('</th><th>', $title).'</th></tr></thead>'; |
|
323 | 323 | $result .= '<tbody>'; |
324 | 324 | foreach ($last_result as $row) { |
325 | 325 | $result_value = array(); |
@@ -327,11 +327,11 @@ discard block |
||
327 | 327 | foreach ($row as $k => $v) { |
328 | 328 | $result_value[] = $v; |
329 | 329 | } |
330 | - $result .= '<tr><td>' . implode('</td><td>', $result_value) . '</td></tr>'; |
|
330 | + $result .= '<tr><td>'.implode('</td><td>', $result_value).'</td></tr>'; |
|
331 | 331 | } |
332 | 332 | } |
333 | 333 | $result .= '</tbody>'; |
334 | - $result = '<table class="table data">' . $result . '</table>'; |
|
334 | + $result = '<table class="table data">'.$result.'</table>'; |
|
335 | 335 | } |
336 | 336 | } |
337 | 337 | |
@@ -433,7 +433,7 @@ discard block |
||
433 | 433 | while ($count < 11) { |
434 | 434 | $line = fgets($file); |
435 | 435 | foreach ($detailFields as $label) { |
436 | - $fileLabel = '# ' . $label; |
|
436 | + $fileLabel = '# '.$label; |
|
437 | 437 | if (strpos($line, $fileLabel) !== false) { |
438 | 438 | $details[$label] = htmlentities(trim(str_replace(array( |
439 | 439 | $fileLabel, |
@@ -446,10 +446,10 @@ discard block |
||
446 | 446 | }; |
447 | 447 | fclose($file); |
448 | 448 | |
449 | - $tooltip = "Generation Time: " . $details["Generation Time"] . "\n"; |
|
450 | - $tooltip .= "Server version: " . $details["Server version"] . "\n"; |
|
451 | - $tooltip .= "PHP Version: " . $details["PHP Version"] . "\n"; |
|
452 | - $tooltip .= "Host: " . $details["Host"] . "\n"; |
|
449 | + $tooltip = "Generation Time: ".$details["Generation Time"]."\n"; |
|
450 | + $tooltip .= "Server version: ".$details["Server version"]."\n"; |
|
451 | + $tooltip .= "PHP Version: ".$details["PHP Version"]."\n"; |
|
452 | + $tooltip .= "Host: ".$details["Host"]."\n"; |
|
453 | 453 | ?> |
454 | 454 | <tr> |
455 | 455 | <td><?= $filename ?></td> |
@@ -481,7 +481,7 @@ discard block |
||
481 | 481 | <?php |
482 | 482 | |
483 | 483 | if (is_numeric($_GET['tab'])) { |
484 | - echo '<script type="text/javascript">tpDBM.setSelectedIndex( ' . $_GET['tab'] . ' );</script>'; |
|
484 | + echo '<script type="text/javascript">tpDBM.setSelectedIndex( '.$_GET['tab'].' );</script>'; |
|
485 | 485 | } |
486 | 486 | |
487 | 487 | include_once "footer.inc.php"; // send footer |
@@ -533,7 +533,7 @@ discard block |
||
533 | 533 | |
534 | 534 | // Set line feed |
535 | 535 | $lf = "\n"; |
536 | - $tempfile_path = $modx->config['base_path'] . 'assets/backup/temp.php'; |
|
536 | + $tempfile_path = $modx->config['base_path'].'assets/backup/temp.php'; |
|
537 | 537 | |
538 | 538 | $result = $modx->db->query('SHOW TABLES'); |
539 | 539 | $tables = $this->result2Array(0, $result); |
@@ -546,15 +546,15 @@ discard block |
||
546 | 546 | |
547 | 547 | // Set header |
548 | 548 | $output = "#{$lf}"; |
549 | - $output .= "# " . addslashes($modx->config['site_name']) . " Database Dump{$lf}"; |
|
549 | + $output .= "# ".addslashes($modx->config['site_name'])." Database Dump{$lf}"; |
|
550 | 550 | $output .= "# MODX Version:{$version['version']}{$lf}"; |
551 | 551 | $output .= "# {$lf}"; |
552 | 552 | $output .= "# Host: {$this->database_server}{$lf}"; |
553 | - $output .= "# Generation Time: " . $modx->toDateFormat(time()) . $lf; |
|
554 | - $output .= "# Server version: " . $modx->db->getVersion() . $lf; |
|
555 | - $output .= "# PHP Version: " . phpversion() . $lf; |
|
553 | + $output .= "# Generation Time: ".$modx->toDateFormat(time()).$lf; |
|
554 | + $output .= "# Server version: ".$modx->db->getVersion().$lf; |
|
555 | + $output .= "# PHP Version: ".phpversion().$lf; |
|
556 | 556 | $output .= "# Database: `{$this->dbname}`{$lf}"; |
557 | - $output .= "# Description: " . trim($_REQUEST['backup_title']) . "{$lf}"; |
|
557 | + $output .= "# Description: ".trim($_REQUEST['backup_title'])."{$lf}"; |
|
558 | 558 | $output .= "#"; |
559 | 559 | file_put_contents($tempfile_path, $output, FILE_APPEND | LOCK_EX); |
560 | 560 | $output = ''; |
@@ -573,7 +573,7 @@ discard block |
||
573 | 573 | } |
574 | 574 | } |
575 | 575 | if ($callBack === 'snapshot') { |
576 | - if (!preg_match('@^' . $modx->db->config['table_prefix'] . '@', $tblval)) { |
|
576 | + if (!preg_match('@^'.$modx->db->config['table_prefix'].'@', $tblval)) { |
|
577 | 577 | continue; |
578 | 578 | } |
579 | 579 | } |
@@ -607,9 +607,9 @@ discard block |
||
607 | 607 | ), '\\n', $value); |
608 | 608 | $value = "'{$value}'"; |
609 | 609 | } |
610 | - $insertdump .= $value . ','; |
|
610 | + $insertdump .= $value.','; |
|
611 | 611 | } |
612 | - $output .= rtrim($insertdump, ',') . ");\n"; |
|
612 | + $output .= rtrim($insertdump, ',').");\n"; |
|
613 | 613 | if (1048576 < strlen($output)) { |
614 | 614 | file_put_contents($tempfile_path, $output, FILE_APPEND | LOCK_EX); |
615 | 615 | $output = ''; |
@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -if( ! defined('IN_MANAGER_MODE') || IN_MANAGER_MODE !== true) { |
|
2 | +if (!defined('IN_MANAGER_MODE') || IN_MANAGER_MODE !== true) { |
|
3 | 3 | die("<b>INCLUDE_ORDERING_ERROR</b><br /><br />Please use the EVO Content Manager instead of accessing this file directly."); |
4 | 4 | } |
5 | 5 | if (!$modx->hasPermission('save_document')) { |
@@ -13,7 +13,7 @@ discard block |
||
13 | 13 | } |
14 | 14 | |
15 | 15 | // check permissions on the document |
16 | -include_once MODX_MANAGER_PATH . "processors/user_documents_permissions.class.php"; |
|
16 | +include_once MODX_MANAGER_PATH."processors/user_documents_permissions.class.php"; |
|
17 | 17 | $udperms = new udperms(); |
18 | 18 | $udperms->user = $modx->getLoginUserID(); |
19 | 19 | $udperms->document = $id; |
@@ -39,7 +39,7 @@ discard block |
||
39 | 39 | }, |
40 | 40 | cancel: function() { |
41 | 41 | documentDirty = false; |
42 | - <?= ($id == 0 ? 'document.location.href="index.php?a=2";' : 'document.location.href="index.php?a=3&id=' . $id . '";') ?> |
|
42 | + <?= ($id == 0 ? 'document.location.href="index.php?a=2";' : 'document.location.href="index.php?a=3&id='.$id.'";') ?> |
|
43 | 43 | } |
44 | 44 | }; |
45 | 45 | |
@@ -80,7 +80,7 @@ discard block |
||
80 | 80 | </script> |
81 | 81 | |
82 | 82 | <h1> |
83 | - <i class="fa fa-arrows"></i><?= ($pagetitle ? $pagetitle . '<small>(' . $id . ')</small>' : $_lang['move_resource_title']) ?> |
|
83 | + <i class="fa fa-arrows"></i><?= ($pagetitle ? $pagetitle.'<small>('.$id.')</small>' : $_lang['move_resource_title']) ?> |
|
84 | 84 | </h1> |
85 | 85 | |
86 | 86 | <?= $_style['actionbuttons']['dynamic']['save'] ?> |
@@ -1,15 +1,15 @@ discard block |
||
1 | 1 | <?php |
2 | -if( ! defined('IN_MANAGER_MODE') || IN_MANAGER_MODE !== true) { |
|
2 | +if (!defined('IN_MANAGER_MODE') || IN_MANAGER_MODE !== true) { |
|
3 | 3 | die("<b>INCLUDE_ORDERING_ERROR</b><br /><br />Please use the EVO Content Manager instead of accessing this file directly."); |
4 | 4 | } |
5 | -switch($modx->manager->action) { |
|
5 | +switch ($modx->manager->action) { |
|
6 | 6 | case 107: |
7 | - if(!$modx->hasPermission('new_module')) { |
|
7 | + if (!$modx->hasPermission('new_module')) { |
|
8 | 8 | $modx->webAlertAndQuit($_lang["error_no_privileges"]); |
9 | 9 | } |
10 | 10 | break; |
11 | 11 | case 108: |
12 | - if(!$modx->hasPermission('edit_module')) { |
|
12 | + if (!$modx->hasPermission('edit_module')) { |
|
13 | 13 | $modx->webAlertAndQuit($_lang["error_no_privileges"]); |
14 | 14 | } |
15 | 15 | break; |
@@ -29,16 +29,16 @@ discard block |
||
29 | 29 | $tbl_site_templates = $modx->getFullTableName('site_templates'); |
30 | 30 | $tbl_site_tmplvars = $modx->getFullTableName('site_tmplvars'); |
31 | 31 | // create globally unique identifiers (guid) |
32 | -function createGUID() { |
|
32 | +function createGUID(){ |
|
33 | 33 | srand((double) microtime() * 1000000); |
34 | 34 | $r = rand(); |
35 | - $u = uniqid(getmypid() . $r . (double) microtime() * 1000000, 1); |
|
35 | + $u = uniqid(getmypid().$r.(double) microtime() * 1000000, 1); |
|
36 | 36 | $m = md5($u); |
37 | 37 | return $m; |
38 | 38 | } |
39 | 39 | |
40 | 40 | // check to see the module editor isn't locked |
41 | -if($lockedEl = $modx->elementIsLocked(6, $id)) { |
|
41 | +if ($lockedEl = $modx->elementIsLocked(6, $id)) { |
|
42 | 42 | $modx->webAlertAndQuit(sprintf($_lang['lock_msg'], $lockedEl['username'], $_lang['module'])); |
43 | 43 | } |
44 | 44 | // end check for lock |
@@ -46,29 +46,29 @@ discard block |
||
46 | 46 | // Lock snippet for other users to edit |
47 | 47 | $modx->lockElement(6, $id); |
48 | 48 | |
49 | -if(isset($_GET['id'])) { |
|
49 | +if (isset($_GET['id'])) { |
|
50 | 50 | $rs = $modx->db->select('*', $tbl_site_modules, "id='{$id}'"); |
51 | 51 | $content = $modx->db->getRow($rs); |
52 | - if(!$content) { |
|
52 | + if (!$content) { |
|
53 | 53 | $modx->webAlertAndQuit("Module not found for id '{$id}'."); |
54 | 54 | } |
55 | 55 | $content['properties'] = str_replace("&", "&", $content['properties']); |
56 | 56 | $_SESSION['itemname'] = $content['name']; |
57 | - if($content['locked'] == 1 && $_SESSION['mgrRole'] != 1) { |
|
57 | + if ($content['locked'] == 1 && $_SESSION['mgrRole'] != 1) { |
|
58 | 58 | $modx->webAlertAndQuit($_lang["error_no_privileges"]); |
59 | 59 | } |
60 | 60 | } else { |
61 | 61 | $_SESSION['itemname'] = $_lang["new_module"]; |
62 | 62 | $content['wrap'] = '1'; |
63 | 63 | } |
64 | -if($modx->manager->hasFormValues()) { |
|
64 | +if ($modx->manager->hasFormValues()) { |
|
65 | 65 | $modx->manager->loadFormValues(); |
66 | 66 | } |
67 | 67 | |
68 | 68 | // Add lock-element JS-Script |
69 | 69 | $lockElementId = $id; |
70 | 70 | $lockElementType = 6; |
71 | -require_once(MODX_MANAGER_PATH . 'includes/active_user_locks.inc.php'); |
|
71 | +require_once(MODX_MANAGER_PATH.'includes/active_user_locks.inc.php'); |
|
72 | 72 | ?> |
73 | 73 | <script type="text/javascript"> |
74 | 74 | function loadDependencies() { |
@@ -415,7 +415,7 @@ discard block |
||
415 | 415 | function BrowseServer() { |
416 | 416 | var w = screen.width * 0.7; |
417 | 417 | var h = screen.height * 0.7; |
418 | - OpenServerBrowser("<?= MODX_MANAGER_URL;?>media/browser/<?= $which_browser;?>/browser.php?Type=images", w, h); |
|
418 | + OpenServerBrowser("<?= MODX_MANAGER_URL; ?>media/browser/<?= $which_browser; ?>/browser.php?Type=images", w, h); |
|
419 | 419 | } |
420 | 420 | |
421 | 421 | function SetUrl(url, width, height, alt) { |
@@ -435,7 +435,7 @@ discard block |
||
435 | 435 | <?php |
436 | 436 | // invoke OnModFormPrerender event |
437 | 437 | $evtOut = $modx->invokeEvent('OnModFormPrerender', array('id' => $id)); |
438 | - if(is_array($evtOut)) { |
|
438 | + if (is_array($evtOut)) { |
|
439 | 439 | echo implode('', $evtOut); |
440 | 440 | } |
441 | 441 | |
@@ -449,7 +449,7 @@ discard block |
||
449 | 449 | <input type="hidden" name="mode" value="<?= $modx->manager->action ?>"> |
450 | 450 | |
451 | 451 | <h1> |
452 | - <i class="<?= ($content['icon'] != '' ? $content['icon'] : $_style['icons_module']) ?>"></i><?= ($content['name'] ? $content['name'] . '<small>(' . $content['id'] . ')</small>' : $_lang['new_module']) ?><i class="fa fa-question-circle help"></i> |
|
452 | + <i class="<?= ($content['icon'] != '' ? $content['icon'] : $_style['icons_module']) ?>"></i><?= ($content['name'] ? $content['name'].'<small>('.$content['id'].')</small>' : $_lang['new_module']) ?><i class="fa fa-question-circle help"></i> |
|
453 | 453 | </h1> |
454 | 454 | |
455 | 455 | <?= $_style['actionbuttons']['dynamic']['element'] ?> |
@@ -474,8 +474,8 @@ discard block |
||
474 | 474 | <div class="col-md-9 col-lg-10"> |
475 | 475 | <div class="form-control-name clearfix"> |
476 | 476 | <input name="name" type="text" maxlength="100" value="<?= $modx->htmlspecialchars($content['name']) ?>" class="form-control form-control-lg" onchange="documentDirty=true;" /> |
477 | - <?php if($modx->hasPermission('save_role')): ?> |
|
478 | - <label class="custom-control" title="<?= $_lang['lock_module'] . "\n" . $_lang['lock_module_msg'] ?>" tooltip> |
|
477 | + <?php if ($modx->hasPermission('save_role')): ?> |
|
478 | + <label class="custom-control" title="<?= $_lang['lock_module']."\n".$_lang['lock_module_msg'] ?>" tooltip> |
|
479 | 479 | <input name="locked" type="checkbox"<?= ($content['locked'] == 1 ? ' checked="checked"' : '') ?> /> |
480 | 480 | <i class="fa fa-lock"></i> |
481 | 481 | </label> |
@@ -497,9 +497,9 @@ discard block |
||
497 | 497 | <select name="categoryid" class="form-control" onchange="documentDirty=true;"> |
498 | 498 | <option> </option> |
499 | 499 | <?php |
500 | - include_once(MODX_MANAGER_PATH . 'includes/categories.inc.php'); |
|
501 | - foreach(getCategories() as $n => $v) { |
|
502 | - echo "\t\t\t" . '<option value="' . $v['id'] . '"' . ($content['category'] == $v['id'] ? ' selected="selected"' : '') . '>' . $modx->htmlspecialchars($v['category']) . "</option>\n"; |
|
500 | + include_once(MODX_MANAGER_PATH.'includes/categories.inc.php'); |
|
501 | + foreach (getCategories() as $n => $v) { |
|
502 | + echo "\t\t\t".'<option value="'.$v['id'].'"'.($content['category'] == $v['id'] ? ' selected="selected"' : '').'>'.$modx->htmlspecialchars($v['category'])."</option>\n"; |
|
503 | 503 | } |
504 | 504 | ?> |
505 | 505 | </select> |
@@ -531,7 +531,7 @@ discard block |
||
531 | 531 | <div class="form-group"> |
532 | 532 | <div class="form-row"> |
533 | 533 | <label for="disabled"><input name="disabled" id="disabled" type="checkbox" value="on"<?= ($content['disabled'] == 1 ? ' checked="checked"' : '') ?> /> |
534 | - <?= ($content['disabled'] == 1 ? '<span class="text-danger">' . $_lang['module_disabled'] . '</span>' : $_lang['module_disabled']) ?></label> |
|
534 | + <?= ($content['disabled'] == 1 ? '<span class="text-danger">'.$_lang['module_disabled'].'</span>' : $_lang['module_disabled']) ?></label> |
|
535 | 535 | </div> |
536 | 536 | <div class="form-row"> |
537 | 537 | <label for="parse_docblock"> |
@@ -596,7 +596,7 @@ discard block |
||
596 | 596 | </div> |
597 | 597 | <!-- HTML text editor end --> |
598 | 598 | </div> |
599 | - <?php if($modx->manager->action == '108'): ?> |
|
599 | + <?php if ($modx->manager->action == '108'): ?> |
|
600 | 600 | <!-- Dependencies --> |
601 | 601 | <div class="tab-page" id="tabDepend"> |
602 | 602 | <h2 class="tab"><?= $_lang['settings_dependencies'] ?></h2> |
@@ -624,14 +624,14 @@ discard block |
||
624 | 624 | LEFT JOIN {$tbl_site_templates} AS st ON st.id = smd.resource AND smd.type = 50 |
625 | 625 | LEFT JOIN {$tbl_site_tmplvars} AS sv ON sv.id = smd.resource AND smd.type = 60", "smd.module='{$id}'", 'smd.type,name'); |
626 | 626 | |
627 | - include_once MODX_MANAGER_PATH . "includes/controls/datagrid.class.php"; |
|
627 | + include_once MODX_MANAGER_PATH."includes/controls/datagrid.class.php"; |
|
628 | 628 | $grd = new DataGrid('', $ds, 0); // set page size to 0 t show all items |
629 | 629 | $grd->noRecordMsg = $_lang['no_records_found']; |
630 | 630 | $grd->cssClass = 'grid'; |
631 | 631 | $grd->columnHeaderClass = 'gridHeader'; |
632 | 632 | $grd->itemClass = 'gridItem'; |
633 | 633 | $grd->altItemClass = 'gridAltItem'; |
634 | - $grd->columns = $_lang['element_name'] . " ," . $_lang['type']; |
|
634 | + $grd->columns = $_lang['element_name']." ,".$_lang['type']; |
|
635 | 635 | $grd->fields = "name,type"; |
636 | 636 | echo $grd->render(); |
637 | 637 | ?> |
@@ -644,13 +644,13 @@ discard block |
||
644 | 644 | <h2 class="tab"><?= $_lang['access_permissions'] ?></h2> |
645 | 645 | <script type="text/javascript">tp.addTabPage(document.getElementById("tabPermissions"));</script> |
646 | 646 | <div class="container container-body"> |
647 | - <?php if($use_udperms == 1) : ?> |
|
647 | + <?php if ($use_udperms == 1) : ?> |
|
648 | 648 | <?php |
649 | 649 | // fetch user access permissions for the module |
650 | 650 | $rs = $modx->db->select('usergroup', $tbl_site_module_access, "module='{$id}'"); |
651 | 651 | $groupsarray = $modx->db->getColumn('usergroup', $rs); |
652 | 652 | |
653 | - if($modx->hasPermission('access_permissions')) { |
|
653 | + if ($modx->hasPermission('access_permissions')) { |
|
654 | 654 | ?> |
655 | 655 | <!-- User Group Access Permissions --> |
656 | 656 | <script type="text/javascript"> |
@@ -678,22 +678,22 @@ discard block |
||
678 | 678 | } |
679 | 679 | $chk = ''; |
680 | 680 | $rs = $modx->db->select('name, id', $tbl_membergroup_names, '', 'name'); |
681 | - while($row = $modx->db->getRow($rs)) { |
|
681 | + while ($row = $modx->db->getRow($rs)) { |
|
682 | 682 | $groupsarray = is_numeric($id) && $id > 0 ? $groupsarray : array(); |
683 | 683 | $checked = in_array($row['id'], $groupsarray); |
684 | - if($modx->hasPermission('access_permissions')) { |
|
685 | - if($checked) { |
|
684 | + if ($modx->hasPermission('access_permissions')) { |
|
685 | + if ($checked) { |
|
686 | 686 | $notPublic = true; |
687 | 687 | } |
688 | - $chks .= '<label><input type="checkbox" name="usrgroups[]" value="' . $row['id'] . '"' . ($checked ? ' checked="checked"' : '') . ' onclick="makePublic(false)" /> ' . $row['name'] . "</label><br />\n"; |
|
688 | + $chks .= '<label><input type="checkbox" name="usrgroups[]" value="'.$row['id'].'"'.($checked ? ' checked="checked"' : '').' onclick="makePublic(false)" /> '.$row['name']."</label><br />\n"; |
|
689 | 689 | } else { |
690 | - if($checked) { |
|
691 | - $chks = '<input type="hidden" name="usrgroups[]" value="' . $row['id'] . '" />' . "\n" . $chks; |
|
690 | + if ($checked) { |
|
691 | + $chks = '<input type="hidden" name="usrgroups[]" value="'.$row['id'].'" />'."\n".$chks; |
|
692 | 692 | } |
693 | 693 | } |
694 | 694 | } |
695 | - if($modx->hasPermission('access_permissions')) { |
|
696 | - $chks = '<label><input type="checkbox" name="chkallgroups"' . (!$notPublic ? ' checked="checked"' : '') . ' onclick="makePublic(true)" /><span class="warning"> ' . $_lang['all_usr_groups'] . '</span></label><br />' . "\n" . $chks; |
|
695 | + if ($modx->hasPermission('access_permissions')) { |
|
696 | + $chks = '<label><input type="checkbox" name="chkallgroups"'.(!$notPublic ? ' checked="checked"' : '').' onclick="makePublic(true)" /><span class="warning"> '.$_lang['all_usr_groups'].'</span></label><br />'."\n".$chks; |
|
697 | 697 | } |
698 | 698 | echo $chks; |
699 | 699 | ?> |
@@ -714,7 +714,7 @@ discard block |
||
714 | 714 | <?php |
715 | 715 | // invoke OnModFormRender event |
716 | 716 | $evtOut = $modx->invokeEvent('OnModFormRender', array('id' => $id)); |
717 | - if(is_array($evtOut)) { |
|
717 | + if (is_array($evtOut)) { |
|
718 | 718 | echo implode('', $evtOut); |
719 | 719 | } |
720 | 720 | ?> |
@@ -1,16 +1,16 @@ discard block |
||
1 | 1 | <?php |
2 | -if( ! defined('IN_MANAGER_MODE') || IN_MANAGER_MODE !== true) { |
|
2 | +if (!defined('IN_MANAGER_MODE') || IN_MANAGER_MODE !== true) { |
|
3 | 3 | die("<b>INCLUDE_ORDERING_ERROR</b><br /><br />Please use the EVO Content Manager instead of accessing this file directly."); |
4 | 4 | } |
5 | 5 | |
6 | -switch($modx->manager->action) { |
|
6 | +switch ($modx->manager->action) { |
|
7 | 7 | case 16: |
8 | - if(!$modx->hasPermission('edit_template')) { |
|
8 | + if (!$modx->hasPermission('edit_template')) { |
|
9 | 9 | $modx->webAlertAndQuit($_lang["error_no_privileges"]); |
10 | 10 | } |
11 | 11 | break; |
12 | 12 | case 19: |
13 | - if(!$modx->hasPermission('new_template')) { |
|
13 | + if (!$modx->hasPermission('new_template')) { |
|
14 | 14 | $modx->webAlertAndQuit($_lang["error_no_privileges"]); |
15 | 15 | } |
16 | 16 | break; |
@@ -23,7 +23,7 @@ discard block |
||
23 | 23 | $tbl_site_templates = $modx->getFullTableName('site_templates'); |
24 | 24 | |
25 | 25 | // check to see the snippet editor isn't locked |
26 | -if($lockedEl = $modx->elementIsLocked(1, $id)) { |
|
26 | +if ($lockedEl = $modx->elementIsLocked(1, $id)) { |
|
27 | 27 | $modx->webAlertAndQuit(sprintf($_lang['lock_msg'], $lockedEl['username'], $_lang['template'])); |
28 | 28 | } |
29 | 29 | // end check for lock |
@@ -32,15 +32,15 @@ discard block |
||
32 | 32 | $modx->lockElement(1, $id); |
33 | 33 | |
34 | 34 | $content = array(); |
35 | -if(!empty($id)) { |
|
35 | +if (!empty($id)) { |
|
36 | 36 | $rs = $modx->db->select('*', $tbl_site_templates, "id='{$id}'"); |
37 | 37 | $content = $modx->db->getRow($rs); |
38 | - if(!$content) { |
|
38 | + if (!$content) { |
|
39 | 39 | $modx->webAlertAndQuit("No database record has been found for this template."); |
40 | 40 | } |
41 | 41 | |
42 | 42 | $_SESSION['itemname'] = $content['templatename']; |
43 | - if($content['locked'] == 1 && $_SESSION['mgrRole'] != 1) { |
|
43 | + if ($content['locked'] == 1 && $_SESSION['mgrRole'] != 1) { |
|
44 | 44 | $modx->webAlertAndQuit($_lang["error_no_privileges"]); |
45 | 45 | } |
46 | 46 | } else { |
@@ -48,7 +48,7 @@ discard block |
||
48 | 48 | $content['category'] = intval($_REQUEST['catid']); |
49 | 49 | } |
50 | 50 | |
51 | -if($modx->manager->hasFormValues()) { |
|
51 | +if ($modx->manager->hasFormValues()) { |
|
52 | 52 | $modx->manager->loadFormValues(); |
53 | 53 | } |
54 | 54 | |
@@ -58,7 +58,7 @@ discard block |
||
58 | 58 | // Add lock-element JS-Script |
59 | 59 | $lockElementId = $id; |
60 | 60 | $lockElementType = 1; |
61 | -require_once(MODX_MANAGER_PATH . 'includes/active_user_locks.inc.php'); |
|
61 | +require_once(MODX_MANAGER_PATH.'includes/active_user_locks.inc.php'); |
|
62 | 62 | ?> |
63 | 63 | <script type="text/javascript"> |
64 | 64 | |
@@ -100,7 +100,7 @@ discard block |
||
100 | 100 | <?php |
101 | 101 | // invoke OnTempFormPrerender event |
102 | 102 | $evtOut = $modx->invokeEvent("OnTempFormPrerender", array("id" => $id)); |
103 | - if(is_array($evtOut)) { |
|
103 | + if (is_array($evtOut)) { |
|
104 | 104 | echo implode("", $evtOut); |
105 | 105 | } |
106 | 106 | ?> |
@@ -109,7 +109,7 @@ discard block |
||
109 | 109 | <input type="hidden" name="mode" value="<?= $modx->manager->action ?>"> |
110 | 110 | |
111 | 111 | <h1> |
112 | - <i class="fa fa-newspaper-o"></i><?= ($content['templatename'] ? $content['templatename'] . '<small>(' . $content['id'] . ')</small>' : $_lang['new_template']) ?><i class="fa fa-question-circle help"></i> |
|
112 | + <i class="fa fa-newspaper-o"></i><?= ($content['templatename'] ? $content['templatename'].'<small>('.$content['id'].')</small>' : $_lang['new_template']) ?><i class="fa fa-question-circle help"></i> |
|
113 | 113 | </h1> |
114 | 114 | |
115 | 115 | <?= $_style['actionbuttons']['dynamic']['element'] ?> |
@@ -132,15 +132,15 @@ discard block |
||
132 | 132 | <div class="row form-row"> |
133 | 133 | <label class="col-md-3 col-lg-2"> |
134 | 134 | <?= $_lang['template_name'] ?> |
135 | - <?php if($id == $modx->config['default_template']) { |
|
136 | - echo '<small class="form-text text-danger">' . mb_strtolower(rtrim($_lang['defaulttemplate_title'], ':'), $modx_manager_charset) . '</small>'; |
|
135 | + <?php if ($id == $modx->config['default_template']) { |
|
136 | + echo '<small class="form-text text-danger">'.mb_strtolower(rtrim($_lang['defaulttemplate_title'], ':'), $modx_manager_charset).'</small>'; |
|
137 | 137 | } ?> |
138 | 138 | </label> |
139 | 139 | <div class="col-md-9 col-lg-10"> |
140 | 140 | <div class="form-control-name clearfix"> |
141 | 141 | <input name="templatename" type="text" maxlength="100" value="<?= $modx->htmlspecialchars($content['templatename']) ?>" class="form-control form-control-lg" onchange="documentDirty=true;"> |
142 | - <?php if($modx->hasPermission('save_role')): ?> |
|
143 | - <label class="custom-control" title="<?= $_lang['lock_template'] . "\n" . $_lang['lock_template_msg'] ?>" tooltip> |
|
142 | + <?php if ($modx->hasPermission('save_role')): ?> |
|
143 | + <label class="custom-control" title="<?= $_lang['lock_template']."\n".$_lang['lock_template_msg'] ?>" tooltip> |
|
144 | 144 | <input name="locked" type="checkbox"<?= ($content['locked'] == 1 ? ' checked="checked"' : '') ?> /> |
145 | 145 | <i class="fa fa-lock"></i> |
146 | 146 | </label> |
@@ -162,9 +162,9 @@ discard block |
||
162 | 162 | <select name="categoryid" class="form-control" onchange="documentDirty=true;"> |
163 | 163 | <option> </option> |
164 | 164 | <?php |
165 | - include_once(MODX_MANAGER_PATH . 'includes/categories.inc.php'); |
|
166 | - foreach(getCategories() as $n => $v) { |
|
167 | - echo "<option value='" . $v['id'] . "'" . ($content["category"] == $v["id"] ? " selected='selected'" : "") . ">" . $modx->htmlspecialchars($v["category"]) . "</option>"; |
|
165 | + include_once(MODX_MANAGER_PATH.'includes/categories.inc.php'); |
|
166 | + foreach (getCategories() as $n => $v) { |
|
167 | + echo "<option value='".$v['id']."'".($content["category"] == $v["id"] ? " selected='selected'" : "").">".$modx->htmlspecialchars($v["category"])."</option>"; |
|
168 | 168 | } |
169 | 169 | ?> |
170 | 170 | </select> |
@@ -177,7 +177,7 @@ discard block |
||
177 | 177 | </div> |
178 | 178 | </div> |
179 | 179 | </div> |
180 | - <?php if($modx->hasPermission('save_role')): ?> |
|
180 | + <?php if ($modx->hasPermission('save_role')): ?> |
|
181 | 181 | <div class="form-group"> |
182 | 182 | <label> |
183 | 183 | <input name="selectable" type="checkbox"<?= ($selectable == 1 ? ' checked="checked"' : '') ?> /> <?= $_lang['template_selectable'] ?></label> |
@@ -198,30 +198,30 @@ discard block |
||
198 | 198 | |
199 | 199 | <?php |
200 | 200 | $selectedTvs = array(); |
201 | - if(!isset($_POST['assignedTv'])) { |
|
201 | + if (!isset($_POST['assignedTv'])) { |
|
202 | 202 | $rs = $modx->db->select(sprintf("tv.name AS tvname, tv.id AS tvid, tr.templateid AS templateid, tv.description AS tvdescription, tv.caption AS tvcaption, tv.locked AS tvlocked, if(isnull(cat.category),'%s',cat.category) AS category", $_lang['no_category']), sprintf("%s tv |
203 | 203 | LEFT JOIN %s tr ON tv.id=tr.tmplvarid |
204 | 204 | LEFT JOIN %s cat ON tv.category=cat.id", $modx->getFullTableName('site_tmplvars'), $modx->getFullTableName('site_tmplvar_templates'), $modx->getFullTableName('categories')), "templateid='{$id}'", "tr.rank DESC, tv.rank DESC, tvcaption DESC, tvid DESC" // workaround for correct sort of none-existing ranks |
205 | 205 | ); |
206 | - while($row = $modx->db->getRow($rs)) { |
|
206 | + while ($row = $modx->db->getRow($rs)) { |
|
207 | 207 | $selectedTvs[$row['tvid']] = $row; |
208 | 208 | } |
209 | - $selectedTvs = array_reverse($selectedTvs, true); // reverse ORDERBY DESC |
|
209 | + $selectedTvs = array_reverse($selectedTvs, true); // reverse ORDERBY DESC |
|
210 | 210 | } |
211 | 211 | |
212 | 212 | $unselectedTvs = array(); |
213 | 213 | $rs = $modx->db->select(sprintf("tv.name AS tvname, tv.id AS tvid, tr.templateid AS templateid, tv.description AS tvdescription, tv.caption AS tvcaption, tv.locked AS tvlocked, if(isnull(cat.category),'%s',cat.category) AS category, cat.id as catid", $_lang['no_category']), sprintf("%s tv |
214 | 214 | LEFT JOIN %s tr ON tv.id=tr.tmplvarid |
215 | 215 | LEFT JOIN %s cat ON tv.category=cat.id", $modx->getFullTableName('site_tmplvars'), $modx->getFullTableName('site_tmplvar_templates'), $modx->getFullTableName('categories')), "", "category, tvcaption"); |
216 | - while($row = $modx->db->getRow($rs)) { |
|
216 | + while ($row = $modx->db->getRow($rs)) { |
|
217 | 217 | $unselectedTvs[$row['tvid']] = $row; |
218 | 218 | } |
219 | 219 | |
220 | 220 | // Catch checkboxes if form not validated |
221 | - if(isset($_POST['assignedTv'])) { |
|
221 | + if (isset($_POST['assignedTv'])) { |
|
222 | 222 | $selectedTvs = array(); |
223 | - foreach($_POST['assignedTv'] as $tvid) { |
|
224 | - if(isset($unselectedTvs[$tvid])) { |
|
223 | + foreach ($_POST['assignedTv'] as $tvid) { |
|
224 | + if (isset($unselectedTvs[$tvid])) { |
|
225 | 225 | $selectedTvs[$tvid] = $unselectedTvs[$tvid]; |
226 | 226 | } |
227 | 227 | }; |
@@ -238,20 +238,20 @@ discard block |
||
238 | 238 | |
239 | 239 | <div class="container container-body"> |
240 | 240 | <?php |
241 | - if($total > 0) { |
|
242 | - echo '<p>' . $_lang['template_tv_msg'] . '</p>'; |
|
241 | + if ($total > 0) { |
|
242 | + echo '<p>'.$_lang['template_tv_msg'].'</p>'; |
|
243 | 243 | } |
244 | - if($modx->hasPermission('save_template') && $total > 1 && $id) { |
|
244 | + if ($modx->hasPermission('save_template') && $total > 1 && $id) { |
|
245 | 245 | echo sprintf('<div class="form-group"><a class="btn btn-primary" href="index.php?a=117&id=%s">%s</a></div>', $id, $_lang['template_tv_edit']); |
246 | 246 | } |
247 | 247 | |
248 | 248 | // Selected TVs |
249 | 249 | $tvList = ''; |
250 | - if($total > 0) { |
|
250 | + if ($total > 0) { |
|
251 | 251 | $tvList .= '<ul>'; |
252 | - foreach($selectedTvs as $row) { |
|
253 | - $desc = !empty($row['tvdescription']) ? ' <small>(' . $row['tvdescription'] . ')</small>' : ''; |
|
254 | - $locked = $row['tvlocked'] ? ' <em>(' . $_lang['locked'] . ')</em>' : ""; |
|
252 | + foreach ($selectedTvs as $row) { |
|
253 | + $desc = !empty($row['tvdescription']) ? ' <small>('.$row['tvdescription'].')</small>' : ''; |
|
254 | + $locked = $row['tvlocked'] ? ' <em>('.$_lang['locked'].')</em>' : ""; |
|
255 | 255 | $tvList .= sprintf('<li><label><input name="assignedTv[]" value="%s" type="checkbox" checked="checked" onchange="documentDirty=true;jQuery(\'#tvsDirty\').val(\'1\');"> %s <small>(%s)</small> - %s%s</label>%s <a href="index.php?id=%s&a=301&or=%s&oid=%s">%s</a></li>', $row['tvid'], $row['tvname'], $row['tvid'], $row['tvcaption'], $desc, $locked, $row['tvid'], $modx->manager->action, $id, $_lang['edit']); |
256 | 256 | } |
257 | 257 | $tvList .= '</ul>'; |
@@ -262,22 +262,22 @@ discard block |
||
262 | 262 | echo $tvList; |
263 | 263 | |
264 | 264 | // Unselected TVs |
265 | - $tvList = '<hr/><p>' . $_lang['template_notassigned_tv'] . '</p><ul>'; |
|
265 | + $tvList = '<hr/><p>'.$_lang['template_notassigned_tv'].'</p><ul>'; |
|
266 | 266 | $preCat = ''; |
267 | 267 | $insideUl = 0; |
268 | - while($row = array_shift($unselectedTvs)) { |
|
269 | - if(isset($selectedTvs[$row['tvid']])) { |
|
268 | + while ($row = array_shift($unselectedTvs)) { |
|
269 | + if (isset($selectedTvs[$row['tvid']])) { |
|
270 | 270 | continue; |
271 | 271 | } // Skip selected |
272 | 272 | $row['category'] = stripslashes($row['category']); //pixelchutes |
273 | - if($preCat !== $row['category']) { |
|
273 | + if ($preCat !== $row['category']) { |
|
274 | 274 | $tvList .= $insideUl ? '</ul>' : ''; |
275 | - $tvList .= '<li><strong>' . $row['category'] . ($row['catid'] != '' ? ' <small>(' . $row['catid'] . ')</small>' : '') . '</strong><ul>'; |
|
275 | + $tvList .= '<li><strong>'.$row['category'].($row['catid'] != '' ? ' <small>('.$row['catid'].')</small>' : '').'</strong><ul>'; |
|
276 | 276 | $insideUl = 1; |
277 | 277 | } |
278 | 278 | |
279 | - $desc = !empty($row['tvdescription']) ? ' <small>(' . $row['tvdescription'] . ')</small>' : ''; |
|
280 | - $locked = $row['tvlocked'] ? ' <em>(' . $_lang['locked'] . ')</em>' : ""; |
|
279 | + $desc = !empty($row['tvdescription']) ? ' <small>('.$row['tvdescription'].')</small>' : ''; |
|
280 | + $locked = $row['tvlocked'] ? ' <em>('.$_lang['locked'].')</em>' : ""; |
|
281 | 281 | $tvList .= sprintf('<li><label><input name="assignedTv[]" value="%s" type="checkbox" onchange="documentDirty=true;jQuery(\'#tvsDirty\').val(\'1\');"> %s <small>(%s)</small> - %s%s</label>%s <a href="index.php?id=%s&a=301&or=%s&oid=%s">%s</a></li>', $row['tvid'], $row['tvname'], $row['tvid'], $row['tvcaption'], $desc, $locked, $row['tvid'], $modx->manager->action, $id, $_lang['edit']); |
282 | 282 | $tvList .= '</li>'; |
283 | 283 | |
@@ -294,7 +294,7 @@ discard block |
||
294 | 294 | <?php |
295 | 295 | // invoke OnTempFormRender event |
296 | 296 | $evtOut = $modx->invokeEvent("OnTempFormRender", array("id" => $id)); |
297 | - if(is_array($evtOut)) { |
|
297 | + if (is_array($evtOut)) { |
|
298 | 298 | echo implode("", $evtOut); |
299 | 299 | } |
300 | 300 | ?> |