@@ -4,18 +4,18 @@ |
||
| 4 | 4 | } |
| 5 | 5 | |
| 6 | 6 | switch ($modx->getManagerApi()->action) { |
| 7 | - case 22: |
|
| 8 | - if (!$modx->hasPermission('edit_snippet')) { |
|
| 9 | - $modx->webAlertAndQuit($_lang["error_no_privileges"]); |
|
| 10 | - } |
|
| 11 | - break; |
|
| 12 | - case 23: |
|
| 13 | - if (!$modx->hasPermission('new_snippet')) { |
|
| 7 | + case 22: |
|
| 8 | + if (!$modx->hasPermission('edit_snippet')) { |
|
| 9 | + $modx->webAlertAndQuit($_lang["error_no_privileges"]); |
|
| 10 | + } |
|
| 11 | + break; |
|
| 12 | + case 23: |
|
| 13 | + if (!$modx->hasPermission('new_snippet')) { |
|
| 14 | + $modx->webAlertAndQuit($_lang["error_no_privileges"]); |
|
| 15 | + } |
|
| 16 | + break; |
|
| 17 | + default: |
|
| 14 | 18 | $modx->webAlertAndQuit($_lang["error_no_privileges"]); |
| 15 | - } |
|
| 16 | - break; |
|
| 17 | - default: |
|
| 18 | - $modx->webAlertAndQuit($_lang["error_no_privileges"]); |
|
| 19 | 19 | } |
| 20 | 20 | |
| 21 | 21 | $id = isset($_REQUEST['id']) ? (int)$_REQUEST['id'] : 0; |
@@ -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 | |
@@ -18,7 +18,7 @@ discard block |
||
| 18 | 18 | $modx->webAlertAndQuit($_lang["error_no_privileges"]); |
| 19 | 19 | } |
| 20 | 20 | |
| 21 | -$id = isset($_REQUEST['id']) ? (int)$_REQUEST['id'] : 0; |
|
| 21 | +$id = isset($_REQUEST['id']) ? (int) $_REQUEST['id'] : 0; |
|
| 22 | 22 | |
| 23 | 23 | // Get table Names (alphabetical) |
| 24 | 24 | $tbl_site_module_depobj = $modx->getFullTableName('site_module_depobj'); |
@@ -39,7 +39,7 @@ discard block |
||
| 39 | 39 | $rs = $modx->getDatabase()->select('*', $tbl_site_snippets, "id='{$id}'"); |
| 40 | 40 | $content = $modx->getDatabase()->getRow($rs); |
| 41 | 41 | if (!$content) { |
| 42 | - header("Location: " . MODX_SITE_URL . "index.php?id=" . $site_start); |
|
| 42 | + header("Location: ".MODX_SITE_URL."index.php?id=".$site_start); |
|
| 43 | 43 | } |
| 44 | 44 | $_SESSION['itemname'] = $content['name']; |
| 45 | 45 | if ($content['locked'] == 1 && $_SESSION['mgrRole'] != 1) { |
@@ -50,7 +50,7 @@ discard block |
||
| 50 | 50 | $content['name'] = $_REQUEST['itemname']; |
| 51 | 51 | } else { |
| 52 | 52 | $_SESSION['itemname'] = $_lang["new_snippet"]; |
| 53 | - $content['category'] = (int)$_REQUEST['catid']; |
|
| 53 | + $content['category'] = (int) $_REQUEST['catid']; |
|
| 54 | 54 | } |
| 55 | 55 | |
| 56 | 56 | if ($modx->getManagerApi()->hasFormValues()) { |
@@ -62,7 +62,7 @@ discard block |
||
| 62 | 62 | // Add lock-element JS-Script |
| 63 | 63 | $lockElementId = $id; |
| 64 | 64 | $lockElementType = 4; |
| 65 | -require_once(MODX_MANAGER_PATH . 'includes/active_user_locks.inc.php'); |
|
| 65 | +require_once(MODX_MANAGER_PATH.'includes/active_user_locks.inc.php'); |
|
| 66 | 66 | ?> |
| 67 | 67 | <script type="text/javascript"> |
| 68 | 68 | |
@@ -431,7 +431,7 @@ discard block |
||
| 431 | 431 | <input type="hidden" name="mode" value="<?= $modx->getManagerApi()->action ?>"> |
| 432 | 432 | |
| 433 | 433 | <h1 class="pagetitle"> |
| 434 | - <i class="fa fa-code"></i><?= ($content['name'] ? $content['name'] . '<small>(' . $content['id'] . ')</small>' : $_lang['new_snippet']) ?><i class="fa fa-question-circle help"></i> |
|
| 434 | + <i class="fa fa-code"></i><?= ($content['name'] ? $content['name'].'<small>('.$content['id'].')</small>' : $_lang['new_snippet']) ?><i class="fa fa-question-circle help"></i> |
|
| 435 | 435 | </h1> |
| 436 | 436 | |
| 437 | 437 | <?= $_style['actionbuttons']['dynamic']['element'] ?> |
@@ -457,7 +457,7 @@ discard block |
||
| 457 | 457 | <div class="form-control-name clearfix"> |
| 458 | 458 | <input name="name" type="text" maxlength="100" value="<?= $modx->getPhpCompat()->htmlspecialchars($content['name']) ?>" class="form-control form-control-lg" onchange="documentDirty=true;" /> |
| 459 | 459 | <?php if ($modx->hasPermission('save_role')): ?> |
| 460 | - <label class="custom-control" title="<?= $_lang['lock_snippet'] . "\n" . $_lang['lock_snippet_msg'] ?>" tooltip> |
|
| 460 | + <label class="custom-control" title="<?= $_lang['lock_snippet']."\n".$_lang['lock_snippet_msg'] ?>" tooltip> |
|
| 461 | 461 | <input name="locked" type="checkbox"<?= ($content['locked'] == 1 ? ' checked="checked"' : '') ?> /> |
| 462 | 462 | <i class="fa fa-lock"></i> |
| 463 | 463 | </label> |
@@ -481,9 +481,9 @@ discard block |
||
| 481 | 481 | <select name="categoryid" class="form-control" onchange="documentDirty=true;"> |
| 482 | 482 | <option> </option> |
| 483 | 483 | <?php |
| 484 | - include_once(MODX_MANAGER_PATH . 'includes/categories.inc.php'); |
|
| 484 | + include_once(MODX_MANAGER_PATH.'includes/categories.inc.php'); |
|
| 485 | 485 | foreach (getCategories() as $n => $v) { |
| 486 | - echo '<option value="' . $v['id'] . '"' . ($content['category'] == $v['id'] ? ' selected="selected"' : '') . '>' . $modx->getPhpCompat()->htmlspecialchars($v['category']) . '</option>'; |
|
| 486 | + echo '<option value="'.$v['id'].'"'.($content['category'] == $v['id'] ? ' selected="selected"' : '').'>'.$modx->getPhpCompat()->htmlspecialchars($v['category']).'</option>'; |
|
| 487 | 487 | } |
| 488 | 488 | ?> |
| 489 | 489 | </select> |
@@ -500,7 +500,7 @@ discard block |
||
| 500 | 500 | <div class="form-group"> |
| 501 | 501 | <?php if ($_SESSION['mgrRole'] == 1): ?> |
| 502 | 502 | <div class="form-row"> |
| 503 | - <label><input name="disabled" type="checkbox" value="on"<?= ($content['disabled'] == 1 ? ' checked="checked"' : '') ?> /> <?= ($content['disabled'] == 1 ? "<span class='text-danger'>" . $_lang['disabled'] . "</span>" : $_lang['disabled']) ?></label> |
|
| 503 | + <label><input name="disabled" type="checkbox" value="on"<?= ($content['disabled'] == 1 ? ' checked="checked"' : '') ?> /> <?= ($content['disabled'] == 1 ? "<span class='text-danger'>".$_lang['disabled']."</span>" : $_lang['disabled']) ?></label> |
|
| 504 | 504 | </div> |
| 505 | 505 | <?php endif; ?> |
| 506 | 506 | <div class="form-row"> |
@@ -517,7 +517,7 @@ discard block |
||
| 517 | 517 | <span><?= $_lang['snippet_code'] ?></span> |
| 518 | 518 | </div> |
| 519 | 519 | <div class="section-editor clearfix"> |
| 520 | - <textarea dir="ltr" name="post" class="phptextarea" rows="20" wrap="soft" onchange="documentDirty=true;"><?= (isset($content['post']) ? trim($modx->getPhpCompat()->htmlspecialchars($content['post'])) : "<?php" . "\n" . trim($modx->getPhpCompat()->htmlspecialchars($content['snippet'])) . "\n") ?></textarea> |
|
| 520 | + <textarea dir="ltr" name="post" class="phptextarea" rows="20" wrap="soft" onchange="documentDirty=true;"><?= (isset($content['post']) ? trim($modx->getPhpCompat()->htmlspecialchars($content['post'])) : "<?php"."\n".trim($modx->getPhpCompat()->htmlspecialchars($content['snippet']))."\n") ?></textarea> |
|
| 521 | 521 | </div> |
| 522 | 522 | <!-- PHP text editor end --> |
| 523 | 523 | </div> |
@@ -552,7 +552,7 @@ discard block |
||
| 552 | 552 | INNER JOIN {$tbl_site_module_depobj} AS smd ON smd.module=sm.id AND smd.type=40 |
| 553 | 553 | INNER JOIN {$tbl_site_snippets} AS ss ON ss.id=smd.resource", "smd.resource='{$id}' AND sm.enable_sharedparams=1", 'sm.name'); |
| 554 | 554 | while ($row = $modx->getDatabase()->getRow($ds)) { |
| 555 | - echo "<option value='" . $row['guid'] . "'" . ($content['moduleguid'] == $row['guid'] ? " selected='selected'" : "") . ">" . $modx->getPhpCompat()->htmlspecialchars($row['name']) . "</option>"; |
|
| 555 | + echo "<option value='".$row['guid']."'".($content['moduleguid'] == $row['guid'] ? " selected='selected'" : "").">".$modx->getPhpCompat()->htmlspecialchars($row['name'])."</option>"; |
|
| 556 | 556 | } |
| 557 | 557 | ?> |
| 558 | 558 | </select> |
@@ -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_template')) { |
@@ -15,7 +15,7 @@ discard block |
||
| 15 | 15 | $updateMsg = ''; |
| 16 | 16 | |
| 17 | 17 | if (isset($_POST['listSubmitted'])) { |
| 18 | - $updateMsg .= '<span class="text-success" id="updated">' . $_lang['sort_updated'] . '</span>'; |
|
| 18 | + $updateMsg .= '<span class="text-success" id="updated">'.$_lang['sort_updated'].'</span>'; |
|
| 19 | 19 | foreach ($_POST as $listName => $listValue) { |
| 20 | 20 | if ($listName == 'listSubmitted' || $listName == 'reset') { |
| 21 | 21 | continue; |
@@ -40,11 +40,11 @@ discard block |
||
| 40 | 40 | $sortableList = '<div class="clearfix"><ul id="sortlist" class="sortableList">'; |
| 41 | 41 | while ($row = $modx->getDatabase()->getRow($rs)) { |
| 42 | 42 | $caption = $row['caption'] != '' ? $row['caption'] : $row['name']; |
| 43 | - $sortableList .= '<li id="item_' . $row['id'] . '"><i class="fa fa-list-alt"></i> ' . $caption . ' <small class="protectedNode" style="float:right">[*' . $row['name'] . '*]</small></li>'; |
|
| 43 | + $sortableList .= '<li id="item_'.$row['id'].'"><i class="fa fa-list-alt"></i> '.$caption.' <small class="protectedNode" style="float:right">[*'.$row['name'].'*]</small></li>'; |
|
| 44 | 44 | } |
| 45 | 45 | $sortableList .= '</ul></div>'; |
| 46 | 46 | } else { |
| 47 | - $updateMsg = '<p class="text-danger">' . $_lang['tmplvars_novars'] . '</p>'; |
|
| 47 | + $updateMsg = '<p class="text-danger">'.$_lang['tmplvars_novars'].'</p>'; |
|
| 48 | 48 | } |
| 49 | 49 | ?> |
| 50 | 50 | |
@@ -1,32 +1,32 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | if( ! defined('IN_MANAGER_MODE') || IN_MANAGER_MODE !== true) { |
| 3 | - die("<b>INCLUDE_ORDERING_ERROR</b><br /><br />Please use the EVO Content Manager instead of accessing this file directly."); |
|
| 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('web_access_permissions')) { |
| 6 | - $modx->webAlertAndQuit($_lang["error_no_privileges"]); |
|
| 6 | + $modx->webAlertAndQuit($_lang["error_no_privileges"]); |
|
| 7 | 7 | } |
| 8 | 8 | |
| 9 | 9 | // find all document groups, for the select :) |
| 10 | 10 | $rs = $modx->getDatabase()->select('*', $modx->getFullTableName('documentgroup_names'), '', 'name'); |
| 11 | 11 | if($modx->getDatabase()->getRecordCount($rs) < 1) { |
| 12 | - $docgroupselector = "[no groups to add]"; |
|
| 12 | + $docgroupselector = "[no groups to add]"; |
|
| 13 | 13 | } else { |
| 14 | - $docgroupselector = '<select name="docgroup">' . "\n"; |
|
| 15 | - while($row = $modx->getDatabase()->getRow($rs)) { |
|
| 16 | - $docgroupselector .= "\t" . '<option value="' . $row['id'] . '">' . $row['name'] . "</option>\n"; |
|
| 17 | - } |
|
| 18 | - $docgroupselector .= "</select>\n"; |
|
| 14 | + $docgroupselector = '<select name="docgroup">' . "\n"; |
|
| 15 | + while($row = $modx->getDatabase()->getRow($rs)) { |
|
| 16 | + $docgroupselector .= "\t" . '<option value="' . $row['id'] . '">' . $row['name'] . "</option>\n"; |
|
| 17 | + } |
|
| 18 | + $docgroupselector .= "</select>\n"; |
|
| 19 | 19 | } |
| 20 | 20 | |
| 21 | 21 | $rs = $modx->getDatabase()->select('*', $modx->getFullTableName('webgroup_names'), '', 'name'); |
| 22 | 22 | if($modx->getDatabase()->getRecordCount($rs) < 1) { |
| 23 | - $usrgroupselector = '[no user groups]'; |
|
| 23 | + $usrgroupselector = '[no user groups]'; |
|
| 24 | 24 | } else { |
| 25 | - $usrgroupselector = '<select name="usergroup">' . "\n"; |
|
| 26 | - while($row = $modx->getDatabase()->getRow($rs)) { |
|
| 27 | - $usrgroupselector .= "\t" . '<option value="' . $row['id'] . '">' . $row['name'] . "</option>\n"; |
|
| 28 | - } |
|
| 29 | - $usrgroupselector .= "</select>\n"; |
|
| 25 | + $usrgroupselector = '<select name="usergroup">' . "\n"; |
|
| 26 | + while($row = $modx->getDatabase()->getRow($rs)) { |
|
| 27 | + $usrgroupselector .= "\t" . '<option value="' . $row['id'] . '">' . $row['name'] . "</option>\n"; |
|
| 28 | + } |
|
| 29 | + $usrgroupselector .= "</select>\n"; |
|
| 30 | 30 | } |
| 31 | 31 | |
| 32 | 32 | ?> |
@@ -88,24 +88,24 @@ discard block |
||
| 88 | 88 | </form> |
| 89 | 89 | </div> |
| 90 | 90 | <?php |
| 91 | - $rs = $modx->getDatabase()->select('groupnames.*, users.id AS user_id, users.username user_name ', $modx->getFullTableName('webgroup_names') . " AS groupnames |
|
| 91 | + $rs = $modx->getDatabase()->select('groupnames.*, users.id AS user_id, users.username user_name ', $modx->getFullTableName('webgroup_names') . " AS groupnames |
|
| 92 | 92 | LEFT JOIN " . $modx->getFullTableName('web_groups') . " AS groups ON groups.webgroup = groupnames.id |
| 93 | 93 | LEFT JOIN " . $modx->getFullTableName('web_users') . " AS users ON users.id = groups.webuser", '', 'groupnames.name, user_name'); |
| 94 | - if($modx->getDatabase()->getRecordCount($rs) < 1) { |
|
| 95 | - ?> |
|
| 94 | + if($modx->getDatabase()->getRecordCount($rs) < 1) { |
|
| 95 | + ?> |
|
| 96 | 96 | <div class="text-danger"><?= $_lang['no_groups_found'] ?></div> |
| 97 | 97 | <?php |
| 98 | - } else { |
|
| 99 | - ?> |
|
| 98 | + } else { |
|
| 99 | + ?> |
|
| 100 | 100 | <div class="form-group"> |
| 101 | 101 | <?php |
| 102 | - $pid = ''; |
|
| 103 | - while($row = $modx->getDatabase()->getRow($rs)) { |
|
| 104 | - if($pid != $row['id']) { |
|
| 105 | - if($pid != '') { |
|
| 106 | - echo '</div><div class="form-group">'; |
|
| 107 | - } |
|
| 108 | - ?> |
|
| 102 | + $pid = ''; |
|
| 103 | + while($row = $modx->getDatabase()->getRow($rs)) { |
|
| 104 | + if($pid != $row['id']) { |
|
| 105 | + if($pid != '') { |
|
| 106 | + echo '</div><div class="form-group">'; |
|
| 107 | + } |
|
| 108 | + ?> |
|
| 109 | 109 | <form method="post" action="index.php" name="accesspermissions"> |
| 110 | 110 | <input type="hidden" name="a" value="92" /> |
| 111 | 111 | <input type="hidden" name="groupid" value="<?= $row['id'] ?>" /> |
@@ -120,21 +120,21 @@ discard block |
||
| 120 | 120 | </form> |
| 121 | 121 | <?= $_lang['web_access_permissions_users_in_group'] ?> |
| 122 | 122 | <?php |
| 123 | - } |
|
| 124 | - if(!$row['user_id']) { |
|
| 125 | - ?> |
|
| 123 | + } |
|
| 124 | + if(!$row['user_id']) { |
|
| 125 | + ?> |
|
| 126 | 126 | <i><?= $_lang['access_permissions_no_users_in_group'] ?></i> |
| 127 | 127 | <?php |
| 128 | - $pid = $row['id']; |
|
| 129 | - continue; |
|
| 130 | - } |
|
| 131 | - ?> |
|
| 128 | + $pid = $row['id']; |
|
| 129 | + continue; |
|
| 130 | + } |
|
| 131 | + ?> |
|
| 132 | 132 | <?= ($pid == $row['id'] ? ', ' : '') ?><a href="index.php?a=88&id=<?= $row['user_id'] ?>"><?= $row['user_name'] ?></a> |
| 133 | 133 | <?php |
| 134 | - $pid = $row['id']; |
|
| 135 | - } |
|
| 136 | - } |
|
| 137 | - ?> |
|
| 134 | + $pid = $row['id']; |
|
| 135 | + } |
|
| 136 | + } |
|
| 137 | + ?> |
|
| 138 | 138 | </div> |
| 139 | 139 | </div> |
| 140 | 140 | </div> |
@@ -159,24 +159,24 @@ discard block |
||
| 159 | 159 | </form> |
| 160 | 160 | </div> |
| 161 | 161 | <?php |
| 162 | - $rs = $modx->getDatabase()->select('dgnames.id, dgnames.name, sc.id AS doc_id, sc.pagetitle AS doc_title', $modx->getFullTableName('documentgroup_names') . " AS dgnames |
|
| 162 | + $rs = $modx->getDatabase()->select('dgnames.id, dgnames.name, sc.id AS doc_id, sc.pagetitle AS doc_title', $modx->getFullTableName('documentgroup_names') . " AS dgnames |
|
| 163 | 163 | LEFT JOIN " . $modx->getFullTableName('document_groups') . " AS dg ON dg.document_group = dgnames.id |
| 164 | 164 | LEFT JOIN " . $modx->getFullTableName('site_content') . " AS sc ON sc.id = dg.document", '', 'dgnames.name, sc.id'); |
| 165 | - if($modx->getDatabase()->getRecordCount($rs) < 1) { |
|
| 166 | - ?> |
|
| 165 | + if($modx->getDatabase()->getRecordCount($rs) < 1) { |
|
| 166 | + ?> |
|
| 167 | 167 | <div class="text-danger"><?= $_lang['no_groups_found'] ?></div> |
| 168 | 168 | <?php |
| 169 | - } else { |
|
| 170 | - ?> |
|
| 169 | + } else { |
|
| 170 | + ?> |
|
| 171 | 171 | <div class="form-group"> |
| 172 | 172 | <?php |
| 173 | - $pid = ''; |
|
| 174 | - while($row = $modx->getDatabase()->getRow($rs)) { |
|
| 175 | - if($pid != $row['id']) { |
|
| 176 | - if($pid != '') { |
|
| 177 | - echo '</div><div class="form-group">'; |
|
| 178 | - } |
|
| 179 | - ?> |
|
| 173 | + $pid = ''; |
|
| 174 | + while($row = $modx->getDatabase()->getRow($rs)) { |
|
| 175 | + if($pid != $row['id']) { |
|
| 176 | + if($pid != '') { |
|
| 177 | + echo '</div><div class="form-group">'; |
|
| 178 | + } |
|
| 179 | + ?> |
|
| 180 | 180 | <form method="post" action="index.php" name="accesspermissions"> |
| 181 | 181 | <input type="hidden" name="a" value="92" /> |
| 182 | 182 | <input type="hidden" name="groupid" value="<?= $row['id'] ?>" /> |
@@ -191,21 +191,21 @@ discard block |
||
| 191 | 191 | </form> |
| 192 | 192 | <?= $_lang['access_permissions_resources_in_group'] ?> |
| 193 | 193 | <?php |
| 194 | - } |
|
| 195 | - if(!$row['doc_id']) { |
|
| 196 | - ?> |
|
| 194 | + } |
|
| 195 | + if(!$row['doc_id']) { |
|
| 196 | + ?> |
|
| 197 | 197 | <i><?= $_lang['access_permissions_no_resources_in_group'] ?></i> |
| 198 | 198 | <?php |
| 199 | - $pid = $row['id']; |
|
| 200 | - continue; |
|
| 201 | - } |
|
| 202 | - ?> |
|
| 199 | + $pid = $row['id']; |
|
| 200 | + continue; |
|
| 201 | + } |
|
| 202 | + ?> |
|
| 203 | 203 | <?= ($pid == $row['id'] ? ', ' : '') ?><a href="index.php?a=3&id=<?= $row['doc_id'] ?>" title="<?= $modx->getPhpCompat()->htmlspecialchars($row['doc_title']) ?>"><?= $row['doc_id'] ?></a> |
| 204 | 204 | <?php |
| 205 | - $pid = $row['id']; |
|
| 206 | - } |
|
| 207 | - } |
|
| 208 | - ?> |
|
| 205 | + $pid = $row['id']; |
|
| 206 | + } |
|
| 207 | + } |
|
| 208 | + ?> |
|
| 209 | 209 | </div> |
| 210 | 210 | </div> |
| 211 | 211 | </div> |
@@ -217,15 +217,15 @@ discard block |
||
| 217 | 217 | <div class="container container-body"> |
| 218 | 218 | <p class="element-edit-message-tab alert alert-warning"><?= $_lang['access_permissions_links_tab'] ?></p> |
| 219 | 219 | <?php |
| 220 | - $rs = $modx->getDatabase()->select('groupnames.*, groupacc.id AS link_id, dgnames.id AS dg_id, dgnames.name AS dg_name', $modx->getFullTableName('webgroup_names') . " AS groupnames |
|
| 220 | + $rs = $modx->getDatabase()->select('groupnames.*, groupacc.id AS link_id, dgnames.id AS dg_id, dgnames.name AS dg_name', $modx->getFullTableName('webgroup_names') . " AS groupnames |
|
| 221 | 221 | LEFT JOIN " . $modx->getFullTableName('webgroup_access') . " AS groupacc ON groupacc.webgroup = groupnames.id |
| 222 | 222 | LEFT JOIN " . $modx->getFullTableName('documentgroup_names') . " AS dgnames ON dgnames.id = groupacc.documentgroup", '', 'name, dg_name'); |
| 223 | - if($modx->getDatabase()->getRecordCount($rs) < 1) { |
|
| 224 | - ?> |
|
| 223 | + if($modx->getDatabase()->getRecordCount($rs) < 1) { |
|
| 224 | + ?> |
|
| 225 | 225 | <div class="text-danger"><?= $_lang['no_groups_found'] ?></div> |
| 226 | 226 | <?php |
| 227 | - } else { |
|
| 228 | - ?> |
|
| 227 | + } else { |
|
| 228 | + ?> |
|
| 229 | 229 | <div class="form-group"> |
| 230 | 230 | <b><?= $_lang["access_permissions_group_link"] ?></b> |
| 231 | 231 | <form method="post" action="index.php" name="accesspermissions"> |
@@ -241,38 +241,38 @@ discard block |
||
| 241 | 241 | <hr> |
| 242 | 242 | <ul> |
| 243 | 243 | <?php |
| 244 | - $pid = ''; |
|
| 245 | - while($row = $modx->getDatabase()->getRow($rs)) { |
|
| 246 | - if($row['id'] != $pid) { |
|
| 247 | - if($pid != '') { |
|
| 248 | - echo '</ul></li>'; |
|
| 249 | - } // close previous one |
|
| 250 | - ?> |
|
| 244 | + $pid = ''; |
|
| 245 | + while($row = $modx->getDatabase()->getRow($rs)) { |
|
| 246 | + if($row['id'] != $pid) { |
|
| 247 | + if($pid != '') { |
|
| 248 | + echo '</ul></li>'; |
|
| 249 | + } // close previous one |
|
| 250 | + ?> |
|
| 251 | 251 | <li><b><?= $row['name'] ?></b></li> |
| 252 | 252 | <?php |
| 253 | - if(!$row['dg_id']) { |
|
| 254 | - echo '<i>' . $_lang['no_groups_found'] . '</i></li>'; |
|
| 255 | - $pid = ''; |
|
| 256 | - continue; |
|
| 257 | - } else { |
|
| 258 | - echo '<ul>'; |
|
| 259 | - } |
|
| 260 | - } |
|
| 261 | - if(!$row['dg_id']) { |
|
| 262 | - continue; |
|
| 263 | - } |
|
| 264 | - ?> |
|
| 253 | + if(!$row['dg_id']) { |
|
| 254 | + echo '<i>' . $_lang['no_groups_found'] . '</i></li>'; |
|
| 255 | + $pid = ''; |
|
| 256 | + continue; |
|
| 257 | + } else { |
|
| 258 | + echo '<ul>'; |
|
| 259 | + } |
|
| 260 | + } |
|
| 261 | + if(!$row['dg_id']) { |
|
| 262 | + continue; |
|
| 263 | + } |
|
| 264 | + ?> |
|
| 265 | 265 | <li><?= $row['dg_name'] ?> |
| 266 | 266 | <small><i>(<a class="text-danger" href="index.php?a=92&coupling=<?= $row['link_id'] ?>&operation=remove_document_group_from_user_group"><?= $_lang['remove'] ?></a>)</i></small> |
| 267 | 267 | </li> |
| 268 | 268 | <?php |
| 269 | - $pid = $row['id']; |
|
| 270 | - } |
|
| 271 | - ?> |
|
| 269 | + $pid = $row['id']; |
|
| 270 | + } |
|
| 271 | + ?> |
|
| 272 | 272 | </ul> |
| 273 | 273 | <?php |
| 274 | - } |
|
| 275 | - ?> |
|
| 274 | + } |
|
| 275 | + ?> |
|
| 276 | 276 | </div> |
| 277 | 277 | </div> |
| 278 | 278 | |
@@ -1,30 +1,30 @@ 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 | -if(!$modx->hasPermission('web_access_permissions')) { |
|
| 5 | +if (!$modx->hasPermission('web_access_permissions')) { |
|
| 6 | 6 | $modx->webAlertAndQuit($_lang["error_no_privileges"]); |
| 7 | 7 | } |
| 8 | 8 | |
| 9 | 9 | // find all document groups, for the select :) |
| 10 | 10 | $rs = $modx->getDatabase()->select('*', $modx->getFullTableName('documentgroup_names'), '', 'name'); |
| 11 | -if($modx->getDatabase()->getRecordCount($rs) < 1) { |
|
| 11 | +if ($modx->getDatabase()->getRecordCount($rs) < 1) { |
|
| 12 | 12 | $docgroupselector = "[no groups to add]"; |
| 13 | 13 | } else { |
| 14 | - $docgroupselector = '<select name="docgroup">' . "\n"; |
|
| 15 | - while($row = $modx->getDatabase()->getRow($rs)) { |
|
| 16 | - $docgroupselector .= "\t" . '<option value="' . $row['id'] . '">' . $row['name'] . "</option>\n"; |
|
| 14 | + $docgroupselector = '<select name="docgroup">'."\n"; |
|
| 15 | + while ($row = $modx->getDatabase()->getRow($rs)) { |
|
| 16 | + $docgroupselector .= "\t".'<option value="'.$row['id'].'">'.$row['name']."</option>\n"; |
|
| 17 | 17 | } |
| 18 | 18 | $docgroupselector .= "</select>\n"; |
| 19 | 19 | } |
| 20 | 20 | |
| 21 | 21 | $rs = $modx->getDatabase()->select('*', $modx->getFullTableName('webgroup_names'), '', 'name'); |
| 22 | -if($modx->getDatabase()->getRecordCount($rs) < 1) { |
|
| 22 | +if ($modx->getDatabase()->getRecordCount($rs) < 1) { |
|
| 23 | 23 | $usrgroupselector = '[no user groups]'; |
| 24 | 24 | } else { |
| 25 | - $usrgroupselector = '<select name="usergroup">' . "\n"; |
|
| 26 | - while($row = $modx->getDatabase()->getRow($rs)) { |
|
| 27 | - $usrgroupselector .= "\t" . '<option value="' . $row['id'] . '">' . $row['name'] . "</option>\n"; |
|
| 25 | + $usrgroupselector = '<select name="usergroup">'."\n"; |
|
| 26 | + while ($row = $modx->getDatabase()->getRow($rs)) { |
|
| 27 | + $usrgroupselector .= "\t".'<option value="'.$row['id'].'">'.$row['name']."</option>\n"; |
|
| 28 | 28 | } |
| 29 | 29 | $usrgroupselector .= "</select>\n"; |
| 30 | 30 | } |
@@ -60,7 +60,7 @@ discard block |
||
| 60 | 60 | <div class="alert alert-info"><?= $_lang['access_permissions_introtext'] ?></div> |
| 61 | 61 | </div> |
| 62 | 62 | |
| 63 | -<div class="container"><?= ($use_udperms != 1 ? '<div class="alert alert-danger">' . $_lang['access_permissions_off'] . '</div>' : '') ?></div> |
|
| 63 | +<div class="container"><?= ($use_udperms != 1 ? '<div class="alert alert-danger">'.$_lang['access_permissions_off'].'</div>' : '') ?></div> |
|
| 64 | 64 | |
| 65 | 65 | |
| 66 | 66 | <div class="tab-pane" id="wuapPane"> |
@@ -88,10 +88,10 @@ discard block |
||
| 88 | 88 | </form> |
| 89 | 89 | </div> |
| 90 | 90 | <?php |
| 91 | - $rs = $modx->getDatabase()->select('groupnames.*, users.id AS user_id, users.username user_name ', $modx->getFullTableName('webgroup_names') . " AS groupnames |
|
| 92 | - LEFT JOIN " . $modx->getFullTableName('web_groups') . " AS groups ON groups.webgroup = groupnames.id |
|
| 93 | - LEFT JOIN " . $modx->getFullTableName('web_users') . " AS users ON users.id = groups.webuser", '', 'groupnames.name, user_name'); |
|
| 94 | - if($modx->getDatabase()->getRecordCount($rs) < 1) { |
|
| 91 | + $rs = $modx->getDatabase()->select('groupnames.*, users.id AS user_id, users.username user_name ', $modx->getFullTableName('webgroup_names')." AS groupnames |
|
| 92 | + LEFT JOIN " . $modx->getFullTableName('web_groups')." AS groups ON groups.webgroup = groupnames.id |
|
| 93 | + LEFT JOIN " . $modx->getFullTableName('web_users')." AS users ON users.id = groups.webuser", '', 'groupnames.name, user_name'); |
|
| 94 | + if ($modx->getDatabase()->getRecordCount($rs) < 1) { |
|
| 95 | 95 | ?> |
| 96 | 96 | <div class="text-danger"><?= $_lang['no_groups_found'] ?></div> |
| 97 | 97 | <?php |
@@ -100,9 +100,9 @@ discard block |
||
| 100 | 100 | <div class="form-group"> |
| 101 | 101 | <?php |
| 102 | 102 | $pid = ''; |
| 103 | - while($row = $modx->getDatabase()->getRow($rs)) { |
|
| 104 | - if($pid != $row['id']) { |
|
| 105 | - if($pid != '') { |
|
| 103 | + while ($row = $modx->getDatabase()->getRow($rs)) { |
|
| 104 | + if ($pid != $row['id']) { |
|
| 105 | + if ($pid != '') { |
|
| 106 | 106 | echo '</div><div class="form-group">'; |
| 107 | 107 | } |
| 108 | 108 | ?> |
@@ -121,7 +121,7 @@ discard block |
||
| 121 | 121 | <?= $_lang['web_access_permissions_users_in_group'] ?> |
| 122 | 122 | <?php |
| 123 | 123 | } |
| 124 | - if(!$row['user_id']) { |
|
| 124 | + if (!$row['user_id']) { |
|
| 125 | 125 | ?> |
| 126 | 126 | <i><?= $_lang['access_permissions_no_users_in_group'] ?></i> |
| 127 | 127 | <?php |
@@ -159,10 +159,10 @@ discard block |
||
| 159 | 159 | </form> |
| 160 | 160 | </div> |
| 161 | 161 | <?php |
| 162 | - $rs = $modx->getDatabase()->select('dgnames.id, dgnames.name, sc.id AS doc_id, sc.pagetitle AS doc_title', $modx->getFullTableName('documentgroup_names') . " AS dgnames |
|
| 163 | - LEFT JOIN " . $modx->getFullTableName('document_groups') . " AS dg ON dg.document_group = dgnames.id |
|
| 164 | - LEFT JOIN " . $modx->getFullTableName('site_content') . " AS sc ON sc.id = dg.document", '', 'dgnames.name, sc.id'); |
|
| 165 | - if($modx->getDatabase()->getRecordCount($rs) < 1) { |
|
| 162 | + $rs = $modx->getDatabase()->select('dgnames.id, dgnames.name, sc.id AS doc_id, sc.pagetitle AS doc_title', $modx->getFullTableName('documentgroup_names')." AS dgnames |
|
| 163 | + LEFT JOIN " . $modx->getFullTableName('document_groups')." AS dg ON dg.document_group = dgnames.id |
|
| 164 | + LEFT JOIN " . $modx->getFullTableName('site_content')." AS sc ON sc.id = dg.document", '', 'dgnames.name, sc.id'); |
|
| 165 | + if ($modx->getDatabase()->getRecordCount($rs) < 1) { |
|
| 166 | 166 | ?> |
| 167 | 167 | <div class="text-danger"><?= $_lang['no_groups_found'] ?></div> |
| 168 | 168 | <?php |
@@ -171,9 +171,9 @@ discard block |
||
| 171 | 171 | <div class="form-group"> |
| 172 | 172 | <?php |
| 173 | 173 | $pid = ''; |
| 174 | - while($row = $modx->getDatabase()->getRow($rs)) { |
|
| 175 | - if($pid != $row['id']) { |
|
| 176 | - if($pid != '') { |
|
| 174 | + while ($row = $modx->getDatabase()->getRow($rs)) { |
|
| 175 | + if ($pid != $row['id']) { |
|
| 176 | + if ($pid != '') { |
|
| 177 | 177 | echo '</div><div class="form-group">'; |
| 178 | 178 | } |
| 179 | 179 | ?> |
@@ -192,7 +192,7 @@ discard block |
||
| 192 | 192 | <?= $_lang['access_permissions_resources_in_group'] ?> |
| 193 | 193 | <?php |
| 194 | 194 | } |
| 195 | - if(!$row['doc_id']) { |
|
| 195 | + if (!$row['doc_id']) { |
|
| 196 | 196 | ?> |
| 197 | 197 | <i><?= $_lang['access_permissions_no_resources_in_group'] ?></i> |
| 198 | 198 | <?php |
@@ -217,10 +217,10 @@ discard block |
||
| 217 | 217 | <div class="container container-body"> |
| 218 | 218 | <p class="element-edit-message-tab alert alert-warning"><?= $_lang['access_permissions_links_tab'] ?></p> |
| 219 | 219 | <?php |
| 220 | - $rs = $modx->getDatabase()->select('groupnames.*, groupacc.id AS link_id, dgnames.id AS dg_id, dgnames.name AS dg_name', $modx->getFullTableName('webgroup_names') . " AS groupnames |
|
| 221 | - LEFT JOIN " . $modx->getFullTableName('webgroup_access') . " AS groupacc ON groupacc.webgroup = groupnames.id |
|
| 222 | - LEFT JOIN " . $modx->getFullTableName('documentgroup_names') . " AS dgnames ON dgnames.id = groupacc.documentgroup", '', 'name, dg_name'); |
|
| 223 | - if($modx->getDatabase()->getRecordCount($rs) < 1) { |
|
| 220 | + $rs = $modx->getDatabase()->select('groupnames.*, groupacc.id AS link_id, dgnames.id AS dg_id, dgnames.name AS dg_name', $modx->getFullTableName('webgroup_names')." AS groupnames |
|
| 221 | + LEFT JOIN " . $modx->getFullTableName('webgroup_access')." AS groupacc ON groupacc.webgroup = groupnames.id |
|
| 222 | + LEFT JOIN " . $modx->getFullTableName('documentgroup_names')." AS dgnames ON dgnames.id = groupacc.documentgroup", '', 'name, dg_name'); |
|
| 223 | + if ($modx->getDatabase()->getRecordCount($rs) < 1) { |
|
| 224 | 224 | ?> |
| 225 | 225 | <div class="text-danger"><?= $_lang['no_groups_found'] ?></div> |
| 226 | 226 | <?php |
@@ -242,23 +242,23 @@ discard block |
||
| 242 | 242 | <ul> |
| 243 | 243 | <?php |
| 244 | 244 | $pid = ''; |
| 245 | - while($row = $modx->getDatabase()->getRow($rs)) { |
|
| 246 | - if($row['id'] != $pid) { |
|
| 247 | - if($pid != '') { |
|
| 245 | + while ($row = $modx->getDatabase()->getRow($rs)) { |
|
| 246 | + if ($row['id'] != $pid) { |
|
| 247 | + if ($pid != '') { |
|
| 248 | 248 | echo '</ul></li>'; |
| 249 | 249 | } // close previous one |
| 250 | 250 | ?> |
| 251 | 251 | <li><b><?= $row['name'] ?></b></li> |
| 252 | 252 | <?php |
| 253 | - if(!$row['dg_id']) { |
|
| 254 | - echo '<i>' . $_lang['no_groups_found'] . '</i></li>'; |
|
| 253 | + if (!$row['dg_id']) { |
|
| 254 | + echo '<i>'.$_lang['no_groups_found'].'</i></li>'; |
|
| 255 | 255 | $pid = ''; |
| 256 | 256 | continue; |
| 257 | 257 | } else { |
| 258 | 258 | echo '<ul>'; |
| 259 | 259 | } |
| 260 | 260 | } |
| 261 | - if(!$row['dg_id']) { |
|
| 261 | + if (!$row['dg_id']) { |
|
| 262 | 262 | continue; |
| 263 | 263 | } |
| 264 | 264 | ?> |
@@ -1,20 +1,20 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | if( ! defined('IN_MANAGER_MODE') || IN_MANAGER_MODE !== true) {
|
| 3 | - die("<b>INCLUDE_ORDERING_ERROR</b><br /><br />Please use the EVO Content Manager instead of accessing this file directly.");
|
|
| 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 | switch($modx->getManagerApi()->action) {
|
| 6 | - case 107: |
|
| 7 | - if(!$modx->hasPermission('new_module')) {
|
|
| 8 | - $modx->webAlertAndQuit($_lang["error_no_privileges"]); |
|
| 9 | - } |
|
| 10 | - break; |
|
| 11 | - case 108: |
|
| 12 | - if(!$modx->hasPermission('edit_module')) {
|
|
| 13 | - $modx->webAlertAndQuit($_lang["error_no_privileges"]); |
|
| 14 | - } |
|
| 15 | - break; |
|
| 16 | - default: |
|
| 17 | - $modx->webAlertAndQuit($_lang["error_no_privileges"]); |
|
| 6 | + case 107: |
|
| 7 | + if(!$modx->hasPermission('new_module')) {
|
|
| 8 | + $modx->webAlertAndQuit($_lang["error_no_privileges"]); |
|
| 9 | + } |
|
| 10 | + break; |
|
| 11 | + case 108: |
|
| 12 | + if(!$modx->hasPermission('edit_module')) {
|
|
| 13 | + $modx->webAlertAndQuit($_lang["error_no_privileges"]); |
|
| 14 | + } |
|
| 15 | + break; |
|
| 16 | + default: |
|
| 17 | + $modx->webAlertAndQuit($_lang["error_no_privileges"]); |
|
| 18 | 18 | } |
| 19 | 19 | $id = isset($_REQUEST['id']) ? (int)$_REQUEST['id'] : 0; |
| 20 | 20 | // Get table names (alphabetical) |
@@ -32,7 +32,7 @@ discard block |
||
| 32 | 32 | |
| 33 | 33 | // check to see the module editor isn't locked |
| 34 | 34 | if($lockedEl = $modx->elementIsLocked(6, $id)) {
|
| 35 | - $modx->webAlertAndQuit(sprintf($_lang['lock_msg'], $lockedEl['username'], $_lang['module'])); |
|
| 35 | + $modx->webAlertAndQuit(sprintf($_lang['lock_msg'], $lockedEl['username'], $_lang['module'])); |
|
| 36 | 36 | } |
| 37 | 37 | // end check for lock |
| 38 | 38 | |
@@ -40,22 +40,22 @@ discard block |
||
| 40 | 40 | $modx->lockElement(6, $id); |
| 41 | 41 | |
| 42 | 42 | if(isset($_GET['id'])) {
|
| 43 | - $rs = $modx->getDatabase()->select('*', $tbl_site_modules, "id='{$id}'");
|
|
| 44 | - $content = $modx->getDatabase()->getRow($rs); |
|
| 45 | - if(!$content) {
|
|
| 46 | - $modx->webAlertAndQuit("Module not found for id '{$id}'.");
|
|
| 47 | - } |
|
| 48 | - $content['properties'] = str_replace("&", "&", $content['properties']);
|
|
| 49 | - $_SESSION['itemname'] = $content['name']; |
|
| 50 | - if($content['locked'] == 1 && $_SESSION['mgrRole'] != 1) {
|
|
| 51 | - $modx->webAlertAndQuit($_lang["error_no_privileges"]); |
|
| 52 | - } |
|
| 43 | + $rs = $modx->getDatabase()->select('*', $tbl_site_modules, "id='{$id}'");
|
|
| 44 | + $content = $modx->getDatabase()->getRow($rs); |
|
| 45 | + if(!$content) {
|
|
| 46 | + $modx->webAlertAndQuit("Module not found for id '{$id}'.");
|
|
| 47 | + } |
|
| 48 | + $content['properties'] = str_replace("&", "&", $content['properties']);
|
|
| 49 | + $_SESSION['itemname'] = $content['name']; |
|
| 50 | + if($content['locked'] == 1 && $_SESSION['mgrRole'] != 1) {
|
|
| 51 | + $modx->webAlertAndQuit($_lang["error_no_privileges"]); |
|
| 52 | + } |
|
| 53 | 53 | } else {
|
| 54 | - $_SESSION['itemname'] = $_lang["new_module"]; |
|
| 55 | - $content['wrap'] = '1'; |
|
| 54 | + $_SESSION['itemname'] = $_lang["new_module"]; |
|
| 55 | + $content['wrap'] = '1'; |
|
| 56 | 56 | } |
| 57 | 57 | if($modx->getManagerApi()->hasFormValues()) {
|
| 58 | - $modx->getManagerApi()->loadFormValues(); |
|
| 58 | + $modx->getManagerApi()->loadFormValues(); |
|
| 59 | 59 | } |
| 60 | 60 | |
| 61 | 61 | // Add lock-element JS-Script |
@@ -426,18 +426,18 @@ discard block |
||
| 426 | 426 | |
| 427 | 427 | <form name="mutate" id="mutate" class="module" method="post" action="index.php?a=109"> |
| 428 | 428 | <?php |
| 429 | - // invoke OnModFormPrerender event |
|
| 430 | - $evtOut = $modx->invokeEvent('OnModFormPrerender', array('id' => $id));
|
|
| 431 | - if(is_array($evtOut)) {
|
|
| 432 | - echo implode('', $evtOut);
|
|
| 433 | - } |
|
| 434 | - |
|
| 435 | - // Prepare internal params & info-tab via parseDocBlock |
|
| 436 | - $modulecode = isset($content['modulecode']) ? $modx->getDatabase()->escape($content['modulecode']) : ''; |
|
| 437 | - $docBlock = $modx->parseDocBlockFromString($modulecode); |
|
| 438 | - $docBlockList = $modx->convertDocBlockIntoList($docBlock); |
|
| 439 | - $internal = array(); |
|
| 440 | - ?> |
|
| 429 | + // invoke OnModFormPrerender event |
|
| 430 | + $evtOut = $modx->invokeEvent('OnModFormPrerender', array('id' => $id));
|
|
| 431 | + if(is_array($evtOut)) {
|
|
| 432 | + echo implode('', $evtOut);
|
|
| 433 | + } |
|
| 434 | + |
|
| 435 | + // Prepare internal params & info-tab via parseDocBlock |
|
| 436 | + $modulecode = isset($content['modulecode']) ? $modx->getDatabase()->escape($content['modulecode']) : ''; |
|
| 437 | + $docBlock = $modx->parseDocBlockFromString($modulecode); |
|
| 438 | + $docBlockList = $modx->convertDocBlockIntoList($docBlock); |
|
| 439 | + $internal = array(); |
|
| 440 | + ?> |
|
| 441 | 441 | <input type="hidden" name="id" value="<?= $content['id'] ?>"> |
| 442 | 442 | <input type="hidden" name="mode" value="<?= $modx->getManagerApi()->action ?>"> |
| 443 | 443 | |
@@ -490,11 +490,11 @@ discard block |
||
| 490 | 490 | <select name="categoryid" class="form-control" onchange="documentDirty=true;"> |
| 491 | 491 | <option> </option> |
| 492 | 492 | <?php |
| 493 | - include_once(MODX_MANAGER_PATH . 'includes/categories.inc.php'); |
|
| 494 | - foreach(getCategories() as $n => $v) {
|
|
| 495 | - echo "\t\t\t" . '<option value="' . $v['id'] . '"' . ($content['category'] == $v['id'] ? ' selected="selected"' : '') . '>' . $modx->getPhpCompat()->htmlspecialchars($v['category']) . "</option>\n"; |
|
| 496 | - } |
|
| 497 | - ?> |
|
| 493 | + include_once(MODX_MANAGER_PATH . 'includes/categories.inc.php'); |
|
| 494 | + foreach(getCategories() as $n => $v) {
|
|
| 495 | + echo "\t\t\t" . '<option value="' . $v['id'] . '"' . ($content['category'] == $v['id'] ? ' selected="selected"' : '') . '>' . $modx->getPhpCompat()->htmlspecialchars($v['category']) . "</option>\n"; |
|
| 496 | + } |
|
| 497 | + ?> |
|
| 498 | 498 | </select> |
| 499 | 499 | </div> |
| 500 | 500 | </div> |
@@ -601,7 +601,7 @@ discard block |
||
| 601 | 601 | <i class="<?= $_style["actions_save"] ?>"></i> <?= $_lang['manage_depends'] ?></a> |
| 602 | 602 | </div> |
| 603 | 603 | <?php |
| 604 | - $ds = $modx->getDatabase()->select("smd.id, COALESCE(ss.name,st.templatename,sv.name,sc.name,sp.name,sd.pagetitle) AS name,
|
|
| 604 | + $ds = $modx->getDatabase()->select("smd.id, COALESCE(ss.name,st.templatename,sv.name,sc.name,sp.name,sd.pagetitle) AS name,
|
|
| 605 | 605 | CASE smd.type |
| 606 | 606 | WHEN 10 THEN 'Chunk' |
| 607 | 607 | WHEN 20 THEN 'Document' |
@@ -617,17 +617,17 @@ discard block |
||
| 617 | 617 | LEFT JOIN {$tbl_site_templates} AS st ON st.id = smd.resource AND smd.type = 50
|
| 618 | 618 | LEFT JOIN {$tbl_site_tmplvars} AS sv ON sv.id = smd.resource AND smd.type = 60", "smd.module='{$id}'", 'smd.type,name');
|
| 619 | 619 | |
| 620 | - include_once MODX_MANAGER_PATH . "includes/controls/datagrid.class.php"; |
|
| 621 | - $grd = new DataGrid('', $ds, 0); // set page size to 0 t show all items
|
|
| 622 | - $grd->noRecordMsg = $_lang['no_records_found']; |
|
| 623 | - $grd->cssClass = 'grid'; |
|
| 624 | - $grd->columnHeaderClass = 'gridHeader'; |
|
| 625 | - $grd->itemClass = 'gridItem'; |
|
| 626 | - $grd->altItemClass = 'gridAltItem'; |
|
| 627 | - $grd->columns = $_lang['element_name'] . " ," . $_lang['type']; |
|
| 628 | - $grd->fields = "name,type"; |
|
| 629 | - echo $grd->render(); |
|
| 630 | - ?> |
|
| 620 | + include_once MODX_MANAGER_PATH . "includes/controls/datagrid.class.php"; |
|
| 621 | + $grd = new DataGrid('', $ds, 0); // set page size to 0 t show all items
|
|
| 622 | + $grd->noRecordMsg = $_lang['no_records_found']; |
|
| 623 | + $grd->cssClass = 'grid'; |
|
| 624 | + $grd->columnHeaderClass = 'gridHeader'; |
|
| 625 | + $grd->itemClass = 'gridItem'; |
|
| 626 | + $grd->altItemClass = 'gridAltItem'; |
|
| 627 | + $grd->columns = $_lang['element_name'] . " ," . $_lang['type']; |
|
| 628 | + $grd->fields = "name,type"; |
|
| 629 | + echo $grd->render(); |
|
| 630 | + ?> |
|
| 631 | 631 | </div> |
| 632 | 632 | </div> |
| 633 | 633 | <?php endif; ?> |
@@ -639,12 +639,12 @@ discard block |
||
| 639 | 639 | <div class="container container-body"> |
| 640 | 640 | <?php if($use_udperms == 1) : ?> |
| 641 | 641 | <?php |
| 642 | - // fetch user access permissions for the module |
|
| 643 | - $rs = $modx->getDatabase()->select('usergroup', $tbl_site_module_access, "module='{$id}'");
|
|
| 644 | - $groupsarray = $modx->getDatabase()->getColumn('usergroup', $rs);
|
|
| 642 | + // fetch user access permissions for the module |
|
| 643 | + $rs = $modx->getDatabase()->select('usergroup', $tbl_site_module_access, "module='{$id}'");
|
|
| 644 | + $groupsarray = $modx->getDatabase()->getColumn('usergroup', $rs);
|
|
| 645 | 645 | |
| 646 | - if($modx->hasPermission('access_permissions')) {
|
|
| 647 | - ?> |
|
| 646 | + if($modx->hasPermission('access_permissions')) {
|
|
| 647 | + ?> |
|
| 648 | 648 | <!-- User Group Access Permissions --> |
| 649 | 649 | <script type="text/javascript"> |
| 650 | 650 | function makePublic(b) {
|
@@ -668,28 +668,28 @@ discard block |
||
| 668 | 668 | </script> |
| 669 | 669 | <p><?= $_lang['module_group_access_msg'] ?></p> |
| 670 | 670 | <?php |
| 671 | - } |
|
| 672 | - $chk = ''; |
|
| 673 | - $rs = $modx->getDatabase()->select('name, id', $tbl_membergroup_names, '', 'name');
|
|
| 674 | - while($row = $modx->getDatabase()->getRow($rs)) {
|
|
| 675 | - $groupsarray = is_numeric($id) && $id > 0 ? $groupsarray : array(); |
|
| 676 | - $checked = in_array($row['id'], $groupsarray); |
|
| 677 | - if($modx->hasPermission('access_permissions')) {
|
|
| 678 | - if($checked) {
|
|
| 679 | - $notPublic = true; |
|
| 680 | - } |
|
| 681 | - $chks .= '<label><input type="checkbox" name="usrgroups[]" value="' . $row['id'] . '"' . ($checked ? ' checked="checked"' : '') . ' onclick="makePublic(false)" /> ' . $row['name'] . "</label><br />\n"; |
|
| 682 | - } else {
|
|
| 683 | - if($checked) {
|
|
| 684 | - $chks = '<input type="hidden" name="usrgroups[]" value="' . $row['id'] . '" />' . "\n" . $chks; |
|
| 685 | - } |
|
| 686 | - } |
|
| 687 | - } |
|
| 688 | - if($modx->hasPermission('access_permissions')) {
|
|
| 689 | - $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; |
|
| 690 | - } |
|
| 691 | - echo $chks; |
|
| 692 | - ?> |
|
| 671 | + } |
|
| 672 | + $chk = ''; |
|
| 673 | + $rs = $modx->getDatabase()->select('name, id', $tbl_membergroup_names, '', 'name');
|
|
| 674 | + while($row = $modx->getDatabase()->getRow($rs)) {
|
|
| 675 | + $groupsarray = is_numeric($id) && $id > 0 ? $groupsarray : array(); |
|
| 676 | + $checked = in_array($row['id'], $groupsarray); |
|
| 677 | + if($modx->hasPermission('access_permissions')) {
|
|
| 678 | + if($checked) {
|
|
| 679 | + $notPublic = true; |
|
| 680 | + } |
|
| 681 | + $chks .= '<label><input type="checkbox" name="usrgroups[]" value="' . $row['id'] . '"' . ($checked ? ' checked="checked"' : '') . ' onclick="makePublic(false)" /> ' . $row['name'] . "</label><br />\n"; |
|
| 682 | + } else {
|
|
| 683 | + if($checked) {
|
|
| 684 | + $chks = '<input type="hidden" name="usrgroups[]" value="' . $row['id'] . '" />' . "\n" . $chks; |
|
| 685 | + } |
|
| 686 | + } |
|
| 687 | + } |
|
| 688 | + if($modx->hasPermission('access_permissions')) {
|
|
| 689 | + $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; |
|
| 690 | + } |
|
| 691 | + echo $chks; |
|
| 692 | + ?> |
|
| 693 | 693 | <?php endif; ?> |
| 694 | 694 | </div> |
| 695 | 695 | </div> |
@@ -705,11 +705,11 @@ discard block |
||
| 705 | 705 | |
| 706 | 706 | <input type="submit" name="save" style="display:none;"> |
| 707 | 707 | <?php |
| 708 | - // invoke OnModFormRender event |
|
| 709 | - $evtOut = $modx->invokeEvent('OnModFormRender', array('id' => $id));
|
|
| 710 | - if(is_array($evtOut)) {
|
|
| 711 | - echo implode('', $evtOut);
|
|
| 712 | - } |
|
| 713 | - ?> |
|
| 708 | + // invoke OnModFormRender event |
|
| 709 | + $evtOut = $modx->invokeEvent('OnModFormRender', array('id' => $id));
|
|
| 710 | + if(is_array($evtOut)) {
|
|
| 711 | + echo implode('', $evtOut);
|
|
| 712 | + } |
|
| 713 | + ?> |
|
| 714 | 714 | </form> |
| 715 | 715 | <script type="text/javascript">setTimeout('showParameters();', 10);</script>
|
@@ -3,18 +3,18 @@ |
||
| 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 | switch($modx->getManagerApi()->action) {
|
| 6 | - case 107: |
|
| 7 | - if(!$modx->hasPermission('new_module')) {
|
|
| 8 | - $modx->webAlertAndQuit($_lang["error_no_privileges"]); |
|
| 9 | - } |
|
| 10 | - break; |
|
| 11 | - case 108: |
|
| 12 | - if(!$modx->hasPermission('edit_module')) {
|
|
| 13 | - $modx->webAlertAndQuit($_lang["error_no_privileges"]); |
|
| 14 | - } |
|
| 15 | - break; |
|
| 16 | - default: |
|
| 17 | - $modx->webAlertAndQuit($_lang["error_no_privileges"]); |
|
| 6 | + case 107: |
|
| 7 | + if(!$modx->hasPermission('new_module')) {
|
|
| 8 | + $modx->webAlertAndQuit($_lang["error_no_privileges"]); |
|
| 9 | + } |
|
| 10 | + break; |
|
| 11 | + case 108: |
|
| 12 | + if(!$modx->hasPermission('edit_module')) {
|
|
| 13 | + $modx->webAlertAndQuit($_lang["error_no_privileges"]); |
|
| 14 | + } |
|
| 15 | + break; |
|
| 16 | + default: |
|
| 17 | + $modx->webAlertAndQuit($_lang["error_no_privileges"]); |
|
| 18 | 18 | } |
| 19 | 19 | $id = isset($_REQUEST['id']) ? (int)$_REQUEST['id'] : 0; |
| 20 | 20 | // Get table names (alphabetical) |
@@ -1,22 +1,22 @@ 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->getManagerApi()->action) {
|
|
| 5 | +switch ($modx->getManagerApi()->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; |
| 16 | 16 | default: |
| 17 | 17 | $modx->webAlertAndQuit($_lang["error_no_privileges"]); |
| 18 | 18 | } |
| 19 | -$id = isset($_REQUEST['id']) ? (int)$_REQUEST['id'] : 0; |
|
| 19 | +$id = isset($_REQUEST['id']) ? (int) $_REQUEST['id'] : 0; |
|
| 20 | 20 | // Get table names (alphabetical) |
| 21 | 21 | $tbl_membergroup_names = $modx->getFullTableName('membergroup_names');
|
| 22 | 22 | $tbl_site_content = $modx->getFullTableName('site_content');
|
@@ -31,7 +31,7 @@ discard block |
||
| 31 | 31 | |
| 32 | 32 | |
| 33 | 33 | // check to see the module editor isn't locked |
| 34 | -if($lockedEl = $modx->elementIsLocked(6, $id)) {
|
|
| 34 | +if ($lockedEl = $modx->elementIsLocked(6, $id)) {
|
|
| 35 | 35 | $modx->webAlertAndQuit(sprintf($_lang['lock_msg'], $lockedEl['username'], $_lang['module'])); |
| 36 | 36 | } |
| 37 | 37 | // end check for lock |
@@ -39,29 +39,29 @@ discard block |
||
| 39 | 39 | // Lock snippet for other users to edit |
| 40 | 40 | $modx->lockElement(6, $id); |
| 41 | 41 | |
| 42 | -if(isset($_GET['id'])) {
|
|
| 42 | +if (isset($_GET['id'])) {
|
|
| 43 | 43 | $rs = $modx->getDatabase()->select('*', $tbl_site_modules, "id='{$id}'");
|
| 44 | 44 | $content = $modx->getDatabase()->getRow($rs); |
| 45 | - if(!$content) {
|
|
| 45 | + if (!$content) {
|
|
| 46 | 46 | $modx->webAlertAndQuit("Module not found for id '{$id}'.");
|
| 47 | 47 | } |
| 48 | 48 | $content['properties'] = str_replace("&", "&", $content['properties']);
|
| 49 | 49 | $_SESSION['itemname'] = $content['name']; |
| 50 | - if($content['locked'] == 1 && $_SESSION['mgrRole'] != 1) {
|
|
| 50 | + if ($content['locked'] == 1 && $_SESSION['mgrRole'] != 1) {
|
|
| 51 | 51 | $modx->webAlertAndQuit($_lang["error_no_privileges"]); |
| 52 | 52 | } |
| 53 | 53 | } else {
|
| 54 | 54 | $_SESSION['itemname'] = $_lang["new_module"]; |
| 55 | 55 | $content['wrap'] = '1'; |
| 56 | 56 | } |
| 57 | -if($modx->getManagerApi()->hasFormValues()) {
|
|
| 57 | +if ($modx->getManagerApi()->hasFormValues()) {
|
|
| 58 | 58 | $modx->getManagerApi()->loadFormValues(); |
| 59 | 59 | } |
| 60 | 60 | |
| 61 | 61 | // Add lock-element JS-Script |
| 62 | 62 | $lockElementId = $id; |
| 63 | 63 | $lockElementType = 6; |
| 64 | -require_once(MODX_MANAGER_PATH . 'includes/active_user_locks.inc.php'); |
|
| 64 | +require_once(MODX_MANAGER_PATH.'includes/active_user_locks.inc.php'); |
|
| 65 | 65 | ?> |
| 66 | 66 | <script type="text/javascript"> |
| 67 | 67 | function loadDependencies() {
|
@@ -408,7 +408,7 @@ discard block |
||
| 408 | 408 | function BrowseServer() {
|
| 409 | 409 | var w = screen.width * 0.7; |
| 410 | 410 | var h = screen.height * 0.7; |
| 411 | - OpenServerBrowser("<?= MODX_MANAGER_URL;?>media/browser/<?= $which_browser;?>/browser.php?Type=images", w, h);
|
|
| 411 | + OpenServerBrowser("<?= MODX_MANAGER_URL; ?>media/browser/<?= $which_browser; ?>/browser.php?Type=images", w, h);
|
|
| 412 | 412 | } |
| 413 | 413 | |
| 414 | 414 | function SetUrl(url, width, height, alt) {
|
@@ -428,7 +428,7 @@ discard block |
||
| 428 | 428 | <?php |
| 429 | 429 | // invoke OnModFormPrerender event |
| 430 | 430 | $evtOut = $modx->invokeEvent('OnModFormPrerender', array('id' => $id));
|
| 431 | - if(is_array($evtOut)) {
|
|
| 431 | + if (is_array($evtOut)) {
|
|
| 432 | 432 | echo implode('', $evtOut);
|
| 433 | 433 | } |
| 434 | 434 | |
@@ -442,7 +442,7 @@ discard block |
||
| 442 | 442 | <input type="hidden" name="mode" value="<?= $modx->getManagerApi()->action ?>"> |
| 443 | 443 | |
| 444 | 444 | <h1> |
| 445 | - <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>
|
|
| 445 | + <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>
|
|
| 446 | 446 | </h1> |
| 447 | 447 | |
| 448 | 448 | <?= $_style['actionbuttons']['dynamic']['element'] ?> |
@@ -467,8 +467,8 @@ discard block |
||
| 467 | 467 | <div class="col-md-9 col-lg-10"> |
| 468 | 468 | <div class="form-control-name clearfix"> |
| 469 | 469 | <input name="name" type="text" maxlength="100" value="<?= $modx->getPhpCompat()->htmlspecialchars($content['name']) ?>" class="form-control form-control-lg" onchange="documentDirty=true;" /> |
| 470 | - <?php if($modx->hasPermission('save_role')): ?>
|
|
| 471 | - <label class="custom-control" title="<?= $_lang['lock_module'] . "\n" . $_lang['lock_module_msg'] ?>" tooltip> |
|
| 470 | + <?php if ($modx->hasPermission('save_role')): ?>
|
|
| 471 | + <label class="custom-control" title="<?= $_lang['lock_module']."\n".$_lang['lock_module_msg'] ?>" tooltip> |
|
| 472 | 472 | <input name="locked" type="checkbox"<?= ($content['locked'] == 1 ? ' checked="checked"' : '') ?> /> |
| 473 | 473 | <i class="fa fa-lock"></i> |
| 474 | 474 | </label> |
@@ -490,9 +490,9 @@ discard block |
||
| 490 | 490 | <select name="categoryid" class="form-control" onchange="documentDirty=true;"> |
| 491 | 491 | <option> </option> |
| 492 | 492 | <?php |
| 493 | - include_once(MODX_MANAGER_PATH . 'includes/categories.inc.php'); |
|
| 494 | - foreach(getCategories() as $n => $v) {
|
|
| 495 | - echo "\t\t\t" . '<option value="' . $v['id'] . '"' . ($content['category'] == $v['id'] ? ' selected="selected"' : '') . '>' . $modx->getPhpCompat()->htmlspecialchars($v['category']) . "</option>\n"; |
|
| 493 | + include_once(MODX_MANAGER_PATH.'includes/categories.inc.php'); |
|
| 494 | + foreach (getCategories() as $n => $v) {
|
|
| 495 | + echo "\t\t\t".'<option value="'.$v['id'].'"'.($content['category'] == $v['id'] ? ' selected="selected"' : '').'>'.$modx->getPhpCompat()->htmlspecialchars($v['category'])."</option>\n"; |
|
| 496 | 496 | } |
| 497 | 497 | ?> |
| 498 | 498 | </select> |
@@ -524,7 +524,7 @@ discard block |
||
| 524 | 524 | <div class="form-group"> |
| 525 | 525 | <div class="form-row"> |
| 526 | 526 | <label for="disabled"><input name="disabled" id="disabled" type="checkbox" value="on"<?= ($content['disabled'] == 1 ? ' checked="checked"' : '') ?> /> |
| 527 | - <?= ($content['disabled'] == 1 ? '<span class="text-danger">' . $_lang['module_disabled'] . '</span>' : $_lang['module_disabled']) ?></label> |
|
| 527 | + <?= ($content['disabled'] == 1 ? '<span class="text-danger">'.$_lang['module_disabled'].'</span>' : $_lang['module_disabled']) ?></label> |
|
| 528 | 528 | </div> |
| 529 | 529 | <div class="form-row"> |
| 530 | 530 | <label for="parse_docblock"> |
@@ -589,7 +589,7 @@ discard block |
||
| 589 | 589 | </div> |
| 590 | 590 | <!-- HTML text editor end --> |
| 591 | 591 | </div> |
| 592 | - <?php if($modx->getManagerApi()->action == '108'): ?> |
|
| 592 | + <?php if ($modx->getManagerApi()->action == '108'): ?> |
|
| 593 | 593 | <!-- Dependencies --> |
| 594 | 594 | <div class="tab-page" id="tabDepend"> |
| 595 | 595 | <h2 class="tab"><?= $_lang['settings_dependencies'] ?></h2> |
@@ -617,14 +617,14 @@ discard block |
||
| 617 | 617 | LEFT JOIN {$tbl_site_templates} AS st ON st.id = smd.resource AND smd.type = 50
|
| 618 | 618 | LEFT JOIN {$tbl_site_tmplvars} AS sv ON sv.id = smd.resource AND smd.type = 60", "smd.module='{$id}'", 'smd.type,name');
|
| 619 | 619 | |
| 620 | - include_once MODX_MANAGER_PATH . "includes/controls/datagrid.class.php"; |
|
| 620 | + include_once MODX_MANAGER_PATH."includes/controls/datagrid.class.php"; |
|
| 621 | 621 | $grd = new DataGrid('', $ds, 0); // set page size to 0 t show all items
|
| 622 | 622 | $grd->noRecordMsg = $_lang['no_records_found']; |
| 623 | 623 | $grd->cssClass = 'grid'; |
| 624 | 624 | $grd->columnHeaderClass = 'gridHeader'; |
| 625 | 625 | $grd->itemClass = 'gridItem'; |
| 626 | 626 | $grd->altItemClass = 'gridAltItem'; |
| 627 | - $grd->columns = $_lang['element_name'] . " ," . $_lang['type']; |
|
| 627 | + $grd->columns = $_lang['element_name']." ,".$_lang['type']; |
|
| 628 | 628 | $grd->fields = "name,type"; |
| 629 | 629 | echo $grd->render(); |
| 630 | 630 | ?> |
@@ -637,13 +637,13 @@ discard block |
||
| 637 | 637 | <h2 class="tab"><?= $_lang['access_permissions'] ?></h2> |
| 638 | 638 | <script type="text/javascript">tp.addTabPage(document.getElementById("tabPermissions"));</script>
|
| 639 | 639 | <div class="container container-body"> |
| 640 | - <?php if($use_udperms == 1) : ?> |
|
| 640 | + <?php if ($use_udperms == 1) : ?> |
|
| 641 | 641 | <?php |
| 642 | 642 | // fetch user access permissions for the module |
| 643 | 643 | $rs = $modx->getDatabase()->select('usergroup', $tbl_site_module_access, "module='{$id}'");
|
| 644 | 644 | $groupsarray = $modx->getDatabase()->getColumn('usergroup', $rs);
|
| 645 | 645 | |
| 646 | - if($modx->hasPermission('access_permissions')) {
|
|
| 646 | + if ($modx->hasPermission('access_permissions')) {
|
|
| 647 | 647 | ?> |
| 648 | 648 | <!-- User Group Access Permissions --> |
| 649 | 649 | <script type="text/javascript"> |
@@ -671,22 +671,22 @@ discard block |
||
| 671 | 671 | } |
| 672 | 672 | $chk = ''; |
| 673 | 673 | $rs = $modx->getDatabase()->select('name, id', $tbl_membergroup_names, '', 'name');
|
| 674 | - while($row = $modx->getDatabase()->getRow($rs)) {
|
|
| 674 | + while ($row = $modx->getDatabase()->getRow($rs)) {
|
|
| 675 | 675 | $groupsarray = is_numeric($id) && $id > 0 ? $groupsarray : array(); |
| 676 | 676 | $checked = in_array($row['id'], $groupsarray); |
| 677 | - if($modx->hasPermission('access_permissions')) {
|
|
| 678 | - if($checked) {
|
|
| 677 | + if ($modx->hasPermission('access_permissions')) {
|
|
| 678 | + if ($checked) {
|
|
| 679 | 679 | $notPublic = true; |
| 680 | 680 | } |
| 681 | - $chks .= '<label><input type="checkbox" name="usrgroups[]" value="' . $row['id'] . '"' . ($checked ? ' checked="checked"' : '') . ' onclick="makePublic(false)" /> ' . $row['name'] . "</label><br />\n"; |
|
| 681 | + $chks .= '<label><input type="checkbox" name="usrgroups[]" value="'.$row['id'].'"'.($checked ? ' checked="checked"' : '').' onclick="makePublic(false)" /> '.$row['name']."</label><br />\n"; |
|
| 682 | 682 | } else {
|
| 683 | - if($checked) {
|
|
| 684 | - $chks = '<input type="hidden" name="usrgroups[]" value="' . $row['id'] . '" />' . "\n" . $chks; |
|
| 683 | + if ($checked) {
|
|
| 684 | + $chks = '<input type="hidden" name="usrgroups[]" value="'.$row['id'].'" />'."\n".$chks; |
|
| 685 | 685 | } |
| 686 | 686 | } |
| 687 | 687 | } |
| 688 | - if($modx->hasPermission('access_permissions')) {
|
|
| 689 | - $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; |
|
| 688 | + if ($modx->hasPermission('access_permissions')) {
|
|
| 689 | + $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; |
|
| 690 | 690 | } |
| 691 | 691 | echo $chks; |
| 692 | 692 | ?> |
@@ -707,7 +707,7 @@ discard block |
||
| 707 | 707 | <?php |
| 708 | 708 | // invoke OnModFormRender event |
| 709 | 709 | $evtOut = $modx->invokeEvent('OnModFormRender', array('id' => $id));
|
| 710 | - if(is_array($evtOut)) {
|
|
| 710 | + if (is_array($evtOut)) {
|
|
| 711 | 711 | echo implode('', $evtOut);
|
| 712 | 712 | } |
| 713 | 713 | ?> |
@@ -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->getManagerApi()->action) {
|
|
| 5 | +switch($modx->getManagerApi()->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; |
@@ -31,7 +31,7 @@ discard block |
||
| 31 | 31 | |
| 32 | 32 | |
| 33 | 33 | // check to see the module editor isn't locked |
| 34 | -if($lockedEl = $modx->elementIsLocked(6, $id)) {
|
|
| 34 | +if($lockedEl = $modx->elementIsLocked(6, $id)) { |
|
| 35 | 35 | $modx->webAlertAndQuit(sprintf($_lang['lock_msg'], $lockedEl['username'], $_lang['module'])); |
| 36 | 36 | } |
| 37 | 37 | // end check for lock |
@@ -39,22 +39,22 @@ discard block |
||
| 39 | 39 | // Lock snippet for other users to edit |
| 40 | 40 | $modx->lockElement(6, $id); |
| 41 | 41 | |
| 42 | -if(isset($_GET['id'])) {
|
|
| 42 | +if(isset($_GET['id'])) { |
|
| 43 | 43 | $rs = $modx->getDatabase()->select('*', $tbl_site_modules, "id='{$id}'");
|
| 44 | 44 | $content = $modx->getDatabase()->getRow($rs); |
| 45 | - if(!$content) {
|
|
| 45 | + if(!$content) { |
|
| 46 | 46 | $modx->webAlertAndQuit("Module not found for id '{$id}'.");
|
| 47 | 47 | } |
| 48 | 48 | $content['properties'] = str_replace("&", "&", $content['properties']);
|
| 49 | 49 | $_SESSION['itemname'] = $content['name']; |
| 50 | - if($content['locked'] == 1 && $_SESSION['mgrRole'] != 1) {
|
|
| 50 | + if($content['locked'] == 1 && $_SESSION['mgrRole'] != 1) { |
|
| 51 | 51 | $modx->webAlertAndQuit($_lang["error_no_privileges"]); |
| 52 | 52 | } |
| 53 | -} else {
|
|
| 53 | +} else { |
|
| 54 | 54 | $_SESSION['itemname'] = $_lang["new_module"]; |
| 55 | 55 | $content['wrap'] = '1'; |
| 56 | 56 | } |
| 57 | -if($modx->getManagerApi()->hasFormValues()) {
|
|
| 57 | +if($modx->getManagerApi()->hasFormValues()) { |
|
| 58 | 58 | $modx->getManagerApi()->loadFormValues(); |
| 59 | 59 | } |
| 60 | 60 | |
@@ -428,7 +428,7 @@ discard block |
||
| 428 | 428 | <?php |
| 429 | 429 | // invoke OnModFormPrerender event |
| 430 | 430 | $evtOut = $modx->invokeEvent('OnModFormPrerender', array('id' => $id));
|
| 431 | - if(is_array($evtOut)) {
|
|
| 431 | + if(is_array($evtOut)) { |
|
| 432 | 432 | echo implode('', $evtOut);
|
| 433 | 433 | } |
| 434 | 434 | |
@@ -491,7 +491,7 @@ discard block |
||
| 491 | 491 | <option> </option> |
| 492 | 492 | <?php |
| 493 | 493 | include_once(MODX_MANAGER_PATH . 'includes/categories.inc.php'); |
| 494 | - foreach(getCategories() as $n => $v) {
|
|
| 494 | + foreach(getCategories() as $n => $v) { |
|
| 495 | 495 | echo "\t\t\t" . '<option value="' . $v['id'] . '"' . ($content['category'] == $v['id'] ? ' selected="selected"' : '') . '>' . $modx->getPhpCompat()->htmlspecialchars($v['category']) . "</option>\n"; |
| 496 | 496 | } |
| 497 | 497 | ?> |
@@ -643,7 +643,7 @@ discard block |
||
| 643 | 643 | $rs = $modx->getDatabase()->select('usergroup', $tbl_site_module_access, "module='{$id}'");
|
| 644 | 644 | $groupsarray = $modx->getDatabase()->getColumn('usergroup', $rs);
|
| 645 | 645 | |
| 646 | - if($modx->hasPermission('access_permissions')) {
|
|
| 646 | + if($modx->hasPermission('access_permissions')) { |
|
| 647 | 647 | ?> |
| 648 | 648 | <!-- User Group Access Permissions --> |
| 649 | 649 | <script type="text/javascript"> |
@@ -671,21 +671,21 @@ discard block |
||
| 671 | 671 | } |
| 672 | 672 | $chk = ''; |
| 673 | 673 | $rs = $modx->getDatabase()->select('name, id', $tbl_membergroup_names, '', 'name');
|
| 674 | - while($row = $modx->getDatabase()->getRow($rs)) {
|
|
| 674 | + while($row = $modx->getDatabase()->getRow($rs)) { |
|
| 675 | 675 | $groupsarray = is_numeric($id) && $id > 0 ? $groupsarray : array(); |
| 676 | 676 | $checked = in_array($row['id'], $groupsarray); |
| 677 | - if($modx->hasPermission('access_permissions')) {
|
|
| 678 | - if($checked) {
|
|
| 677 | + if($modx->hasPermission('access_permissions')) { |
|
| 678 | + if($checked) { |
|
| 679 | 679 | $notPublic = true; |
| 680 | 680 | } |
| 681 | 681 | $chks .= '<label><input type="checkbox" name="usrgroups[]" value="' . $row['id'] . '"' . ($checked ? ' checked="checked"' : '') . ' onclick="makePublic(false)" /> ' . $row['name'] . "</label><br />\n"; |
| 682 | - } else {
|
|
| 683 | - if($checked) {
|
|
| 682 | + } else { |
|
| 683 | + if($checked) { |
|
| 684 | 684 | $chks = '<input type="hidden" name="usrgroups[]" value="' . $row['id'] . '" />' . "\n" . $chks; |
| 685 | 685 | } |
| 686 | 686 | } |
| 687 | 687 | } |
| 688 | - if($modx->hasPermission('access_permissions')) {
|
|
| 688 | + if($modx->hasPermission('access_permissions')) { |
|
| 689 | 689 | $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; |
| 690 | 690 | } |
| 691 | 691 | echo $chks; |
@@ -707,7 +707,7 @@ discard block |
||
| 707 | 707 | <?php |
| 708 | 708 | // invoke OnModFormRender event |
| 709 | 709 | $evtOut = $modx->invokeEvent('OnModFormRender', array('id' => $id));
|
| 710 | - if(is_array($evtOut)) {
|
|
| 710 | + if(is_array($evtOut)) { |
|
| 711 | 711 | echo implode('', $evtOut);
|
| 712 | 712 | } |
| 713 | 713 | ?> |
@@ -1,15 +1,15 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | if( ! defined('IN_MANAGER_MODE') || IN_MANAGER_MODE !== true) {
|
| 3 | - die("<b>INCLUDE_ORDERING_ERROR</b><br />Please use the EVO Content Manager instead of accessing this file directly.");
|
|
| 3 | + die("<b>INCLUDE_ORDERING_ERROR</b><br />Please use the EVO Content Manager instead of accessing this file directly.");
|
|
| 4 | 4 | } |
| 5 | 5 | if(!$modx->hasPermission('settings')) {
|
| 6 | - $modx->webAlertAndQuit($_lang['error_no_privileges']); |
|
| 6 | + $modx->webAlertAndQuit($_lang['error_no_privileges']); |
|
| 7 | 7 | } |
| 8 | 8 | |
| 9 | 9 | // check to see the edit settings page isn't locked |
| 10 | 10 | $rs = $modx->getDatabase()->select('username', $modx->getFullTableName('active_users'), "action=17 AND internalKey!='" . $modx->getLoginUserID() . "'");
|
| 11 | 11 | if($username = $modx->getDatabase()->getValue($rs)) {
|
| 12 | - $modx->webAlertAndQuit(sprintf($_lang['lock_settings_msg'], $username)); |
|
| 12 | + $modx->webAlertAndQuit(sprintf($_lang['lock_settings_msg'], $username)); |
|
| 13 | 13 | } |
| 14 | 14 | // end check for lock |
| 15 | 15 | |
@@ -19,7 +19,7 @@ discard block |
||
| 19 | 19 | include_once(MODX_MANAGER_PATH . 'includes/default_config.php'); |
| 20 | 20 | $rs = $modx->getDatabase()->select('setting_name, setting_value', '[+prefix+]system_settings');
|
| 21 | 21 | while($row = $modx->getDatabase()->getRow($rs)) {
|
| 22 | - $settings[$row['setting_name']] = $row['setting_value']; |
|
| 22 | + $settings[$row['setting_name']] = $row['setting_value']; |
|
| 23 | 23 | } |
| 24 | 24 | $settings['filemanager_path'] = preg_replace('@^' . preg_quote(MODX_BASE_PATH) . '@', '[(base_path)]', $settings['filemanager_path']);
|
| 25 | 25 | $settings['rb_base_dir'] = preg_replace('@^' . preg_quote(MODX_BASE_PATH) . '@', '[(base_path)]', $settings['rb_base_dir']);
|
@@ -30,11 +30,11 @@ discard block |
||
| 30 | 30 | $lang_keys = array(); |
| 31 | 31 | $dir = dir('includes/lang');
|
| 32 | 32 | while($file = $dir->read()) {
|
| 33 | - if(strpos($file, '.inc.php') > 0) {
|
|
| 34 | - $endpos = strpos($file, '.'); |
|
| 35 | - $languagename = substr($file, 0, $endpos); |
|
| 36 | - $lang_keys[$languagename] = get_lang_keys($file); |
|
| 37 | - } |
|
| 33 | + if(strpos($file, '.inc.php') > 0) {
|
|
| 34 | + $endpos = strpos($file, '.'); |
|
| 35 | + $languagename = substr($file, 0, $endpos); |
|
| 36 | + $lang_keys[$languagename] = get_lang_keys($file); |
|
| 37 | + } |
|
| 38 | 38 | } |
| 39 | 39 | $dir->close(); |
| 40 | 40 | $displayStyle = ($_SESSION['browser'] === 'modern') ? 'table-row' : 'block'; |
@@ -76,14 +76,14 @@ discard block |
||
| 76 | 76 | </script> |
| 77 | 77 | |
| 78 | 78 | <?php |
| 79 | - include_once(MODX_MANAGER_PATH . 'actions/mutate_settings/tab1_site_settings.inc.php'); |
|
| 80 | - include_once(MODX_MANAGER_PATH . 'actions/mutate_settings/tab2_furl_settings.inc.php'); |
|
| 81 | - include_once(MODX_MANAGER_PATH . 'actions/mutate_settings/tab3_user_settings.inc.php'); |
|
| 82 | - include_once(MODX_MANAGER_PATH . 'actions/mutate_settings/tab4_manager_settings.inc.php'); |
|
| 83 | - include_once(MODX_MANAGER_PATH . 'actions/mutate_settings/tab5_security_settings.inc.php'); |
|
| 84 | - include_once(MODX_MANAGER_PATH . 'actions/mutate_settings/tab6_filemanager_settings.inc.php'); |
|
| 85 | - include_once(MODX_MANAGER_PATH . 'actions/mutate_settings/tab7_filebrowser_settings.inc.php'); |
|
| 86 | - ?> |
|
| 79 | + include_once(MODX_MANAGER_PATH . 'actions/mutate_settings/tab1_site_settings.inc.php'); |
|
| 80 | + include_once(MODX_MANAGER_PATH . 'actions/mutate_settings/tab2_furl_settings.inc.php'); |
|
| 81 | + include_once(MODX_MANAGER_PATH . 'actions/mutate_settings/tab3_user_settings.inc.php'); |
|
| 82 | + include_once(MODX_MANAGER_PATH . 'actions/mutate_settings/tab4_manager_settings.inc.php'); |
|
| 83 | + include_once(MODX_MANAGER_PATH . 'actions/mutate_settings/tab5_security_settings.inc.php'); |
|
| 84 | + include_once(MODX_MANAGER_PATH . 'actions/mutate_settings/tab6_filemanager_settings.inc.php'); |
|
| 85 | + include_once(MODX_MANAGER_PATH . 'actions/mutate_settings/tab7_filebrowser_settings.inc.php'); |
|
| 86 | + ?> |
|
| 87 | 87 | </div> |
| 88 | 88 | </div> |
| 89 | 89 | </form> |
@@ -130,5 +130,5 @@ discard block |
||
| 130 | 130 | </script> |
| 131 | 131 | <?php |
| 132 | 132 | if(is_numeric($_GET['tab'])) {
|
| 133 | - echo '<script type="text/javascript">tpSettings.setSelectedIndex( ' . $_GET['tab'] . ' );</script>'; |
|
| 133 | + echo '<script type="text/javascript">tpSettings.setSelectedIndex( ' . $_GET['tab'] . ' );</script>'; |
|
| 134 | 134 | } |
@@ -1,14 +1,14 @@ 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 />Please use the EVO Content Manager instead of accessing this file directly.");
|
| 4 | 4 | } |
| 5 | -if(!$modx->hasPermission('settings')) {
|
|
| 5 | +if (!$modx->hasPermission('settings')) {
|
|
| 6 | 6 | $modx->webAlertAndQuit($_lang['error_no_privileges']); |
| 7 | 7 | } |
| 8 | 8 | |
| 9 | 9 | // check to see the edit settings page isn't locked |
| 10 | -$rs = $modx->getDatabase()->select('username', $modx->getFullTableName('active_users'), "action=17 AND internalKey!='" . $modx->getLoginUserID() . "'");
|
|
| 11 | -if($username = $modx->getDatabase()->getValue($rs)) {
|
|
| 10 | +$rs = $modx->getDatabase()->select('username', $modx->getFullTableName('active_users'), "action=17 AND internalKey!='".$modx->getLoginUserID()."'");
|
|
| 11 | +if ($username = $modx->getDatabase()->getValue($rs)) {
|
|
| 12 | 12 | $modx->webAlertAndQuit(sprintf($_lang['lock_settings_msg'], $username)); |
| 13 | 13 | } |
| 14 | 14 | // end check for lock |
@@ -16,21 +16,21 @@ discard block |
||
| 16 | 16 | // reload system settings from the database. |
| 17 | 17 | // this will prevent user-defined settings from being saved as system setting |
| 18 | 18 | $settings = array(); |
| 19 | -include_once(MODX_MANAGER_PATH . 'includes/default_config.php'); |
|
| 19 | +include_once(MODX_MANAGER_PATH.'includes/default_config.php'); |
|
| 20 | 20 | $rs = $modx->getDatabase()->select('setting_name, setting_value', '[+prefix+]system_settings');
|
| 21 | -while($row = $modx->getDatabase()->getRow($rs)) {
|
|
| 21 | +while ($row = $modx->getDatabase()->getRow($rs)) {
|
|
| 22 | 22 | $settings[$row['setting_name']] = $row['setting_value']; |
| 23 | 23 | } |
| 24 | -$settings['filemanager_path'] = preg_replace('@^' . preg_quote(MODX_BASE_PATH) . '@', '[(base_path)]', $settings['filemanager_path']);
|
|
| 25 | -$settings['rb_base_dir'] = preg_replace('@^' . preg_quote(MODX_BASE_PATH) . '@', '[(base_path)]', $settings['rb_base_dir']);
|
|
| 24 | +$settings['filemanager_path'] = preg_replace('@^'.preg_quote(MODX_BASE_PATH).'@', '[(base_path)]', $settings['filemanager_path']);
|
|
| 25 | +$settings['rb_base_dir'] = preg_replace('@^'.preg_quote(MODX_BASE_PATH).'@', '[(base_path)]', $settings['rb_base_dir']);
|
|
| 26 | 26 | |
| 27 | 27 | extract($settings, EXTR_OVERWRITE); |
| 28 | 28 | |
| 29 | 29 | // load languages and keys |
| 30 | 30 | $lang_keys = array(); |
| 31 | 31 | $dir = dir('includes/lang');
|
| 32 | -while($file = $dir->read()) {
|
|
| 33 | - if(strpos($file, '.inc.php') > 0) {
|
|
| 32 | +while ($file = $dir->read()) {
|
|
| 33 | + if (strpos($file, '.inc.php') > 0) {
|
|
| 34 | 34 | $endpos = strpos($file, '.'); |
| 35 | 35 | $languagename = substr($file, 0, $endpos); |
| 36 | 36 | $lang_keys[$languagename] = get_lang_keys($file); |
@@ -67,7 +67,7 @@ discard block |
||
| 67 | 67 | <input type="hidden" name="site_id" value="<?php echo $site_id; ?>" /> |
| 68 | 68 | <input type="hidden" name="settings_version" value="<?php echo $modx->getVersionData('version'); ?>" />
|
| 69 | 69 | <!-- this field is used to check site settings have been entered/ updated after install or upgrade --> |
| 70 | - <?php if(!isset($settings_version) || $settings_version != $modx->getVersionData('version')) { ?>
|
|
| 70 | + <?php if (!isset($settings_version) || $settings_version != $modx->getVersionData('version')) { ?>
|
|
| 71 | 71 | <div class='sectionBody'><p class='element-edit-message-tab alert alert-warning'><?php echo $_lang['settings_after_install']; ?></p></div> |
| 72 | 72 | <?php } ?> |
| 73 | 73 | <div class="tab-pane" id="settingsPane"> |
@@ -76,13 +76,13 @@ discard block |
||
| 76 | 76 | </script> |
| 77 | 77 | |
| 78 | 78 | <?php |
| 79 | - include_once(MODX_MANAGER_PATH . 'actions/mutate_settings/tab1_site_settings.inc.php'); |
|
| 80 | - include_once(MODX_MANAGER_PATH . 'actions/mutate_settings/tab2_furl_settings.inc.php'); |
|
| 81 | - include_once(MODX_MANAGER_PATH . 'actions/mutate_settings/tab3_user_settings.inc.php'); |
|
| 82 | - include_once(MODX_MANAGER_PATH . 'actions/mutate_settings/tab4_manager_settings.inc.php'); |
|
| 83 | - include_once(MODX_MANAGER_PATH . 'actions/mutate_settings/tab5_security_settings.inc.php'); |
|
| 84 | - include_once(MODX_MANAGER_PATH . 'actions/mutate_settings/tab6_filemanager_settings.inc.php'); |
|
| 85 | - include_once(MODX_MANAGER_PATH . 'actions/mutate_settings/tab7_filebrowser_settings.inc.php'); |
|
| 79 | + include_once(MODX_MANAGER_PATH.'actions/mutate_settings/tab1_site_settings.inc.php'); |
|
| 80 | + include_once(MODX_MANAGER_PATH.'actions/mutate_settings/tab2_furl_settings.inc.php'); |
|
| 81 | + include_once(MODX_MANAGER_PATH.'actions/mutate_settings/tab3_user_settings.inc.php'); |
|
| 82 | + include_once(MODX_MANAGER_PATH.'actions/mutate_settings/tab4_manager_settings.inc.php'); |
|
| 83 | + include_once(MODX_MANAGER_PATH.'actions/mutate_settings/tab5_security_settings.inc.php'); |
|
| 84 | + include_once(MODX_MANAGER_PATH.'actions/mutate_settings/tab6_filemanager_settings.inc.php'); |
|
| 85 | + include_once(MODX_MANAGER_PATH.'actions/mutate_settings/tab7_filebrowser_settings.inc.php'); |
|
| 86 | 86 | ?> |
| 87 | 87 | </div> |
| 88 | 88 | </div> |
@@ -129,6 +129,6 @@ discard block |
||
| 129 | 129 | }); |
| 130 | 130 | </script> |
| 131 | 131 | <?php |
| 132 | -if(is_numeric($_GET['tab'])) {
|
|
| 133 | - echo '<script type="text/javascript">tpSettings.setSelectedIndex( ' . $_GET['tab'] . ' );</script>'; |
|
| 132 | +if (is_numeric($_GET['tab'])) {
|
|
| 133 | + echo '<script type="text/javascript">tpSettings.setSelectedIndex( '.$_GET['tab'].' );</script>'; |
|
| 134 | 134 | } |
@@ -1,14 +1,14 @@ 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 />Please use the EVO Content Manager instead of accessing this file directly.");
|
| 4 | 4 | } |
| 5 | -if(!$modx->hasPermission('settings')) {
|
|
| 5 | +if(!$modx->hasPermission('settings')) { |
|
| 6 | 6 | $modx->webAlertAndQuit($_lang['error_no_privileges']); |
| 7 | 7 | } |
| 8 | 8 | |
| 9 | 9 | // check to see the edit settings page isn't locked |
| 10 | 10 | $rs = $modx->getDatabase()->select('username', $modx->getFullTableName('active_users'), "action=17 AND internalKey!='" . $modx->getLoginUserID() . "'");
|
| 11 | -if($username = $modx->getDatabase()->getValue($rs)) {
|
|
| 11 | +if($username = $modx->getDatabase()->getValue($rs)) { |
|
| 12 | 12 | $modx->webAlertAndQuit(sprintf($_lang['lock_settings_msg'], $username)); |
| 13 | 13 | } |
| 14 | 14 | // end check for lock |
@@ -18,7 +18,7 @@ discard block |
||
| 18 | 18 | $settings = array(); |
| 19 | 19 | include_once(MODX_MANAGER_PATH . 'includes/default_config.php'); |
| 20 | 20 | $rs = $modx->getDatabase()->select('setting_name, setting_value', '[+prefix+]system_settings');
|
| 21 | -while($row = $modx->getDatabase()->getRow($rs)) {
|
|
| 21 | +while($row = $modx->getDatabase()->getRow($rs)) { |
|
| 22 | 22 | $settings[$row['setting_name']] = $row['setting_value']; |
| 23 | 23 | } |
| 24 | 24 | $settings['filemanager_path'] = preg_replace('@^' . preg_quote(MODX_BASE_PATH) . '@', '[(base_path)]', $settings['filemanager_path']);
|
@@ -29,8 +29,8 @@ discard block |
||
| 29 | 29 | // load languages and keys |
| 30 | 30 | $lang_keys = array(); |
| 31 | 31 | $dir = dir('includes/lang');
|
| 32 | -while($file = $dir->read()) {
|
|
| 33 | - if(strpos($file, '.inc.php') > 0) {
|
|
| 32 | +while($file = $dir->read()) { |
|
| 33 | + if(strpos($file, '.inc.php') > 0) { |
|
| 34 | 34 | $endpos = strpos($file, '.'); |
| 35 | 35 | $languagename = substr($file, 0, $endpos); |
| 36 | 36 | $lang_keys[$languagename] = get_lang_keys($file); |
@@ -129,6 +129,6 @@ discard block |
||
| 129 | 129 | }); |
| 130 | 130 | </script> |
| 131 | 131 | <?php |
| 132 | -if(is_numeric($_GET['tab'])) {
|
|
| 132 | +if(is_numeric($_GET['tab'])) { |
|
| 133 | 133 | echo '<script type="text/javascript">tpSettings.setSelectedIndex( ' . $_GET['tab'] . ' );</script>'; |
| 134 | 134 | } |
@@ -1,9 +1,9 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | if( ! defined('IN_MANAGER_MODE') || IN_MANAGER_MODE !== true) { |
| 3 | - die("<b>INCLUDE_ORDERING_ERROR</b><br /><br />Please use the EVO Content Manager instead of accessing this file directly."); |
|
| 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('access_permissions')) { |
| 6 | - $modx->webAlertAndQuit($_lang["error_no_privileges"]); |
|
| 6 | + $modx->webAlertAndQuit($_lang["error_no_privileges"]); |
|
| 7 | 7 | } |
| 8 | 8 | |
| 9 | 9 | // Get table names (alphabetical) |
@@ -18,24 +18,24 @@ discard block |
||
| 18 | 18 | // find all document groups, for the select :) |
| 19 | 19 | $rs = $modx->getDatabase()->select('*', $tbl_documentgroup_names, '', 'name'); |
| 20 | 20 | if($modx->getDatabase()->getRecordCount($rs) < 1) { |
| 21 | - $docgroupselector = '[no groups to add]'; |
|
| 21 | + $docgroupselector = '[no groups to add]'; |
|
| 22 | 22 | } else { |
| 23 | - $docgroupselector = '<select name="docgroup">' . "\n"; |
|
| 24 | - while($row = $modx->getDatabase()->getRow($rs)) { |
|
| 25 | - $docgroupselector .= "\t" . '<option value="' . $row['id'] . '">' . $row['name'] . "</option>\n"; |
|
| 26 | - } |
|
| 27 | - $docgroupselector .= "</select>\n"; |
|
| 23 | + $docgroupselector = '<select name="docgroup">' . "\n"; |
|
| 24 | + while($row = $modx->getDatabase()->getRow($rs)) { |
|
| 25 | + $docgroupselector .= "\t" . '<option value="' . $row['id'] . '">' . $row['name'] . "</option>\n"; |
|
| 26 | + } |
|
| 27 | + $docgroupselector .= "</select>\n"; |
|
| 28 | 28 | } |
| 29 | 29 | |
| 30 | 30 | $rs = $modx->getDatabase()->select('*', $tbl_membergroup_names, '', 'name'); |
| 31 | 31 | if($modx->getDatabase()->getRecordCount($rs) < 1) { |
| 32 | - $usrgroupselector = '[no user groups]'; |
|
| 32 | + $usrgroupselector = '[no user groups]'; |
|
| 33 | 33 | } else { |
| 34 | - $usrgroupselector = '<select name="usergroup">' . "\n"; |
|
| 35 | - while($row = $modx->getDatabase()->getRow($rs)) { |
|
| 36 | - $usrgroupselector .= "\t" . '<option value="' . $row['id'] . '">' . $row['name'] . "</option>\n"; |
|
| 37 | - } |
|
| 38 | - $usrgroupselector .= "</select>\n"; |
|
| 34 | + $usrgroupselector = '<select name="usergroup">' . "\n"; |
|
| 35 | + while($row = $modx->getDatabase()->getRow($rs)) { |
|
| 36 | + $usrgroupselector .= "\t" . '<option value="' . $row['id'] . '">' . $row['name'] . "</option>\n"; |
|
| 37 | + } |
|
| 38 | + $usrgroupselector .= "</select>\n"; |
|
| 39 | 39 | } |
| 40 | 40 | |
| 41 | 41 | ?> |
@@ -96,24 +96,24 @@ discard block |
||
| 96 | 96 | </form> |
| 97 | 97 | </div> |
| 98 | 98 | <?php |
| 99 | - $rs = $modx->getDatabase()->select('groupnames.*, users.id AS user_id, users.username user_name', $tbl_membergroup_names . ' AS groupnames |
|
| 99 | + $rs = $modx->getDatabase()->select('groupnames.*, users.id AS user_id, users.username user_name', $tbl_membergroup_names . ' AS groupnames |
|
| 100 | 100 | LEFT JOIN ' . $tbl_member_groups . ' AS groups ON groups.user_group = groupnames.id |
| 101 | 101 | LEFT JOIN ' . $tbl_manager_users . ' AS users ON users.id = groups.member', '', 'groupnames.name, user_name'); |
| 102 | - if($modx->getDatabase()->getRecordCount($rs) < 1) { |
|
| 103 | - ?> |
|
| 102 | + if($modx->getDatabase()->getRecordCount($rs) < 1) { |
|
| 103 | + ?> |
|
| 104 | 104 | <div class="text-danger"><?= $_lang['no_groups_found'] ?></div> |
| 105 | 105 | <?php |
| 106 | - } else { |
|
| 107 | - ?> |
|
| 106 | + } else { |
|
| 107 | + ?> |
|
| 108 | 108 | <div class="form-group"> |
| 109 | 109 | <?php |
| 110 | - $pid = ''; |
|
| 111 | - while($row = $modx->getDatabase()->getRow($rs)) { |
|
| 112 | - if($pid != $row['id']) { |
|
| 113 | - if($pid != '') { |
|
| 114 | - echo '</div><div class="form-group">'; |
|
| 115 | - } |
|
| 116 | - ?> |
|
| 110 | + $pid = ''; |
|
| 111 | + while($row = $modx->getDatabase()->getRow($rs)) { |
|
| 112 | + if($pid != $row['id']) { |
|
| 113 | + if($pid != '') { |
|
| 114 | + echo '</div><div class="form-group">'; |
|
| 115 | + } |
|
| 116 | + ?> |
|
| 117 | 117 | <form method="post" action="index.php" name="accesspermissions"> |
| 118 | 118 | <input type="hidden" name="a" value="41" /> |
| 119 | 119 | <input type="hidden" name="groupid" value="<?= $row['id'] ?>" /> |
@@ -128,21 +128,21 @@ discard block |
||
| 128 | 128 | </form> |
| 129 | 129 | <?= $_lang['access_permissions_users_in_group'] ?> |
| 130 | 130 | <?php |
| 131 | - } |
|
| 132 | - if(!$row['user_id']) { |
|
| 133 | - ?> |
|
| 131 | + } |
|
| 132 | + if(!$row['user_id']) { |
|
| 133 | + ?> |
|
| 134 | 134 | <i><?= $_lang['access_permissions_no_users_in_group'] ?></i> |
| 135 | 135 | <?php |
| 136 | - $pid = $row['id']; |
|
| 137 | - continue; |
|
| 138 | - } |
|
| 139 | - ?> |
|
| 136 | + $pid = $row['id']; |
|
| 137 | + continue; |
|
| 138 | + } |
|
| 139 | + ?> |
|
| 140 | 140 | <?= ($pid == $row['id'] ? ', ' : '') ?><a href="index.php?a=12&id=<?= $row['user_id'] ?>"><?= $row['user_name'] ?></a> |
| 141 | 141 | <?php |
| 142 | - $pid = $row['id']; |
|
| 143 | - } |
|
| 144 | - } |
|
| 145 | - ?> |
|
| 142 | + $pid = $row['id']; |
|
| 143 | + } |
|
| 144 | + } |
|
| 145 | + ?> |
|
| 146 | 146 | </div> |
| 147 | 147 | </div> |
| 148 | 148 | </div> |
@@ -167,24 +167,24 @@ discard block |
||
| 167 | 167 | </form> |
| 168 | 168 | </div> |
| 169 | 169 | <?php |
| 170 | - $rs = $modx->getDatabase()->select('dgnames.id, dgnames.name, sc.id AS doc_id, sc.pagetitle AS doc_title', $tbl_documentgroup_names . ' AS dgnames |
|
| 170 | + $rs = $modx->getDatabase()->select('dgnames.id, dgnames.name, sc.id AS doc_id, sc.pagetitle AS doc_title', $tbl_documentgroup_names . ' AS dgnames |
|
| 171 | 171 | LEFT JOIN ' . $tbl_document_groups . ' AS dg ON dg.document_group = dgnames.id |
| 172 | 172 | LEFT JOIN ' . $tbl_site_content . ' AS sc ON sc.id = dg.document', '', 'dgnames.name, sc.id'); |
| 173 | - if($modx->getDatabase()->getRecordCount($rs) < 1) { |
|
| 174 | - ?> |
|
| 173 | + if($modx->getDatabase()->getRecordCount($rs) < 1) { |
|
| 174 | + ?> |
|
| 175 | 175 | <div class="text-danger"><?= $_lang['no_groups_found'] ?></div> |
| 176 | 176 | <?php |
| 177 | - } else { |
|
| 178 | - ?> |
|
| 177 | + } else { |
|
| 178 | + ?> |
|
| 179 | 179 | <div class="form-group"> |
| 180 | 180 | <?php |
| 181 | - $pid = ''; |
|
| 182 | - while($row = $modx->getDatabase()->getRow($rs)) { |
|
| 183 | - if($pid != $row['id']) { |
|
| 184 | - if($pid != '') { |
|
| 185 | - echo '</div><div class="form-group">'; |
|
| 186 | - } |
|
| 187 | - ?> |
|
| 181 | + $pid = ''; |
|
| 182 | + while($row = $modx->getDatabase()->getRow($rs)) { |
|
| 183 | + if($pid != $row['id']) { |
|
| 184 | + if($pid != '') { |
|
| 185 | + echo '</div><div class="form-group">'; |
|
| 186 | + } |
|
| 187 | + ?> |
|
| 188 | 188 | <form method="post" action="index.php" name="accesspermissions"> |
| 189 | 189 | <input type="hidden" name="a" value="41" /> |
| 190 | 190 | <input type="hidden" name="groupid" value="<?= $row['id'] ?>" /> |
@@ -199,21 +199,21 @@ discard block |
||
| 199 | 199 | </form> |
| 200 | 200 | <?= $_lang['access_permissions_resources_in_group'] ?> |
| 201 | 201 | <?php |
| 202 | - } |
|
| 203 | - if(!$row['doc_id']) { |
|
| 204 | - ?> |
|
| 202 | + } |
|
| 203 | + if(!$row['doc_id']) { |
|
| 204 | + ?> |
|
| 205 | 205 | <i><?= $_lang['access_permissions_no_resources_in_group'] ?></i> |
| 206 | 206 | <?php |
| 207 | - $pid = $row['id']; |
|
| 208 | - continue; |
|
| 209 | - } |
|
| 210 | - ?> |
|
| 207 | + $pid = $row['id']; |
|
| 208 | + continue; |
|
| 209 | + } |
|
| 210 | + ?> |
|
| 211 | 211 | <?= ($pid == $row['id'] ? ', ' : '') ?><a href="index.php?a=3&id=<?= $row['doc_id'] ?>" title="<?= $modx->getPhpCompat()->htmlspecialchars($row['doc_title']) ?>"><?= $row['doc_id'] ?></a> |
| 212 | 212 | <?php |
| 213 | - $pid = $row['id']; |
|
| 214 | - } |
|
| 215 | - } |
|
| 216 | - ?> |
|
| 213 | + $pid = $row['id']; |
|
| 214 | + } |
|
| 215 | + } |
|
| 216 | + ?> |
|
| 217 | 217 | </div> |
| 218 | 218 | </div> |
| 219 | 219 | </div> |
@@ -225,16 +225,16 @@ discard block |
||
| 225 | 225 | <div class="container container-body"> |
| 226 | 226 | <p class="element-edit-message-tab alert alert-warning"><?= $_lang['access_permissions_links_tab'] ?></p> |
| 227 | 227 | <?php |
| 228 | - // User/Document Group Links |
|
| 229 | - $rs = $modx->getDatabase()->select('groupnames.*, groupacc.id AS link_id, dgnames.id AS dg_id, dgnames.name AS dg_name', $tbl_membergroup_names . ' AS groupnames |
|
| 228 | + // User/Document Group Links |
|
| 229 | + $rs = $modx->getDatabase()->select('groupnames.*, groupacc.id AS link_id, dgnames.id AS dg_id, dgnames.name AS dg_name', $tbl_membergroup_names . ' AS groupnames |
|
| 230 | 230 | LEFT JOIN ' . $tbl_membergroup_access . ' AS groupacc ON groupacc.membergroup = groupnames.id |
| 231 | 231 | LEFT JOIN ' . $tbl_documentgroup_names . ' AS dgnames ON dgnames.id = groupacc.documentgroup', '', 'name, dg_name'); |
| 232 | - if($modx->getDatabase()->getRecordCount($rs) < 1) { |
|
| 233 | - ?> |
|
| 232 | + if($modx->getDatabase()->getRecordCount($rs) < 1) { |
|
| 233 | + ?> |
|
| 234 | 234 | <div class="text-danger"><?= $_lang['no_groups_found'] ?></div> |
| 235 | 235 | <?php |
| 236 | - } else { |
|
| 237 | - ?> |
|
| 236 | + } else { |
|
| 237 | + ?> |
|
| 238 | 238 | <div class="form-group"> |
| 239 | 239 | <b><?= $_lang["access_permissions_group_link"] ?></b> |
| 240 | 240 | <form method="post" action="index.php" name="accesspermissions"> |
@@ -250,38 +250,38 @@ discard block |
||
| 250 | 250 | <hr> |
| 251 | 251 | <ul> |
| 252 | 252 | <?php |
| 253 | - $pid = ''; |
|
| 254 | - while($row = $modx->getDatabase()->getRow($rs)) { |
|
| 255 | - if($row['id'] != $pid) { |
|
| 256 | - if($pid != '') { |
|
| 257 | - echo '</ul></li>'; |
|
| 258 | - } // close previous one |
|
| 259 | - ?> |
|
| 253 | + $pid = ''; |
|
| 254 | + while($row = $modx->getDatabase()->getRow($rs)) { |
|
| 255 | + if($row['id'] != $pid) { |
|
| 256 | + if($pid != '') { |
|
| 257 | + echo '</ul></li>'; |
|
| 258 | + } // close previous one |
|
| 259 | + ?> |
|
| 260 | 260 | <li><b><?= $row['name'] ?></b></li> |
| 261 | 261 | <?php |
| 262 | - if(!$row['dg_id']) { |
|
| 263 | - echo '<i>' . $_lang['no_groups_found'] . '</i></li>'; |
|
| 264 | - $pid = ''; |
|
| 265 | - continue; |
|
| 266 | - } else { |
|
| 267 | - echo '<ul>'; |
|
| 268 | - } |
|
| 269 | - } |
|
| 270 | - if(!$row['dg_id']) { |
|
| 271 | - continue; |
|
| 272 | - } |
|
| 273 | - ?> |
|
| 262 | + if(!$row['dg_id']) { |
|
| 263 | + echo '<i>' . $_lang['no_groups_found'] . '</i></li>'; |
|
| 264 | + $pid = ''; |
|
| 265 | + continue; |
|
| 266 | + } else { |
|
| 267 | + echo '<ul>'; |
|
| 268 | + } |
|
| 269 | + } |
|
| 270 | + if(!$row['dg_id']) { |
|
| 271 | + continue; |
|
| 272 | + } |
|
| 273 | + ?> |
|
| 274 | 274 | <li><?= $row['dg_name'] ?> |
| 275 | 275 | <small><i>(<a class="text-danger" href="index.php?a=41&coupling=<?= $row['link_id'] ?>&operation=remove_document_group_from_user_group"><?= $_lang['remove'] ?></a>)</i></small> |
| 276 | 276 | </li> |
| 277 | 277 | <?php |
| 278 | - $pid = $row['id']; |
|
| 279 | - } |
|
| 280 | - ?> |
|
| 278 | + $pid = $row['id']; |
|
| 279 | + } |
|
| 280 | + ?> |
|
| 281 | 281 | </ul> |
| 282 | 282 | <?php |
| 283 | - } |
|
| 284 | - ?> |
|
| 283 | + } |
|
| 284 | + ?> |
|
| 285 | 285 | </div> |
| 286 | 286 | </div> |
| 287 | 287 | |
@@ -1,8 +1,8 @@ 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 | -if(!$modx->hasPermission('access_permissions')) { |
|
| 5 | +if (!$modx->hasPermission('access_permissions')) { |
|
| 6 | 6 | $modx->webAlertAndQuit($_lang["error_no_privileges"]); |
| 7 | 7 | } |
| 8 | 8 | |
@@ -17,23 +17,23 @@ discard block |
||
| 17 | 17 | |
| 18 | 18 | // find all document groups, for the select :) |
| 19 | 19 | $rs = $modx->getDatabase()->select('*', $tbl_documentgroup_names, '', 'name'); |
| 20 | -if($modx->getDatabase()->getRecordCount($rs) < 1) { |
|
| 20 | +if ($modx->getDatabase()->getRecordCount($rs) < 1) { |
|
| 21 | 21 | $docgroupselector = '[no groups to add]'; |
| 22 | 22 | } else { |
| 23 | - $docgroupselector = '<select name="docgroup">' . "\n"; |
|
| 24 | - while($row = $modx->getDatabase()->getRow($rs)) { |
|
| 25 | - $docgroupselector .= "\t" . '<option value="' . $row['id'] . '">' . $row['name'] . "</option>\n"; |
|
| 23 | + $docgroupselector = '<select name="docgroup">'."\n"; |
|
| 24 | + while ($row = $modx->getDatabase()->getRow($rs)) { |
|
| 25 | + $docgroupselector .= "\t".'<option value="'.$row['id'].'">'.$row['name']."</option>\n"; |
|
| 26 | 26 | } |
| 27 | 27 | $docgroupselector .= "</select>\n"; |
| 28 | 28 | } |
| 29 | 29 | |
| 30 | 30 | $rs = $modx->getDatabase()->select('*', $tbl_membergroup_names, '', 'name'); |
| 31 | -if($modx->getDatabase()->getRecordCount($rs) < 1) { |
|
| 31 | +if ($modx->getDatabase()->getRecordCount($rs) < 1) { |
|
| 32 | 32 | $usrgroupselector = '[no user groups]'; |
| 33 | 33 | } else { |
| 34 | - $usrgroupselector = '<select name="usergroup">' . "\n"; |
|
| 35 | - while($row = $modx->getDatabase()->getRow($rs)) { |
|
| 36 | - $usrgroupselector .= "\t" . '<option value="' . $row['id'] . '">' . $row['name'] . "</option>\n"; |
|
| 34 | + $usrgroupselector = '<select name="usergroup">'."\n"; |
|
| 35 | + while ($row = $modx->getDatabase()->getRow($rs)) { |
|
| 36 | + $usrgroupselector .= "\t".'<option value="'.$row['id'].'">'.$row['name']."</option>\n"; |
|
| 37 | 37 | } |
| 38 | 38 | $usrgroupselector .= "</select>\n"; |
| 39 | 39 | } |
@@ -69,7 +69,7 @@ discard block |
||
| 69 | 69 | <div class="alert alert-info"><?= $_lang['access_permissions_introtext'] ?></div> |
| 70 | 70 | </div> |
| 71 | 71 | |
| 72 | -<div class="container"><?= ($use_udperms != 1 ? '<div class="alert alert-danger">' . $_lang['access_permissions_off'] . '</div>' : '') ?></div> |
|
| 72 | +<div class="container"><?= ($use_udperms != 1 ? '<div class="alert alert-danger">'.$_lang['access_permissions_off'].'</div>' : '') ?></div> |
|
| 73 | 73 | |
| 74 | 74 | <div class="tab-pane" id="uapPane"> |
| 75 | 75 | <script type="text/javascript"> |
@@ -96,10 +96,10 @@ discard block |
||
| 96 | 96 | </form> |
| 97 | 97 | </div> |
| 98 | 98 | <?php |
| 99 | - $rs = $modx->getDatabase()->select('groupnames.*, users.id AS user_id, users.username user_name', $tbl_membergroup_names . ' AS groupnames |
|
| 100 | - LEFT JOIN ' . $tbl_member_groups . ' AS groups ON groups.user_group = groupnames.id |
|
| 101 | - LEFT JOIN ' . $tbl_manager_users . ' AS users ON users.id = groups.member', '', 'groupnames.name, user_name'); |
|
| 102 | - if($modx->getDatabase()->getRecordCount($rs) < 1) { |
|
| 99 | + $rs = $modx->getDatabase()->select('groupnames.*, users.id AS user_id, users.username user_name', $tbl_membergroup_names.' AS groupnames |
|
| 100 | + LEFT JOIN ' . $tbl_member_groups.' AS groups ON groups.user_group = groupnames.id |
|
| 101 | + LEFT JOIN ' . $tbl_manager_users.' AS users ON users.id = groups.member', '', 'groupnames.name, user_name'); |
|
| 102 | + if ($modx->getDatabase()->getRecordCount($rs) < 1) { |
|
| 103 | 103 | ?> |
| 104 | 104 | <div class="text-danger"><?= $_lang['no_groups_found'] ?></div> |
| 105 | 105 | <?php |
@@ -108,9 +108,9 @@ discard block |
||
| 108 | 108 | <div class="form-group"> |
| 109 | 109 | <?php |
| 110 | 110 | $pid = ''; |
| 111 | - while($row = $modx->getDatabase()->getRow($rs)) { |
|
| 112 | - if($pid != $row['id']) { |
|
| 113 | - if($pid != '') { |
|
| 111 | + while ($row = $modx->getDatabase()->getRow($rs)) { |
|
| 112 | + if ($pid != $row['id']) { |
|
| 113 | + if ($pid != '') { |
|
| 114 | 114 | echo '</div><div class="form-group">'; |
| 115 | 115 | } |
| 116 | 116 | ?> |
@@ -129,7 +129,7 @@ discard block |
||
| 129 | 129 | <?= $_lang['access_permissions_users_in_group'] ?> |
| 130 | 130 | <?php |
| 131 | 131 | } |
| 132 | - if(!$row['user_id']) { |
|
| 132 | + if (!$row['user_id']) { |
|
| 133 | 133 | ?> |
| 134 | 134 | <i><?= $_lang['access_permissions_no_users_in_group'] ?></i> |
| 135 | 135 | <?php |
@@ -167,10 +167,10 @@ discard block |
||
| 167 | 167 | </form> |
| 168 | 168 | </div> |
| 169 | 169 | <?php |
| 170 | - $rs = $modx->getDatabase()->select('dgnames.id, dgnames.name, sc.id AS doc_id, sc.pagetitle AS doc_title', $tbl_documentgroup_names . ' AS dgnames |
|
| 171 | - LEFT JOIN ' . $tbl_document_groups . ' AS dg ON dg.document_group = dgnames.id |
|
| 172 | - LEFT JOIN ' . $tbl_site_content . ' AS sc ON sc.id = dg.document', '', 'dgnames.name, sc.id'); |
|
| 173 | - if($modx->getDatabase()->getRecordCount($rs) < 1) { |
|
| 170 | + $rs = $modx->getDatabase()->select('dgnames.id, dgnames.name, sc.id AS doc_id, sc.pagetitle AS doc_title', $tbl_documentgroup_names.' AS dgnames |
|
| 171 | + LEFT JOIN ' . $tbl_document_groups.' AS dg ON dg.document_group = dgnames.id |
|
| 172 | + LEFT JOIN ' . $tbl_site_content.' AS sc ON sc.id = dg.document', '', 'dgnames.name, sc.id'); |
|
| 173 | + if ($modx->getDatabase()->getRecordCount($rs) < 1) { |
|
| 174 | 174 | ?> |
| 175 | 175 | <div class="text-danger"><?= $_lang['no_groups_found'] ?></div> |
| 176 | 176 | <?php |
@@ -179,9 +179,9 @@ discard block |
||
| 179 | 179 | <div class="form-group"> |
| 180 | 180 | <?php |
| 181 | 181 | $pid = ''; |
| 182 | - while($row = $modx->getDatabase()->getRow($rs)) { |
|
| 183 | - if($pid != $row['id']) { |
|
| 184 | - if($pid != '') { |
|
| 182 | + while ($row = $modx->getDatabase()->getRow($rs)) { |
|
| 183 | + if ($pid != $row['id']) { |
|
| 184 | + if ($pid != '') { |
|
| 185 | 185 | echo '</div><div class="form-group">'; |
| 186 | 186 | } |
| 187 | 187 | ?> |
@@ -200,7 +200,7 @@ discard block |
||
| 200 | 200 | <?= $_lang['access_permissions_resources_in_group'] ?> |
| 201 | 201 | <?php |
| 202 | 202 | } |
| 203 | - if(!$row['doc_id']) { |
|
| 203 | + if (!$row['doc_id']) { |
|
| 204 | 204 | ?> |
| 205 | 205 | <i><?= $_lang['access_permissions_no_resources_in_group'] ?></i> |
| 206 | 206 | <?php |
@@ -226,10 +226,10 @@ discard block |
||
| 226 | 226 | <p class="element-edit-message-tab alert alert-warning"><?= $_lang['access_permissions_links_tab'] ?></p> |
| 227 | 227 | <?php |
| 228 | 228 | // User/Document Group Links |
| 229 | - $rs = $modx->getDatabase()->select('groupnames.*, groupacc.id AS link_id, dgnames.id AS dg_id, dgnames.name AS dg_name', $tbl_membergroup_names . ' AS groupnames |
|
| 230 | - LEFT JOIN ' . $tbl_membergroup_access . ' AS groupacc ON groupacc.membergroup = groupnames.id |
|
| 231 | - LEFT JOIN ' . $tbl_documentgroup_names . ' AS dgnames ON dgnames.id = groupacc.documentgroup', '', 'name, dg_name'); |
|
| 232 | - if($modx->getDatabase()->getRecordCount($rs) < 1) { |
|
| 229 | + $rs = $modx->getDatabase()->select('groupnames.*, groupacc.id AS link_id, dgnames.id AS dg_id, dgnames.name AS dg_name', $tbl_membergroup_names.' AS groupnames |
|
| 230 | + LEFT JOIN ' . $tbl_membergroup_access.' AS groupacc ON groupacc.membergroup = groupnames.id |
|
| 231 | + LEFT JOIN ' . $tbl_documentgroup_names.' AS dgnames ON dgnames.id = groupacc.documentgroup', '', 'name, dg_name'); |
|
| 232 | + if ($modx->getDatabase()->getRecordCount($rs) < 1) { |
|
| 233 | 233 | ?> |
| 234 | 234 | <div class="text-danger"><?= $_lang['no_groups_found'] ?></div> |
| 235 | 235 | <?php |
@@ -251,23 +251,23 @@ discard block |
||
| 251 | 251 | <ul> |
| 252 | 252 | <?php |
| 253 | 253 | $pid = ''; |
| 254 | - while($row = $modx->getDatabase()->getRow($rs)) { |
|
| 255 | - if($row['id'] != $pid) { |
|
| 256 | - if($pid != '') { |
|
| 254 | + while ($row = $modx->getDatabase()->getRow($rs)) { |
|
| 255 | + if ($row['id'] != $pid) { |
|
| 256 | + if ($pid != '') { |
|
| 257 | 257 | echo '</ul></li>'; |
| 258 | 258 | } // close previous one |
| 259 | 259 | ?> |
| 260 | 260 | <li><b><?= $row['name'] ?></b></li> |
| 261 | 261 | <?php |
| 262 | - if(!$row['dg_id']) { |
|
| 263 | - echo '<i>' . $_lang['no_groups_found'] . '</i></li>'; |
|
| 262 | + if (!$row['dg_id']) { |
|
| 263 | + echo '<i>'.$_lang['no_groups_found'].'</i></li>'; |
|
| 264 | 264 | $pid = ''; |
| 265 | 265 | continue; |
| 266 | 266 | } else { |
| 267 | 267 | echo '<ul>'; |
| 268 | 268 | } |
| 269 | 269 | } |
| 270 | - if(!$row['dg_id']) { |
|
| 270 | + if (!$row['dg_id']) { |
|
| 271 | 271 | continue; |
| 272 | 272 | } |
| 273 | 273 | ?> |
@@ -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_plugin')) { |
@@ -11,7 +11,7 @@ discard block |
||
| 11 | 11 | $updateMsg = ''; |
| 12 | 12 | |
| 13 | 13 | if (isset($_POST['listSubmitted'])) { |
| 14 | - $updateMsg .= '<span class="text-success" id="updated">' . $_lang['sort_updated'] . '</span>'; |
|
| 14 | + $updateMsg .= '<span class="text-success" id="updated">'.$_lang['sort_updated'].'</span>'; |
|
| 15 | 15 | $tbl = $modx->getFullTableName('site_plugin_events'); |
| 16 | 16 | |
| 17 | 17 | foreach ($_POST as $listName => $listValue) { |
@@ -34,9 +34,9 @@ discard block |
||
| 34 | 34 | $modx->clearCache('full'); |
| 35 | 35 | } |
| 36 | 36 | |
| 37 | -$rs = $modx->getDatabase()->select("sysevt.name as evtname, sysevt.id as evtid, pe.pluginid, plugs.name, pe.priority, plugs.disabled", $modx->getFullTableName('system_eventnames') . " sysevt |
|
| 38 | - INNER JOIN " . $modx->getFullTableName('site_plugin_events') . " pe ON pe.evtid = sysevt.id |
|
| 39 | - INNER JOIN " . $modx->getFullTableName('site_plugins') . " plugs ON plugs.id = pe.pluginid", '', 'sysevt.name,pe.priority'); |
|
| 37 | +$rs = $modx->getDatabase()->select("sysevt.name as evtname, sysevt.id as evtid, pe.pluginid, plugs.name, pe.priority, plugs.disabled", $modx->getFullTableName('system_eventnames')." sysevt |
|
| 38 | + INNER JOIN " . $modx->getFullTableName('site_plugin_events')." pe ON pe.evtid = sysevt.id |
|
| 39 | + INNER JOIN " . $modx->getFullTableName('site_plugins')." plugs ON plugs.id = pe.pluginid", '', 'sysevt.name,pe.priority'); |
|
| 40 | 40 | |
| 41 | 41 | $insideUl = 0; |
| 42 | 42 | $preEvt = ''; |
@@ -47,17 +47,17 @@ discard block |
||
| 47 | 47 | if ($preEvt !== $plugins['evtid']) { |
| 48 | 48 | $sortables[] = $plugins['evtid']; |
| 49 | 49 | $sortableList .= $insideUl ? '</ul></div>' : ''; |
| 50 | - $sortableList .= '<div class="form-group clearfix"><strong>' . $plugins['evtname'] . '</strong><ul id="' . $plugins['evtid'] . '" class="sortableList">'; |
|
| 50 | + $sortableList .= '<div class="form-group clearfix"><strong>'.$plugins['evtname'].'</strong><ul id="'.$plugins['evtid'].'" class="sortableList">'; |
|
| 51 | 51 | $insideUl = 1; |
| 52 | 52 | } |
| 53 | - $sortableList .= '<li id="item_' . $plugins['pluginid'] . '"' . ($plugins['disabled'] ? ' class="disabledPlugin"' : '') . '><i class="fa fa-plug"></i> ' . $plugins['name'] . ($plugins['disabled'] ? ' (hide)' : '') . '</li>'; |
|
| 53 | + $sortableList .= '<li id="item_'.$plugins['pluginid'].'"'.($plugins['disabled'] ? ' class="disabledPlugin"' : '').'><i class="fa fa-plug"></i> '.$plugins['name'].($plugins['disabled'] ? ' (hide)' : '').'</li>'; |
|
| 54 | 54 | $preEvt = $plugins['evtid']; |
| 55 | 55 | } |
| 56 | 56 | if ($insideUl) { |
| 57 | 57 | $sortableList .= '</ul></div>'; |
| 58 | 58 | } |
| 59 | 59 | |
| 60 | -require_once(MODX_MANAGER_PATH . 'includes/header.inc.php'); |
|
| 60 | +require_once(MODX_MANAGER_PATH.'includes/header.inc.php'); |
|
| 61 | 61 | ?> |
| 62 | 62 | |
| 63 | 63 | <script type="text/javascript"> |
@@ -1,9 +1,9 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | if( ! defined('IN_MANAGER_MODE') || IN_MANAGER_MODE !== true) {
|
| 3 | - die("<b>INCLUDE_ORDERING_ERROR</b><br /><br />Please use the EVO Content Manager instead of accessing this file directly.");
|
|
| 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('view_eventlog')) {
|
| 6 | - $modx->webAlertAndQuit($_lang["error_no_privileges"]); |
|
| 6 | + $modx->webAlertAndQuit($_lang["error_no_privileges"]); |
|
| 7 | 7 | } |
| 8 | 8 | ?> |
| 9 | 9 | <script type="text/javascript" src="media/script/tablesort.js"></script> |
@@ -17,14 +17,14 @@ discard block |
||
| 17 | 17 | <div class="form-group" id="lyr1"> |
| 18 | 18 | <b><?= $_lang["publish_events"] ?></b> |
| 19 | 19 | <?php |
| 20 | - $rs = $modx->getDatabase()->select('id, pagetitle, pub_date', $modx->getFullTableName('site_content'), "pub_date > " . time() . "", 'pub_date ASC');
|
|
| 21 | - $limit = $modx->getDatabase()->getRecordCount($rs); |
|
| 22 | - if($limit < 1) {
|
|
| 23 | - ?> |
|
| 20 | + $rs = $modx->getDatabase()->select('id, pagetitle, pub_date', $modx->getFullTableName('site_content'), "pub_date > " . time() . "", 'pub_date ASC');
|
|
| 21 | + $limit = $modx->getDatabase()->getRecordCount($rs); |
|
| 22 | + if($limit < 1) {
|
|
| 23 | + ?> |
|
| 24 | 24 | <p><?= $_lang["no_docs_pending_publishing"] ?></p> |
| 25 | 25 | <?php |
| 26 | - } else {
|
|
| 27 | - ?> |
|
| 26 | + } else {
|
|
| 27 | + ?> |
|
| 28 | 28 | <div class="table-responsive"> |
| 29 | 29 | <table class="grid sortabletable" id="table-1"> |
| 30 | 30 | <thead> |
@@ -36,34 +36,34 @@ discard block |
||
| 36 | 36 | </thead> |
| 37 | 37 | <tbody> |
| 38 | 38 | <?php |
| 39 | - while($row = $modx->getDatabase()->getRow($rs)) {
|
|
| 40 | - ?> |
|
| 39 | + while($row = $modx->getDatabase()->getRow($rs)) {
|
|
| 40 | + ?> |
|
| 41 | 41 | <tr> |
| 42 | 42 | <td class="text-right"><?= $row['id'] ?></td> |
| 43 | 43 | <td><a href="index.php?a=3&id=<?= $row['id'] ?>"><?= $row['pagetitle'] ?></a></td> |
| 44 | 44 | <td class="text-nowrap text-right"><?= $modx->toDateFormat($row['pub_date'] + $server_offset_time) ?></td> |
| 45 | 45 | </tr> |
| 46 | 46 | <?php |
| 47 | - } |
|
| 48 | - ?> |
|
| 47 | + } |
|
| 48 | + ?> |
|
| 49 | 49 | </tbody> |
| 50 | 50 | </table> |
| 51 | 51 | </div> |
| 52 | 52 | <?php |
| 53 | - } |
|
| 54 | - ?> |
|
| 53 | + } |
|
| 54 | + ?> |
|
| 55 | 55 | </div> |
| 56 | 56 | <div class="form-group" id="lyr2"> |
| 57 | 57 | <b><?= $_lang["unpublish_events"] ?></b> |
| 58 | 58 | <?php |
| 59 | - $rs = $modx->getDatabase()->select('id, pagetitle, unpub_date', $modx->getFullTableName('site_content'), "unpub_date > " . time() . "", 'unpub_date ASC');
|
|
| 60 | - $limit = $modx->getDatabase()->getRecordCount($rs); |
|
| 61 | - if($limit < 1) {
|
|
| 62 | - ?> |
|
| 59 | + $rs = $modx->getDatabase()->select('id, pagetitle, unpub_date', $modx->getFullTableName('site_content'), "unpub_date > " . time() . "", 'unpub_date ASC');
|
|
| 60 | + $limit = $modx->getDatabase()->getRecordCount($rs); |
|
| 61 | + if($limit < 1) {
|
|
| 62 | + ?> |
|
| 63 | 63 | <p><?= $_lang["no_docs_pending_unpublishing"] ?></p> |
| 64 | 64 | <?php |
| 65 | - } else {
|
|
| 66 | - ?> |
|
| 65 | + } else {
|
|
| 66 | + ?> |
|
| 67 | 67 | <div class="table-responsive"> |
| 68 | 68 | <table class="grid sortabletable" id="table-2"> |
| 69 | 69 | <thead> |
@@ -75,34 +75,34 @@ discard block |
||
| 75 | 75 | </thead> |
| 76 | 76 | <tbody> |
| 77 | 77 | <?php |
| 78 | - while($row = $modx->getDatabase()->getRow($rs)) {
|
|
| 79 | - ?> |
|
| 78 | + while($row = $modx->getDatabase()->getRow($rs)) {
|
|
| 79 | + ?> |
|
| 80 | 80 | <tr> |
| 81 | 81 | <td class="text-right"><?= $row['id'] ?></td> |
| 82 | 82 | <td><a href="index.php?a=3&id=<?= $row['id'] ?>"><?= $row['pagetitle'] ?></a></td> |
| 83 | 83 | <td class="text-nowrap text-right"><?= $modx->toDateFormat($row['unpub_date'] + $server_offset_time) ?></td> |
| 84 | 84 | </tr> |
| 85 | 85 | <?php |
| 86 | - } |
|
| 87 | - ?> |
|
| 86 | + } |
|
| 87 | + ?> |
|
| 88 | 88 | </tbody> |
| 89 | 89 | </table> |
| 90 | 90 | </div> |
| 91 | 91 | <?php |
| 92 | - } |
|
| 93 | - ?> |
|
| 92 | + } |
|
| 93 | + ?> |
|
| 94 | 94 | </div> |
| 95 | 95 | <div class="form-group"> |
| 96 | 96 | <b><?= $_lang["all_events"] ?></b> |
| 97 | 97 | <?php |
| 98 | - $rs = $modx->getDatabase()->select('id, pagetitle, pub_date, unpub_date', $modx->getFullTableName('site_content'), "pub_date > 0 OR unpub_date > 0", "pub_date DESC");
|
|
| 99 | - $limit = $modx->getDatabase()->getRecordCount($rs); |
|
| 100 | - if($limit < 1) {
|
|
| 101 | - ?> |
|
| 98 | + $rs = $modx->getDatabase()->select('id, pagetitle, pub_date, unpub_date', $modx->getFullTableName('site_content'), "pub_date > 0 OR unpub_date > 0", "pub_date DESC");
|
|
| 99 | + $limit = $modx->getDatabase()->getRecordCount($rs); |
|
| 100 | + if($limit < 1) {
|
|
| 101 | + ?> |
|
| 102 | 102 | <p><?= $_lang["no_docs_pending_pubunpub"] ?></p> |
| 103 | 103 | <?php |
| 104 | - } else {
|
|
| 105 | - ?> |
|
| 104 | + } else {
|
|
| 105 | + ?> |
|
| 106 | 106 | <div class="table-responsive"> |
| 107 | 107 | <table class="grid sortabletable" id="table-3"> |
| 108 | 108 | <thead> |
@@ -115,8 +115,8 @@ discard block |
||
| 115 | 115 | </thead> |
| 116 | 116 | <tbody> |
| 117 | 117 | <?php |
| 118 | - while($row = $modx->getDatabase()->getRow($rs)) {
|
|
| 119 | - ?> |
|
| 118 | + while($row = $modx->getDatabase()->getRow($rs)) {
|
|
| 119 | + ?> |
|
| 120 | 120 | <tr> |
| 121 | 121 | <td class="text-right"><?= $row['id'] ?></td> |
| 122 | 122 | <td><a href="index.php?a=3&id=<?= $row['id'] ?>"><?= $row['pagetitle'] ?></a></td> |
@@ -124,14 +124,14 @@ discard block |
||
| 124 | 124 | <td class="text-nowrap text-right"><?= $row['unpub_date'] == 0 ? "" : $modx->toDateFormat($row['unpub_date'] + $server_offset_time) ?></td> |
| 125 | 125 | </tr> |
| 126 | 126 | <?php |
| 127 | - } |
|
| 128 | - ?> |
|
| 127 | + } |
|
| 128 | + ?> |
|
| 129 | 129 | </tbody> |
| 130 | 130 | </table> |
| 131 | 131 | </div> |
| 132 | 132 | <?php |
| 133 | - } |
|
| 134 | - ?> |
|
| 133 | + } |
|
| 134 | + ?> |
|
| 135 | 135 | </div> |
| 136 | 136 | </div> |
| 137 | 137 | </div> |
@@ -1,8 +1,8 @@ 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 | -if(!$modx->hasPermission('view_eventlog')) {
|
|
| 5 | +if (!$modx->hasPermission('view_eventlog')) {
|
|
| 6 | 6 | $modx->webAlertAndQuit($_lang["error_no_privileges"]); |
| 7 | 7 | } |
| 8 | 8 | ?> |
@@ -17,9 +17,9 @@ discard block |
||
| 17 | 17 | <div class="form-group" id="lyr1"> |
| 18 | 18 | <b><?= $_lang["publish_events"] ?></b> |
| 19 | 19 | <?php |
| 20 | - $rs = $modx->getDatabase()->select('id, pagetitle, pub_date', $modx->getFullTableName('site_content'), "pub_date > " . time() . "", 'pub_date ASC');
|
|
| 20 | + $rs = $modx->getDatabase()->select('id, pagetitle, pub_date', $modx->getFullTableName('site_content'), "pub_date > ".time()."", 'pub_date ASC');
|
|
| 21 | 21 | $limit = $modx->getDatabase()->getRecordCount($rs); |
| 22 | - if($limit < 1) {
|
|
| 22 | + if ($limit < 1) {
|
|
| 23 | 23 | ?> |
| 24 | 24 | <p><?= $_lang["no_docs_pending_publishing"] ?></p> |
| 25 | 25 | <?php |
@@ -36,7 +36,7 @@ discard block |
||
| 36 | 36 | </thead> |
| 37 | 37 | <tbody> |
| 38 | 38 | <?php |
| 39 | - while($row = $modx->getDatabase()->getRow($rs)) {
|
|
| 39 | + while ($row = $modx->getDatabase()->getRow($rs)) {
|
|
| 40 | 40 | ?> |
| 41 | 41 | <tr> |
| 42 | 42 | <td class="text-right"><?= $row['id'] ?></td> |
@@ -56,9 +56,9 @@ discard block |
||
| 56 | 56 | <div class="form-group" id="lyr2"> |
| 57 | 57 | <b><?= $_lang["unpublish_events"] ?></b> |
| 58 | 58 | <?php |
| 59 | - $rs = $modx->getDatabase()->select('id, pagetitle, unpub_date', $modx->getFullTableName('site_content'), "unpub_date > " . time() . "", 'unpub_date ASC');
|
|
| 59 | + $rs = $modx->getDatabase()->select('id, pagetitle, unpub_date', $modx->getFullTableName('site_content'), "unpub_date > ".time()."", 'unpub_date ASC');
|
|
| 60 | 60 | $limit = $modx->getDatabase()->getRecordCount($rs); |
| 61 | - if($limit < 1) {
|
|
| 61 | + if ($limit < 1) {
|
|
| 62 | 62 | ?> |
| 63 | 63 | <p><?= $_lang["no_docs_pending_unpublishing"] ?></p> |
| 64 | 64 | <?php |
@@ -75,7 +75,7 @@ discard block |
||
| 75 | 75 | </thead> |
| 76 | 76 | <tbody> |
| 77 | 77 | <?php |
| 78 | - while($row = $modx->getDatabase()->getRow($rs)) {
|
|
| 78 | + while ($row = $modx->getDatabase()->getRow($rs)) {
|
|
| 79 | 79 | ?> |
| 80 | 80 | <tr> |
| 81 | 81 | <td class="text-right"><?= $row['id'] ?></td> |
@@ -97,7 +97,7 @@ discard block |
||
| 97 | 97 | <?php |
| 98 | 98 | $rs = $modx->getDatabase()->select('id, pagetitle, pub_date, unpub_date', $modx->getFullTableName('site_content'), "pub_date > 0 OR unpub_date > 0", "pub_date DESC");
|
| 99 | 99 | $limit = $modx->getDatabase()->getRecordCount($rs); |
| 100 | - if($limit < 1) {
|
|
| 100 | + if ($limit < 1) {
|
|
| 101 | 101 | ?> |
| 102 | 102 | <p><?= $_lang["no_docs_pending_pubunpub"] ?></p> |
| 103 | 103 | <?php |
@@ -115,7 +115,7 @@ discard block |
||
| 115 | 115 | </thead> |
| 116 | 116 | <tbody> |
| 117 | 117 | <?php |
| 118 | - while($row = $modx->getDatabase()->getRow($rs)) {
|
|
| 118 | + while ($row = $modx->getDatabase()->getRow($rs)) {
|
|
| 119 | 119 | ?> |
| 120 | 120 | <tr> |
| 121 | 121 | <td class="text-right"><?= $row['id'] ?></td> |
@@ -1,8 +1,8 @@ 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 | -if(!$modx->hasPermission('view_eventlog')) {
|
|
| 5 | +if(!$modx->hasPermission('view_eventlog')) { |
|
| 6 | 6 | $modx->webAlertAndQuit($_lang["error_no_privileges"]); |
| 7 | 7 | } |
| 8 | 8 | ?> |
@@ -19,11 +19,11 @@ discard block |
||
| 19 | 19 | <?php |
| 20 | 20 | $rs = $modx->getDatabase()->select('id, pagetitle, pub_date', $modx->getFullTableName('site_content'), "pub_date > " . time() . "", 'pub_date ASC');
|
| 21 | 21 | $limit = $modx->getDatabase()->getRecordCount($rs); |
| 22 | - if($limit < 1) {
|
|
| 22 | + if($limit < 1) { |
|
| 23 | 23 | ?> |
| 24 | 24 | <p><?= $_lang["no_docs_pending_publishing"] ?></p> |
| 25 | 25 | <?php |
| 26 | - } else {
|
|
| 26 | + } else { |
|
| 27 | 27 | ?> |
| 28 | 28 | <div class="table-responsive"> |
| 29 | 29 | <table class="grid sortabletable" id="table-1"> |
@@ -36,7 +36,7 @@ discard block |
||
| 36 | 36 | </thead> |
| 37 | 37 | <tbody> |
| 38 | 38 | <?php |
| 39 | - while($row = $modx->getDatabase()->getRow($rs)) {
|
|
| 39 | + while($row = $modx->getDatabase()->getRow($rs)) { |
|
| 40 | 40 | ?> |
| 41 | 41 | <tr> |
| 42 | 42 | <td class="text-right"><?= $row['id'] ?></td> |
@@ -58,11 +58,11 @@ discard block |
||
| 58 | 58 | <?php |
| 59 | 59 | $rs = $modx->getDatabase()->select('id, pagetitle, unpub_date', $modx->getFullTableName('site_content'), "unpub_date > " . time() . "", 'unpub_date ASC');
|
| 60 | 60 | $limit = $modx->getDatabase()->getRecordCount($rs); |
| 61 | - if($limit < 1) {
|
|
| 61 | + if($limit < 1) { |
|
| 62 | 62 | ?> |
| 63 | 63 | <p><?= $_lang["no_docs_pending_unpublishing"] ?></p> |
| 64 | 64 | <?php |
| 65 | - } else {
|
|
| 65 | + } else { |
|
| 66 | 66 | ?> |
| 67 | 67 | <div class="table-responsive"> |
| 68 | 68 | <table class="grid sortabletable" id="table-2"> |
@@ -75,7 +75,7 @@ discard block |
||
| 75 | 75 | </thead> |
| 76 | 76 | <tbody> |
| 77 | 77 | <?php |
| 78 | - while($row = $modx->getDatabase()->getRow($rs)) {
|
|
| 78 | + while($row = $modx->getDatabase()->getRow($rs)) { |
|
| 79 | 79 | ?> |
| 80 | 80 | <tr> |
| 81 | 81 | <td class="text-right"><?= $row['id'] ?></td> |
@@ -97,11 +97,11 @@ discard block |
||
| 97 | 97 | <?php |
| 98 | 98 | $rs = $modx->getDatabase()->select('id, pagetitle, pub_date, unpub_date', $modx->getFullTableName('site_content'), "pub_date > 0 OR unpub_date > 0", "pub_date DESC");
|
| 99 | 99 | $limit = $modx->getDatabase()->getRecordCount($rs); |
| 100 | - if($limit < 1) {
|
|
| 100 | + if($limit < 1) { |
|
| 101 | 101 | ?> |
| 102 | 102 | <p><?= $_lang["no_docs_pending_pubunpub"] ?></p> |
| 103 | 103 | <?php |
| 104 | - } else {
|
|
| 104 | + } else { |
|
| 105 | 105 | ?> |
| 106 | 106 | <div class="table-responsive"> |
| 107 | 107 | <table class="grid sortabletable" id="table-3"> |
@@ -115,7 +115,7 @@ discard block |
||
| 115 | 115 | </thead> |
| 116 | 116 | <tbody> |
| 117 | 117 | <?php |
| 118 | - while($row = $modx->getDatabase()->getRow($rs)) {
|
|
| 118 | + while($row = $modx->getDatabase()->getRow($rs)) { |
|
| 119 | 119 | ?> |
| 120 | 120 | <tr> |
| 121 | 121 | <td class="text-right"><?= $row['id'] ?></td> |
@@ -1,13 +1,13 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | if( ! defined('IN_MANAGER_MODE') || IN_MANAGER_MODE !== true) {
|
| 3 | - die('<b>INCLUDE_ORDERING_ERROR</b><br /><br />Please use the EVO Content Manager instead of accessing this file directly.');
|
|
| 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 | unset($_SESSION['itemname']); // clear this, because it's only set for logging purposes |
| 7 | 7 | |
| 8 | 8 | if($modx->hasPermission('settings') && (!isset($settings_version) || $settings_version != $modx->getVersionData('version'))) {
|
| 9 | - // seems to be a new install - send the user to the configuration page |
|
| 10 | - exit('<script type="text/javascript">document.location.href="index.php?a=17";</script>');
|
|
| 9 | + // seems to be a new install - send the user to the configuration page |
|
| 10 | + exit('<script type="text/javascript">document.location.href="index.php?a=17";</script>');
|
|
| 11 | 11 | } |
| 12 | 12 | |
| 13 | 13 | // set placeholders |
@@ -17,93 +17,93 @@ discard block |
||
| 17 | 17 | |
| 18 | 18 | // setup message info |
| 19 | 19 | if($modx->hasPermission('messages')) {
|
| 20 | - include_once(MODX_MANAGER_PATH . 'includes/messageCount.inc.php'); |
|
| 21 | - $_SESSION['nrtotalmessages'] = $nrtotalmessages; |
|
| 22 | - $_SESSION['nrnewmessages'] = $nrnewmessages; |
|
| 23 | - |
|
| 24 | - $msg = array(); |
|
| 25 | - $msg[] = sprintf('<a href="index.php?a=10" target="main"><img src="%s" /></a>', $_style['icons_mail_large']);
|
|
| 26 | - $nrnewmessages = $_SESSION['nrnewmessages'] > 0 ? ' (<span style="color:red">' . $_SESSION['nrnewmessages'] . '</span>)' : ''; |
|
| 27 | - $msg[] = sprintf('<span style="color:#909090;font-size:15px;font-weight:bold"> <a class="wm_messages_inbox_link" href="index.php?a=10" target="main">[%%inbox%%]</a>%s</span><br />', $nrnewmessages);
|
|
| 28 | - $nrnewmessages = $_SESSION['nrnewmessages'] > 0 ? '<span style="color:red;">' . $_SESSION['nrnewmessages'] . '</span>' : '0'; |
|
| 29 | - $welcome_messages = sprintf($_lang['welcome_messages'], $_SESSION['nrtotalmessages'], $nrnewmessages); |
|
| 30 | - $msg[] = sprintf('<span class="comment">%s</span>', $welcome_messages);
|
|
| 31 | - $ph['MessageInfo'] = implode("\n", $msg);
|
|
| 20 | + include_once(MODX_MANAGER_PATH . 'includes/messageCount.inc.php'); |
|
| 21 | + $_SESSION['nrtotalmessages'] = $nrtotalmessages; |
|
| 22 | + $_SESSION['nrnewmessages'] = $nrnewmessages; |
|
| 23 | + |
|
| 24 | + $msg = array(); |
|
| 25 | + $msg[] = sprintf('<a href="index.php?a=10" target="main"><img src="%s" /></a>', $_style['icons_mail_large']);
|
|
| 26 | + $nrnewmessages = $_SESSION['nrnewmessages'] > 0 ? ' (<span style="color:red">' . $_SESSION['nrnewmessages'] . '</span>)' : ''; |
|
| 27 | + $msg[] = sprintf('<span style="color:#909090;font-size:15px;font-weight:bold"> <a class="wm_messages_inbox_link" href="index.php?a=10" target="main">[%%inbox%%]</a>%s</span><br />', $nrnewmessages);
|
|
| 28 | + $nrnewmessages = $_SESSION['nrnewmessages'] > 0 ? '<span style="color:red;">' . $_SESSION['nrnewmessages'] . '</span>' : '0'; |
|
| 29 | + $welcome_messages = sprintf($_lang['welcome_messages'], $_SESSION['nrtotalmessages'], $nrnewmessages); |
|
| 30 | + $msg[] = sprintf('<span class="comment">%s</span>', $welcome_messages);
|
|
| 31 | + $ph['MessageInfo'] = implode("\n", $msg);
|
|
| 32 | 32 | } |
| 33 | 33 | |
| 34 | 34 | $iconTpl = $modx->getChunk('manager#welcome\WrapIcon');
|
| 35 | 35 | // setup icons |
| 36 | 36 | if($modx->hasPermission('new_user') || $modx->hasPermission('edit_user')) {
|
| 37 | - $icon = '<i class="[&icons_security_large&]" alt="[%user_management_title%]"> </i>[%user_management_title%]'; |
|
| 38 | - $ph['SecurityIcon'] = sprintf($iconTpl,$icon, 75); |
|
| 37 | + $icon = '<i class="[&icons_security_large&]" alt="[%user_management_title%]"> </i>[%user_management_title%]'; |
|
| 38 | + $ph['SecurityIcon'] = sprintf($iconTpl,$icon, 75); |
|
| 39 | 39 | } |
| 40 | 40 | if($modx->hasPermission('new_web_user') || $modx->hasPermission('edit_web_user')) {
|
| 41 | - $icon = '<i class="[&icons_webusers_large&]" alt="[%web_user_management_title%]"> </i>[%web_user_management_title%]'; |
|
| 42 | - $ph['WebUserIcon'] = sprintf($iconTpl,$icon, 99); |
|
| 41 | + $icon = '<i class="[&icons_webusers_large&]" alt="[%web_user_management_title%]"> </i>[%web_user_management_title%]'; |
|
| 42 | + $ph['WebUserIcon'] = sprintf($iconTpl,$icon, 99); |
|
| 43 | 43 | } |
| 44 | 44 | if($modx->hasPermission('new_module') || $modx->hasPermission('edit_module')) {
|
| 45 | - $icon = '<i class="[&icons_modules_large&]" alt="[%manage_modules%]"> </i>[%modules%]'; |
|
| 46 | - $ph['ModulesIcon'] = sprintf($iconTpl,$icon, 106); |
|
| 45 | + $icon = '<i class="[&icons_modules_large&]" alt="[%manage_modules%]"> </i>[%modules%]'; |
|
| 46 | + $ph['ModulesIcon'] = sprintf($iconTpl,$icon, 106); |
|
| 47 | 47 | } |
| 48 | 48 | if($modx->hasPermission('new_template') || $modx->hasPermission('edit_template') || $modx->hasPermission('new_snippet') || $modx->hasPermission('edit_snippet') || $modx->hasPermission('new_plugin') || $modx->hasPermission('edit_plugin') || $modx->hasPermission('manage_metatags')) {
|
| 49 | - $icon = '<i class="[&icons_resources_large&]" alt="[%element_management%]"> </i>[%elements%]'; |
|
| 50 | - $ph['ResourcesIcon'] = sprintf($iconTpl,$icon, 76); |
|
| 49 | + $icon = '<i class="[&icons_resources_large&]" alt="[%element_management%]"> </i>[%elements%]'; |
|
| 50 | + $ph['ResourcesIcon'] = sprintf($iconTpl,$icon, 76); |
|
| 51 | 51 | } |
| 52 | 52 | if($modx->hasPermission('bk_manager')) {
|
| 53 | - $icon = '<i class="[&icons_backup_large&]" alt="[%bk_manager%]"> </i>[%backup%]'; |
|
| 54 | - $ph['BackupIcon'] = sprintf($iconTpl,$icon, 93); |
|
| 53 | + $icon = '<i class="[&icons_backup_large&]" alt="[%bk_manager%]"> </i>[%backup%]'; |
|
| 54 | + $ph['BackupIcon'] = sprintf($iconTpl,$icon, 93); |
|
| 55 | 55 | } |
| 56 | 56 | if($modx->hasPermission('help')) {
|
| 57 | - $icon = '<i class="[&icons_help_large&]" alt="[%help%]" /> </i>[%help%]'; |
|
| 58 | - $ph['HelpIcon'] = sprintf($iconTpl,$icon, 9); |
|
| 57 | + $icon = '<i class="[&icons_help_large&]" alt="[%help%]" /> </i>[%help%]'; |
|
| 58 | + $ph['HelpIcon'] = sprintf($iconTpl,$icon, 9); |
|
| 59 | 59 | } |
| 60 | 60 | |
| 61 | 61 | if($modx->hasPermission('new_document')) {
|
| 62 | - $icon = '<i class="[&icons_resource_large&]"></i>[%add_resource%]'; |
|
| 63 | - $ph['ResourceIcon'] = sprintf($iconTpl,$icon, 4); |
|
| 64 | - $icon = '<i class="[&icons_weblink_large&]"></i>[%add_weblink%]'; |
|
| 65 | - $ph['WeblinkIcon'] = sprintf($iconTpl,$icon, 72); |
|
| 62 | + $icon = '<i class="[&icons_resource_large&]"></i>[%add_resource%]'; |
|
| 63 | + $ph['ResourceIcon'] = sprintf($iconTpl,$icon, 4); |
|
| 64 | + $icon = '<i class="[&icons_weblink_large&]"></i>[%add_weblink%]'; |
|
| 65 | + $ph['WeblinkIcon'] = sprintf($iconTpl,$icon, 72); |
|
| 66 | 66 | } |
| 67 | 67 | if($modx->hasPermission('assets_images')) {
|
| 68 | - $icon = '<i class="[&icons_images_large&]"></i>[%images_management%]'; |
|
| 69 | - $ph['ImagesIcon'] = sprintf($iconTpl,$icon, 72); |
|
| 68 | + $icon = '<i class="[&icons_images_large&]"></i>[%images_management%]'; |
|
| 69 | + $ph['ImagesIcon'] = sprintf($iconTpl,$icon, 72); |
|
| 70 | 70 | } |
| 71 | 71 | if($modx->hasPermission('assets_files')) {
|
| 72 | - $icon = '<i class="[&icons_files_large&]"></i>[%files_management%]'; |
|
| 73 | - $ph['FilesIcon'] = sprintf($iconTpl,$icon, 72); |
|
| 72 | + $icon = '<i class="[&icons_files_large&]"></i>[%files_management%]'; |
|
| 73 | + $ph['FilesIcon'] = sprintf($iconTpl,$icon, 72); |
|
| 74 | 74 | } |
| 75 | 75 | if($modx->hasPermission('change_password')) {
|
| 76 | - $icon = '<i class="[&icons_password_large&]"></i>[%change_password%]'; |
|
| 77 | - $ph['PasswordIcon'] = sprintf($iconTpl,$icon, 28); |
|
| 76 | + $icon = '<i class="[&icons_password_large&]"></i>[%change_password%]'; |
|
| 77 | + $ph['PasswordIcon'] = sprintf($iconTpl,$icon, 28); |
|
| 78 | 78 | } |
| 79 | 79 | $icon = '<i class="[&icons_logout_large&]"></i>[%logout%]'; |
| 80 | 80 | $ph['LogoutIcon'] = sprintf($iconTpl,$icon, 8); |
| 81 | 81 | |
| 82 | 82 | // do some config checks |
| 83 | 83 | if(($modx->config['warning_visibility'] == 0 && $_SESSION['mgrRole'] == 1) || $modx->config['warning_visibility'] == 1) {
|
| 84 | - include_once(MODX_MANAGER_PATH . 'includes/config_check.inc.php'); |
|
| 85 | - if($config_check_results != $_lang['configcheck_ok']) {
|
|
| 86 | - $ph['config_check_results'] = $config_check_results; |
|
| 87 | - $ph['config_display'] = 'block'; |
|
| 88 | - } else {
|
|
| 89 | - $ph['config_display'] = 'none'; |
|
| 90 | - } |
|
| 84 | + include_once(MODX_MANAGER_PATH . 'includes/config_check.inc.php'); |
|
| 85 | + if($config_check_results != $_lang['configcheck_ok']) {
|
|
| 86 | + $ph['config_check_results'] = $config_check_results; |
|
| 87 | + $ph['config_display'] = 'block'; |
|
| 88 | + } else {
|
|
| 89 | + $ph['config_display'] = 'none'; |
|
| 90 | + } |
|
| 91 | 91 | } else {
|
| 92 | - $ph['config_display'] = 'none'; |
|
| 92 | + $ph['config_display'] = 'none'; |
|
| 93 | 93 | } |
| 94 | 94 | |
| 95 | 95 | // Check logout-reminder |
| 96 | 96 | if(isset($_SESSION['show_logout_reminder'])) {
|
| 97 | - switch($_SESSION['show_logout_reminder']['type']) {
|
|
| 98 | - case 'logout_reminder': |
|
| 99 | - $date = $modx->toDateFormat($_SESSION['show_logout_reminder']['lastHit'], 'dateOnly'); |
|
| 100 | - $ph['logout_reminder_msg'] = str_replace('[+date+]', $date, $_lang['logout_reminder_msg']);
|
|
| 101 | - break; |
|
| 102 | - } |
|
| 103 | - $ph['show_logout_reminder'] = 'block'; |
|
| 104 | - unset($_SESSION['show_logout_reminder']); |
|
| 97 | + switch($_SESSION['show_logout_reminder']['type']) {
|
|
| 98 | + case 'logout_reminder': |
|
| 99 | + $date = $modx->toDateFormat($_SESSION['show_logout_reminder']['lastHit'], 'dateOnly'); |
|
| 100 | + $ph['logout_reminder_msg'] = str_replace('[+date+]', $date, $_lang['logout_reminder_msg']);
|
|
| 101 | + break; |
|
| 102 | + } |
|
| 103 | + $ph['show_logout_reminder'] = 'block'; |
|
| 104 | + unset($_SESSION['show_logout_reminder']); |
|
| 105 | 105 | } else {
|
| 106 | - $ph['show_logout_reminder'] = 'none'; |
|
| 106 | + $ph['show_logout_reminder'] = 'none'; |
|
| 107 | 107 | } |
| 108 | 108 | |
| 109 | 109 | // Check multiple sessions |
@@ -151,11 +151,11 @@ discard block |
||
| 151 | 151 | $nrnewmessages = '<span class="text-danger">' . $_SESSION['nrnewmessages'] . '</span>'; |
| 152 | 152 | |
| 153 | 153 | $ph['UserInfo'] = $modx->parseText($tpl, array( |
| 154 | - 'username' => $modx->getLoginUserName(), |
|
| 155 | - 'role' => $_SESSION['mgrPermissions']['name'], |
|
| 156 | - 'lastlogin' => $modx->toDateFormat($_SESSION['mgrLastlogin'] + $server_offset_time), |
|
| 157 | - 'logincount' => $_SESSION['mgrLogincount'] + 1, |
|
| 158 | - 'msginfo' => sprintf($_lang['welcome_messages'], $_SESSION['nrtotalmessages'], $nrnewmessages) |
|
| 154 | + 'username' => $modx->getLoginUserName(), |
|
| 155 | + 'role' => $_SESSION['mgrPermissions']['name'], |
|
| 156 | + 'lastlogin' => $modx->toDateFormat($_SESSION['mgrLastlogin'] + $server_offset_time), |
|
| 157 | + 'logincount' => $_SESSION['mgrLogincount'] + 1, |
|
| 158 | + 'msginfo' => sprintf($_lang['welcome_messages'], $_SESSION['nrtotalmessages'], $nrnewmessages) |
|
| 159 | 159 | )); |
| 160 | 160 | |
| 161 | 161 | $from = array(); |
@@ -164,13 +164,13 @@ discard block |
||
| 164 | 164 | $rs = $modx->getDatabase()->select('*', $from, '', 'username ASC, au.sid ASC');
|
| 165 | 165 | |
| 166 | 166 | if($modx->getDatabase()->getRecordCount($rs) < 1) {
|
| 167 | - $html = '<p>[%no_active_users_found%]</p>'; |
|
| 167 | + $html = '<p>[%no_active_users_found%]</p>'; |
|
| 168 | 168 | } else {
|
| 169 | - include_once(MODX_MANAGER_PATH . 'includes/actionlist.inc.php'); |
|
| 170 | - $now = $_SERVER['REQUEST_TIME'] + $server_offset_time; |
|
| 171 | - $ph['now'] = strftime('%H:%M:%S', $now);
|
|
| 172 | - $timetocheck = ($now - (60 * 20)); //+$server_offset_time; |
|
| 173 | - $html = ' |
|
| 169 | + include_once(MODX_MANAGER_PATH . 'includes/actionlist.inc.php'); |
|
| 170 | + $now = $_SERVER['REQUEST_TIME'] + $server_offset_time; |
|
| 171 | + $ph['now'] = strftime('%H:%M:%S', $now);
|
|
| 172 | + $timetocheck = ($now - (60 * 20)); //+$server_offset_time; |
|
| 173 | + $html = ' |
|
| 174 | 174 | <div class="card-body"> |
| 175 | 175 | [%onlineusers_message%] |
| 176 | 176 | <b>[+now+]</b>): |
@@ -188,33 +188,33 @@ discard block |
||
| 188 | 188 | </thead> |
| 189 | 189 | <tbody>'; |
| 190 | 190 | |
| 191 | - $userList = array(); |
|
| 192 | - $userCount = array(); |
|
| 193 | - // Create userlist with session-count first before output |
|
| 194 | - while($activeusers = $modx->getDatabase()->getRow($rs)) {
|
|
| 195 | - $userCount[$activeusers['internalKey']] = isset($userCount[$activeusers['internalKey']]) ? $userCount[$activeusers['internalKey']] + 1 : 1; |
|
| 196 | - |
|
| 197 | - $idle = $activeusers['lasthit'] < $timetocheck ? ' class="userIdle"' : ''; |
|
| 198 | - $webicon = $activeusers['internalKey'] < 0 ? '<img src="[&tree_globe&]" alt="Web user" /> ' : ''; |
|
| 199 | - $ip = $activeusers['ip'] === '::1' ? '127.0.0.1' : $activeusers['ip']; |
|
| 200 | - $currentaction = getAction($activeusers['action'], $activeusers['id']); |
|
| 201 | - $userList[] = array( |
|
| 202 | - $idle, |
|
| 203 | - '', |
|
| 204 | - $activeusers['username'], |
|
| 205 | - $webicon, |
|
| 206 | - abs($activeusers['internalKey']), |
|
| 207 | - $ip, |
|
| 208 | - strftime('%H:%M:%S', $activeusers['lasthit'] + $server_offset_time),
|
|
| 209 | - $currentaction |
|
| 210 | - ); |
|
| 211 | - } |
|
| 212 | - foreach($userList as $params) {
|
|
| 213 | - $params[1] = $userCount[$params[4]] > 1 ? ' class="userMultipleSessions"' : ''; |
|
| 214 | - $html .= "\n\t\t" . vsprintf('<tr%s><td><strong%s>%s</strong></td><td>%s%s</td><td>%s</td><td>%s</td><td>%s</td></tr>', $params);
|
|
| 215 | - } |
|
| 216 | - |
|
| 217 | - $html .= ' |
|
| 191 | + $userList = array(); |
|
| 192 | + $userCount = array(); |
|
| 193 | + // Create userlist with session-count first before output |
|
| 194 | + while($activeusers = $modx->getDatabase()->getRow($rs)) {
|
|
| 195 | + $userCount[$activeusers['internalKey']] = isset($userCount[$activeusers['internalKey']]) ? $userCount[$activeusers['internalKey']] + 1 : 1; |
|
| 196 | + |
|
| 197 | + $idle = $activeusers['lasthit'] < $timetocheck ? ' class="userIdle"' : ''; |
|
| 198 | + $webicon = $activeusers['internalKey'] < 0 ? '<img src="[&tree_globe&]" alt="Web user" /> ' : ''; |
|
| 199 | + $ip = $activeusers['ip'] === '::1' ? '127.0.0.1' : $activeusers['ip']; |
|
| 200 | + $currentaction = getAction($activeusers['action'], $activeusers['id']); |
|
| 201 | + $userList[] = array( |
|
| 202 | + $idle, |
|
| 203 | + '', |
|
| 204 | + $activeusers['username'], |
|
| 205 | + $webicon, |
|
| 206 | + abs($activeusers['internalKey']), |
|
| 207 | + $ip, |
|
| 208 | + strftime('%H:%M:%S', $activeusers['lasthit'] + $server_offset_time),
|
|
| 209 | + $currentaction |
|
| 210 | + ); |
|
| 211 | + } |
|
| 212 | + foreach($userList as $params) {
|
|
| 213 | + $params[1] = $userCount[$params[4]] > 1 ? ' class="userMultipleSessions"' : ''; |
|
| 214 | + $html .= "\n\t\t" . vsprintf('<tr%s><td><strong%s>%s</strong></td><td>%s%s</td><td>%s</td><td>%s</td><td>%s</td></tr>', $params);
|
|
| 215 | + } |
|
| 216 | + |
|
| 217 | + $html .= ' |
|
| 218 | 218 | </tbody> |
| 219 | 219 | </table> |
| 220 | 220 | </div> |
@@ -255,17 +255,17 @@ discard block |
||
| 255 | 255 | // invoke event OnManagerWelcomePrerender |
| 256 | 256 | $evtOut = $modx->invokeEvent('OnManagerWelcomePrerender');
|
| 257 | 257 | if(is_array($evtOut)) {
|
| 258 | - $output = implode('', $evtOut);
|
|
| 259 | - $ph['OnManagerWelcomePrerender'] = $output; |
|
| 258 | + $output = implode('', $evtOut);
|
|
| 259 | + $ph['OnManagerWelcomePrerender'] = $output; |
|
| 260 | 260 | } |
| 261 | 261 | |
| 262 | 262 | $widgets['welcome'] = array( |
| 263 | - 'menuindex' => '10', |
|
| 264 | - 'id' => 'welcome', |
|
| 265 | - 'cols' => 'col-lg-6', |
|
| 266 | - 'icon' => 'fa-home', |
|
| 267 | - 'title' => '[%welcome_title%]', |
|
| 268 | - 'body' => ' |
|
| 263 | + 'menuindex' => '10', |
|
| 264 | + 'id' => 'welcome', |
|
| 265 | + 'cols' => 'col-lg-6', |
|
| 266 | + 'icon' => 'fa-home', |
|
| 267 | + 'title' => '[%welcome_title%]', |
|
| 268 | + 'body' => ' |
|
| 269 | 269 | <div class="wm_buttons card-body"> |
| 270 | 270 | <!--@IF:[[#hasPermission?key=new_document]]--> |
| 271 | 271 | <span class="wm_button"> |
@@ -339,25 +339,25 @@ discard block |
||
| 339 | 339 | </table> |
| 340 | 340 | </div> |
| 341 | 341 | ', |
| 342 | - 'hide'=>'0' |
|
| 342 | + 'hide'=>'0' |
|
| 343 | 343 | ); |
| 344 | 344 | $widgets['onlineinfo'] = array( |
| 345 | - 'menuindex' => '20', |
|
| 346 | - 'id' => 'onlineinfo', |
|
| 347 | - 'cols' => 'col-lg-6', |
|
| 348 | - 'icon' => 'fa-user', |
|
| 349 | - 'title' => '[%onlineusers_title%]', |
|
| 350 | - 'body' => '<div class="userstable">[+OnlineInfo+]</div>', |
|
| 351 | - 'hide'=>'0' |
|
| 345 | + 'menuindex' => '20', |
|
| 346 | + 'id' => 'onlineinfo', |
|
| 347 | + 'cols' => 'col-lg-6', |
|
| 348 | + 'icon' => 'fa-user', |
|
| 349 | + 'title' => '[%onlineusers_title%]', |
|
| 350 | + 'body' => '<div class="userstable">[+OnlineInfo+]</div>', |
|
| 351 | + 'hide'=>'0' |
|
| 352 | 352 | ); |
| 353 | 353 | $widgets['recentinfo'] = array( |
| 354 | - 'menuindex' => '30', |
|
| 355 | - 'id' => 'modxrecent_widget', |
|
| 356 | - 'cols' => 'col-sm-12', |
|
| 357 | - 'icon' => 'fa-pencil-square-o', |
|
| 358 | - 'title' => '[%activity_title%]', |
|
| 359 | - 'body' => '<div class="widget-stage">[+RecentInfo+]</div>', |
|
| 360 | - 'hide'=>'0' |
|
| 354 | + 'menuindex' => '30', |
|
| 355 | + 'id' => 'modxrecent_widget', |
|
| 356 | + 'cols' => 'col-sm-12', |
|
| 357 | + 'icon' => 'fa-pencil-square-o', |
|
| 358 | + 'title' => '[%activity_title%]', |
|
| 359 | + 'body' => '<div class="widget-stage">[+RecentInfo+]</div>', |
|
| 360 | + 'hide'=>'0' |
|
| 361 | 361 | ); |
| 362 | 362 | if ($modx->config['rss_url_news']) {
|
| 363 | 363 | $widgets['news'] = array( |
@@ -385,7 +385,7 @@ discard block |
||
| 385 | 385 | // invoke OnManagerWelcomeHome event |
| 386 | 386 | $sitewidgets = $modx->invokeEvent("OnManagerWelcomeHome", array('widgets' => $widgets));
|
| 387 | 387 | if(is_array($sitewidgets)) {
|
| 388 | - $newwidgets = array(); |
|
| 388 | + $newwidgets = array(); |
|
| 389 | 389 | foreach($sitewidgets as $widget){
|
| 390 | 390 | $newwidgets = array_merge($newwidgets, unserialize($widget)); |
| 391 | 391 | } |
@@ -393,21 +393,21 @@ discard block |
||
| 393 | 393 | } |
| 394 | 394 | |
| 395 | 395 | usort($widgets, function ($a, $b) {
|
| 396 | - return $a['menuindex'] - $b['menuindex']; |
|
| 396 | + return $a['menuindex'] - $b['menuindex']; |
|
| 397 | 397 | }); |
| 398 | 398 | |
| 399 | 399 | $tpl = $modx->getChunk('manager#welcome\Widget');
|
| 400 | 400 | $output = ''; |
| 401 | 401 | foreach($widgets as $widget) {
|
| 402 | - if ($widget['hide'] != '1'){
|
|
| 403 | - $output .= $modx->parseText($tpl, $widget); |
|
| 404 | - } |
|
| 402 | + if ($widget['hide'] != '1'){
|
|
| 403 | + $output .= $modx->parseText($tpl, $widget); |
|
| 404 | + } |
|
| 405 | 405 | } |
| 406 | 406 | $ph['widgets'] = $output; |
| 407 | 407 | |
| 408 | 408 | // load template |
| 409 | 409 | if(!isset($modx->config['manager_welcome_tpl']) || empty($modx->config['manager_welcome_tpl'])) {
|
| 410 | - $modx->config['manager_welcome_tpl'] = MODX_MANAGER_PATH . 'media/style/common/welcome.tpl'; |
|
| 410 | + $modx->config['manager_welcome_tpl'] = MODX_MANAGER_PATH . 'media/style/common/welcome.tpl'; |
|
| 411 | 411 | } |
| 412 | 412 | |
| 413 | 413 | $target = $modx->config['manager_welcome_tpl']; |
@@ -415,27 +415,27 @@ discard block |
||
| 415 | 415 | $target = $modx->mergeSettingsContent($target); |
| 416 | 416 | |
| 417 | 417 | if(substr($target, 0, 1) === '@') {
|
| 418 | - if(substr($target, 0, 6) === '@CHUNK') {
|
|
| 419 | - $content = $modx->getChunk(trim(substr($target, 7))); |
|
| 420 | - } elseif(substr($target, 0, 5) === '@FILE') {
|
|
| 421 | - $content = file_get_contents(trim(substr($target, 6))); |
|
| 422 | - } else {
|
|
| 423 | - $content = ''; |
|
| 424 | - } |
|
| 418 | + if(substr($target, 0, 6) === '@CHUNK') {
|
|
| 419 | + $content = $modx->getChunk(trim(substr($target, 7))); |
|
| 420 | + } elseif(substr($target, 0, 5) === '@FILE') {
|
|
| 421 | + $content = file_get_contents(trim(substr($target, 6))); |
|
| 422 | + } else {
|
|
| 423 | + $content = ''; |
|
| 424 | + } |
|
| 425 | 425 | } else {
|
| 426 | - $chunk = $modx->getChunk($target); |
|
| 427 | - if($chunk !== false && !empty($chunk)) {
|
|
| 428 | - $content = $chunk; |
|
| 429 | - } elseif(is_file(MODX_BASE_PATH . $target)) {
|
|
| 430 | - $content = file_get_contents(MODX_BASE_PATH . $target); |
|
| 431 | - } elseif(is_file(MODX_MANAGER_PATH . 'media/style/' . $modx->config['manager_theme'] . '/welcome.tpl')) {
|
|
| 432 | - $content = file_get_contents(MODX_MANAGER_PATH . 'media/style/' . $modx->config['manager_theme'] . '/welcome.tpl'); |
|
| 433 | - } elseif(is_file(MODX_MANAGER_PATH . 'media/style/' . $modx->config['manager_theme'] . '/html/welcome.html')) // ClipperCMS compatible |
|
| 434 | - {
|
|
| 435 | - $content = file_get_contents(MODX_MANAGER_PATH . 'media/style/' . $modx->config['manager_theme'] . '/html/welcome.html'); |
|
| 436 | - } else {
|
|
| 437 | - $content = file_get_contents(MODX_MANAGER_PATH . 'media/style/common/welcome.tpl'); |
|
| 438 | - } |
|
| 426 | + $chunk = $modx->getChunk($target); |
|
| 427 | + if($chunk !== false && !empty($chunk)) {
|
|
| 428 | + $content = $chunk; |
|
| 429 | + } elseif(is_file(MODX_BASE_PATH . $target)) {
|
|
| 430 | + $content = file_get_contents(MODX_BASE_PATH . $target); |
|
| 431 | + } elseif(is_file(MODX_MANAGER_PATH . 'media/style/' . $modx->config['manager_theme'] . '/welcome.tpl')) {
|
|
| 432 | + $content = file_get_contents(MODX_MANAGER_PATH . 'media/style/' . $modx->config['manager_theme'] . '/welcome.tpl'); |
|
| 433 | + } elseif(is_file(MODX_MANAGER_PATH . 'media/style/' . $modx->config['manager_theme'] . '/html/welcome.html')) // ClipperCMS compatible |
|
| 434 | + {
|
|
| 435 | + $content = file_get_contents(MODX_MANAGER_PATH . 'media/style/' . $modx->config['manager_theme'] . '/html/welcome.html'); |
|
| 436 | + } else {
|
|
| 437 | + $content = file_get_contents(MODX_MANAGER_PATH . 'media/style/common/welcome.tpl'); |
|
| 438 | + } |
|
| 439 | 439 | } |
| 440 | 440 | |
| 441 | 441 | // merge placeholders |
@@ -443,8 +443,8 @@ discard block |
||
| 443 | 443 | $content = $modx->mergeSettingsContent($content); |
| 444 | 444 | $content = $modx->parseText($content, $ph); |
| 445 | 445 | if(strpos($content, '[+') !== false) {
|
| 446 | - $modx->toPlaceholders($ph); |
|
| 447 | - $content = $modx->mergePlaceholderContent($content); |
|
| 446 | + $modx->toPlaceholders($ph); |
|
| 447 | + $content = $modx->mergePlaceholderContent($content); |
|
| 448 | 448 | } |
| 449 | 449 | $content = $modx->parseDocumentSource($content); |
| 450 | 450 | $content = $modx->parseText($content, $_lang, '[%', '%]'); |
@@ -452,7 +452,7 @@ discard block |
||
| 452 | 452 | $content = $modx->cleanUpMODXTags($content); //cleanup |
| 453 | 453 | |
| 454 | 454 | if($js = $modx->getRegisteredClientScripts()) {
|
| 455 | - $content .= $js; |
|
| 455 | + $content .= $js; |
|
| 456 | 456 | } |
| 457 | 457 | |
| 458 | 458 | echo $content; |
@@ -1,11 +1,11 @@ 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 | unset($_SESSION['itemname']); // clear this, because it's only set for logging purposes |
| 7 | 7 | |
| 8 | -if($modx->hasPermission('settings') && (!isset($settings_version) || $settings_version != $modx->getVersionData('version'))) {
|
|
| 8 | +if ($modx->hasPermission('settings') && (!isset($settings_version) || $settings_version != $modx->getVersionData('version'))) {
|
|
| 9 | 9 | // seems to be a new install - send the user to the configuration page |
| 10 | 10 | exit('<script type="text/javascript">document.location.href="index.php?a=17";</script>');
|
| 11 | 11 | } |
@@ -16,16 +16,16 @@ discard block |
||
| 16 | 16 | $_SESSION['nrnewmessages'] = 0; |
| 17 | 17 | |
| 18 | 18 | // setup message info |
| 19 | -if($modx->hasPermission('messages')) {
|
|
| 20 | - include_once(MODX_MANAGER_PATH . 'includes/messageCount.inc.php'); |
|
| 19 | +if ($modx->hasPermission('messages')) {
|
|
| 20 | + include_once(MODX_MANAGER_PATH.'includes/messageCount.inc.php'); |
|
| 21 | 21 | $_SESSION['nrtotalmessages'] = $nrtotalmessages; |
| 22 | 22 | $_SESSION['nrnewmessages'] = $nrnewmessages; |
| 23 | 23 | |
| 24 | 24 | $msg = array(); |
| 25 | 25 | $msg[] = sprintf('<a href="index.php?a=10" target="main"><img src="%s" /></a>', $_style['icons_mail_large']);
|
| 26 | - $nrnewmessages = $_SESSION['nrnewmessages'] > 0 ? ' (<span style="color:red">' . $_SESSION['nrnewmessages'] . '</span>)' : ''; |
|
| 26 | + $nrnewmessages = $_SESSION['nrnewmessages'] > 0 ? ' (<span style="color:red">'.$_SESSION['nrnewmessages'].'</span>)' : ''; |
|
| 27 | 27 | $msg[] = sprintf('<span style="color:#909090;font-size:15px;font-weight:bold"> <a class="wm_messages_inbox_link" href="index.php?a=10" target="main">[%%inbox%%]</a>%s</span><br />', $nrnewmessages);
|
| 28 | - $nrnewmessages = $_SESSION['nrnewmessages'] > 0 ? '<span style="color:red;">' . $_SESSION['nrnewmessages'] . '</span>' : '0'; |
|
| 28 | + $nrnewmessages = $_SESSION['nrnewmessages'] > 0 ? '<span style="color:red;">'.$_SESSION['nrnewmessages'].'</span>' : '0'; |
|
| 29 | 29 | $welcome_messages = sprintf($_lang['welcome_messages'], $_SESSION['nrtotalmessages'], $nrnewmessages); |
| 30 | 30 | $msg[] = sprintf('<span class="comment">%s</span>', $welcome_messages);
|
| 31 | 31 | $ph['MessageInfo'] = implode("\n", $msg);
|
@@ -33,56 +33,56 @@ discard block |
||
| 33 | 33 | |
| 34 | 34 | $iconTpl = $modx->getChunk('manager#welcome\WrapIcon');
|
| 35 | 35 | // setup icons |
| 36 | -if($modx->hasPermission('new_user') || $modx->hasPermission('edit_user')) {
|
|
| 36 | +if ($modx->hasPermission('new_user') || $modx->hasPermission('edit_user')) {
|
|
| 37 | 37 | $icon = '<i class="[&icons_security_large&]" alt="[%user_management_title%]"> </i>[%user_management_title%]'; |
| 38 | - $ph['SecurityIcon'] = sprintf($iconTpl,$icon, 75); |
|
| 38 | + $ph['SecurityIcon'] = sprintf($iconTpl, $icon, 75); |
|
| 39 | 39 | } |
| 40 | -if($modx->hasPermission('new_web_user') || $modx->hasPermission('edit_web_user')) {
|
|
| 40 | +if ($modx->hasPermission('new_web_user') || $modx->hasPermission('edit_web_user')) {
|
|
| 41 | 41 | $icon = '<i class="[&icons_webusers_large&]" alt="[%web_user_management_title%]"> </i>[%web_user_management_title%]'; |
| 42 | - $ph['WebUserIcon'] = sprintf($iconTpl,$icon, 99); |
|
| 42 | + $ph['WebUserIcon'] = sprintf($iconTpl, $icon, 99); |
|
| 43 | 43 | } |
| 44 | -if($modx->hasPermission('new_module') || $modx->hasPermission('edit_module')) {
|
|
| 44 | +if ($modx->hasPermission('new_module') || $modx->hasPermission('edit_module')) {
|
|
| 45 | 45 | $icon = '<i class="[&icons_modules_large&]" alt="[%manage_modules%]"> </i>[%modules%]'; |
| 46 | - $ph['ModulesIcon'] = sprintf($iconTpl,$icon, 106); |
|
| 46 | + $ph['ModulesIcon'] = sprintf($iconTpl, $icon, 106); |
|
| 47 | 47 | } |
| 48 | -if($modx->hasPermission('new_template') || $modx->hasPermission('edit_template') || $modx->hasPermission('new_snippet') || $modx->hasPermission('edit_snippet') || $modx->hasPermission('new_plugin') || $modx->hasPermission('edit_plugin') || $modx->hasPermission('manage_metatags')) {
|
|
| 48 | +if ($modx->hasPermission('new_template') || $modx->hasPermission('edit_template') || $modx->hasPermission('new_snippet') || $modx->hasPermission('edit_snippet') || $modx->hasPermission('new_plugin') || $modx->hasPermission('edit_plugin') || $modx->hasPermission('manage_metatags')) {
|
|
| 49 | 49 | $icon = '<i class="[&icons_resources_large&]" alt="[%element_management%]"> </i>[%elements%]'; |
| 50 | - $ph['ResourcesIcon'] = sprintf($iconTpl,$icon, 76); |
|
| 50 | + $ph['ResourcesIcon'] = sprintf($iconTpl, $icon, 76); |
|
| 51 | 51 | } |
| 52 | -if($modx->hasPermission('bk_manager')) {
|
|
| 52 | +if ($modx->hasPermission('bk_manager')) {
|
|
| 53 | 53 | $icon = '<i class="[&icons_backup_large&]" alt="[%bk_manager%]"> </i>[%backup%]'; |
| 54 | - $ph['BackupIcon'] = sprintf($iconTpl,$icon, 93); |
|
| 54 | + $ph['BackupIcon'] = sprintf($iconTpl, $icon, 93); |
|
| 55 | 55 | } |
| 56 | -if($modx->hasPermission('help')) {
|
|
| 56 | +if ($modx->hasPermission('help')) {
|
|
| 57 | 57 | $icon = '<i class="[&icons_help_large&]" alt="[%help%]" /> </i>[%help%]'; |
| 58 | - $ph['HelpIcon'] = sprintf($iconTpl,$icon, 9); |
|
| 58 | + $ph['HelpIcon'] = sprintf($iconTpl, $icon, 9); |
|
| 59 | 59 | } |
| 60 | 60 | |
| 61 | -if($modx->hasPermission('new_document')) {
|
|
| 61 | +if ($modx->hasPermission('new_document')) {
|
|
| 62 | 62 | $icon = '<i class="[&icons_resource_large&]"></i>[%add_resource%]'; |
| 63 | - $ph['ResourceIcon'] = sprintf($iconTpl,$icon, 4); |
|
| 63 | + $ph['ResourceIcon'] = sprintf($iconTpl, $icon, 4); |
|
| 64 | 64 | $icon = '<i class="[&icons_weblink_large&]"></i>[%add_weblink%]'; |
| 65 | - $ph['WeblinkIcon'] = sprintf($iconTpl,$icon, 72); |
|
| 65 | + $ph['WeblinkIcon'] = sprintf($iconTpl, $icon, 72); |
|
| 66 | 66 | } |
| 67 | -if($modx->hasPermission('assets_images')) {
|
|
| 67 | +if ($modx->hasPermission('assets_images')) {
|
|
| 68 | 68 | $icon = '<i class="[&icons_images_large&]"></i>[%images_management%]'; |
| 69 | - $ph['ImagesIcon'] = sprintf($iconTpl,$icon, 72); |
|
| 69 | + $ph['ImagesIcon'] = sprintf($iconTpl, $icon, 72); |
|
| 70 | 70 | } |
| 71 | -if($modx->hasPermission('assets_files')) {
|
|
| 71 | +if ($modx->hasPermission('assets_files')) {
|
|
| 72 | 72 | $icon = '<i class="[&icons_files_large&]"></i>[%files_management%]'; |
| 73 | - $ph['FilesIcon'] = sprintf($iconTpl,$icon, 72); |
|
| 73 | + $ph['FilesIcon'] = sprintf($iconTpl, $icon, 72); |
|
| 74 | 74 | } |
| 75 | -if($modx->hasPermission('change_password')) {
|
|
| 75 | +if ($modx->hasPermission('change_password')) {
|
|
| 76 | 76 | $icon = '<i class="[&icons_password_large&]"></i>[%change_password%]'; |
| 77 | - $ph['PasswordIcon'] = sprintf($iconTpl,$icon, 28); |
|
| 77 | + $ph['PasswordIcon'] = sprintf($iconTpl, $icon, 28); |
|
| 78 | 78 | } |
| 79 | 79 | $icon = '<i class="[&icons_logout_large&]"></i>[%logout%]'; |
| 80 | -$ph['LogoutIcon'] = sprintf($iconTpl,$icon, 8); |
|
| 80 | +$ph['LogoutIcon'] = sprintf($iconTpl, $icon, 8); |
|
| 81 | 81 | |
| 82 | 82 | // do some config checks |
| 83 | -if(($modx->config['warning_visibility'] == 0 && $_SESSION['mgrRole'] == 1) || $modx->config['warning_visibility'] == 1) {
|
|
| 84 | - include_once(MODX_MANAGER_PATH . 'includes/config_check.inc.php'); |
|
| 85 | - if($config_check_results != $_lang['configcheck_ok']) {
|
|
| 83 | +if (($modx->config['warning_visibility'] == 0 && $_SESSION['mgrRole'] == 1) || $modx->config['warning_visibility'] == 1) {
|
|
| 84 | + include_once(MODX_MANAGER_PATH.'includes/config_check.inc.php'); |
|
| 85 | + if ($config_check_results != $_lang['configcheck_ok']) {
|
|
| 86 | 86 | $ph['config_check_results'] = $config_check_results; |
| 87 | 87 | $ph['config_display'] = 'block'; |
| 88 | 88 | } else {
|
@@ -93,8 +93,8 @@ discard block |
||
| 93 | 93 | } |
| 94 | 94 | |
| 95 | 95 | // Check logout-reminder |
| 96 | -if(isset($_SESSION['show_logout_reminder'])) {
|
|
| 97 | - switch($_SESSION['show_logout_reminder']['type']) {
|
|
| 96 | +if (isset($_SESSION['show_logout_reminder'])) {
|
|
| 97 | + switch ($_SESSION['show_logout_reminder']['type']) {
|
|
| 98 | 98 | case 'logout_reminder': |
| 99 | 99 | $date = $modx->toDateFormat($_SESSION['show_logout_reminder']['lastHit'], 'dateOnly'); |
| 100 | 100 | $ph['logout_reminder_msg'] = str_replace('[+date+]', $date, $_lang['logout_reminder_msg']);
|
@@ -148,7 +148,7 @@ discard block |
||
| 148 | 148 | </tr> |
| 149 | 149 | </table>'; |
| 150 | 150 | |
| 151 | -$nrnewmessages = '<span class="text-danger">' . $_SESSION['nrnewmessages'] . '</span>'; |
|
| 151 | +$nrnewmessages = '<span class="text-danger">'.$_SESSION['nrnewmessages'].'</span>'; |
|
| 152 | 152 | |
| 153 | 153 | $ph['UserInfo'] = $modx->parseText($tpl, array( |
| 154 | 154 | 'username' => $modx->getLoginUserName(), |
@@ -163,10 +163,10 @@ discard block |
||
| 163 | 163 | $from[] = " us LEFT JOIN [+prefix+]active_users au ON au.sid=us.sid WHERE au.action <> '8'"; |
| 164 | 164 | $rs = $modx->getDatabase()->select('*', $from, '', 'username ASC, au.sid ASC');
|
| 165 | 165 | |
| 166 | -if($modx->getDatabase()->getRecordCount($rs) < 1) {
|
|
| 166 | +if ($modx->getDatabase()->getRecordCount($rs) < 1) {
|
|
| 167 | 167 | $html = '<p>[%no_active_users_found%]</p>'; |
| 168 | 168 | } else {
|
| 169 | - include_once(MODX_MANAGER_PATH . 'includes/actionlist.inc.php'); |
|
| 169 | + include_once(MODX_MANAGER_PATH.'includes/actionlist.inc.php'); |
|
| 170 | 170 | $now = $_SERVER['REQUEST_TIME'] + $server_offset_time; |
| 171 | 171 | $ph['now'] = strftime('%H:%M:%S', $now);
|
| 172 | 172 | $timetocheck = ($now - (60 * 20)); //+$server_offset_time; |
@@ -191,7 +191,7 @@ discard block |
||
| 191 | 191 | $userList = array(); |
| 192 | 192 | $userCount = array(); |
| 193 | 193 | // Create userlist with session-count first before output |
| 194 | - while($activeusers = $modx->getDatabase()->getRow($rs)) {
|
|
| 194 | + while ($activeusers = $modx->getDatabase()->getRow($rs)) {
|
|
| 195 | 195 | $userCount[$activeusers['internalKey']] = isset($userCount[$activeusers['internalKey']]) ? $userCount[$activeusers['internalKey']] + 1 : 1; |
| 196 | 196 | |
| 197 | 197 | $idle = $activeusers['lasthit'] < $timetocheck ? ' class="userIdle"' : ''; |
@@ -209,9 +209,9 @@ discard block |
||
| 209 | 209 | $currentaction |
| 210 | 210 | ); |
| 211 | 211 | } |
| 212 | - foreach($userList as $params) {
|
|
| 212 | + foreach ($userList as $params) {
|
|
| 213 | 213 | $params[1] = $userCount[$params[4]] > 1 ? ' class="userMultipleSessions"' : ''; |
| 214 | - $html .= "\n\t\t" . vsprintf('<tr%s><td><strong%s>%s</strong></td><td>%s%s</td><td>%s</td><td>%s</td><td>%s</td></tr>', $params);
|
|
| 214 | + $html .= "\n\t\t".vsprintf('<tr%s><td><strong%s>%s</strong></td><td>%s%s</td><td>%s</td><td>%s</td><td>%s</td></tr>', $params);
|
|
| 215 | 215 | } |
| 216 | 216 | |
| 217 | 217 | $html .= ' |
@@ -223,7 +223,7 @@ discard block |
||
| 223 | 223 | $ph['OnlineInfo'] = $html; |
| 224 | 224 | |
| 225 | 225 | // include rss feeds for important forum topics |
| 226 | -include_once(MODX_MANAGER_PATH . 'includes/rss.inc.php'); |
|
| 226 | +include_once(MODX_MANAGER_PATH.'includes/rss.inc.php'); |
|
| 227 | 227 | $ph['modx_security_notices_content'] = $feedData['modx_security_notices_content']; |
| 228 | 228 | $ph['modx_news_content'] = $feedData['modx_news_content']; |
| 229 | 229 | |
@@ -254,7 +254,7 @@ discard block |
||
| 254 | 254 | |
| 255 | 255 | // invoke event OnManagerWelcomePrerender |
| 256 | 256 | $evtOut = $modx->invokeEvent('OnManagerWelcomePrerender');
|
| 257 | -if(is_array($evtOut)) {
|
|
| 257 | +if (is_array($evtOut)) {
|
|
| 258 | 258 | $output = implode('', $evtOut);
|
| 259 | 259 | $ph['OnManagerWelcomePrerender'] = $output; |
| 260 | 260 | } |
@@ -384,57 +384,57 @@ discard block |
||
| 384 | 384 | |
| 385 | 385 | // invoke OnManagerWelcomeHome event |
| 386 | 386 | $sitewidgets = $modx->invokeEvent("OnManagerWelcomeHome", array('widgets' => $widgets));
|
| 387 | -if(is_array($sitewidgets)) {
|
|
| 387 | +if (is_array($sitewidgets)) {
|
|
| 388 | 388 | $newwidgets = array(); |
| 389 | - foreach($sitewidgets as $widget){
|
|
| 389 | + foreach ($sitewidgets as $widget) {
|
|
| 390 | 390 | $newwidgets = array_merge($newwidgets, unserialize($widget)); |
| 391 | 391 | } |
| 392 | 392 | $widgets = (count($newwidgets) > 0) ? $newwidgets : $widgets; |
| 393 | 393 | } |
| 394 | 394 | |
| 395 | -usort($widgets, function ($a, $b) {
|
|
| 395 | +usort($widgets, function($a, $b){
|
|
| 396 | 396 | return $a['menuindex'] - $b['menuindex']; |
| 397 | 397 | }); |
| 398 | 398 | |
| 399 | 399 | $tpl = $modx->getChunk('manager#welcome\Widget');
|
| 400 | 400 | $output = ''; |
| 401 | -foreach($widgets as $widget) {
|
|
| 402 | - if ($widget['hide'] != '1'){
|
|
| 401 | +foreach ($widgets as $widget) {
|
|
| 402 | + if ($widget['hide'] != '1') {
|
|
| 403 | 403 | $output .= $modx->parseText($tpl, $widget); |
| 404 | 404 | } |
| 405 | 405 | } |
| 406 | 406 | $ph['widgets'] = $output; |
| 407 | 407 | |
| 408 | 408 | // load template |
| 409 | -if(!isset($modx->config['manager_welcome_tpl']) || empty($modx->config['manager_welcome_tpl'])) {
|
|
| 410 | - $modx->config['manager_welcome_tpl'] = MODX_MANAGER_PATH . 'media/style/common/welcome.tpl'; |
|
| 409 | +if (!isset($modx->config['manager_welcome_tpl']) || empty($modx->config['manager_welcome_tpl'])) {
|
|
| 410 | + $modx->config['manager_welcome_tpl'] = MODX_MANAGER_PATH.'media/style/common/welcome.tpl'; |
|
| 411 | 411 | } |
| 412 | 412 | |
| 413 | 413 | $target = $modx->config['manager_welcome_tpl']; |
| 414 | 414 | $target = str_replace('[+base_path+]', MODX_BASE_PATH, $target);
|
| 415 | 415 | $target = $modx->mergeSettingsContent($target); |
| 416 | 416 | |
| 417 | -if(substr($target, 0, 1) === '@') {
|
|
| 418 | - if(substr($target, 0, 6) === '@CHUNK') {
|
|
| 417 | +if (substr($target, 0, 1) === '@') {
|
|
| 418 | + if (substr($target, 0, 6) === '@CHUNK') {
|
|
| 419 | 419 | $content = $modx->getChunk(trim(substr($target, 7))); |
| 420 | - } elseif(substr($target, 0, 5) === '@FILE') {
|
|
| 420 | + } elseif (substr($target, 0, 5) === '@FILE') {
|
|
| 421 | 421 | $content = file_get_contents(trim(substr($target, 6))); |
| 422 | 422 | } else {
|
| 423 | 423 | $content = ''; |
| 424 | 424 | } |
| 425 | 425 | } else {
|
| 426 | 426 | $chunk = $modx->getChunk($target); |
| 427 | - if($chunk !== false && !empty($chunk)) {
|
|
| 427 | + if ($chunk !== false && !empty($chunk)) {
|
|
| 428 | 428 | $content = $chunk; |
| 429 | - } elseif(is_file(MODX_BASE_PATH . $target)) {
|
|
| 430 | - $content = file_get_contents(MODX_BASE_PATH . $target); |
|
| 431 | - } elseif(is_file(MODX_MANAGER_PATH . 'media/style/' . $modx->config['manager_theme'] . '/welcome.tpl')) {
|
|
| 432 | - $content = file_get_contents(MODX_MANAGER_PATH . 'media/style/' . $modx->config['manager_theme'] . '/welcome.tpl'); |
|
| 433 | - } elseif(is_file(MODX_MANAGER_PATH . 'media/style/' . $modx->config['manager_theme'] . '/html/welcome.html')) // ClipperCMS compatible |
|
| 429 | + } elseif (is_file(MODX_BASE_PATH.$target)) {
|
|
| 430 | + $content = file_get_contents(MODX_BASE_PATH.$target); |
|
| 431 | + } elseif (is_file(MODX_MANAGER_PATH.'media/style/'.$modx->config['manager_theme'].'/welcome.tpl')) {
|
|
| 432 | + $content = file_get_contents(MODX_MANAGER_PATH.'media/style/'.$modx->config['manager_theme'].'/welcome.tpl'); |
|
| 433 | + } elseif (is_file(MODX_MANAGER_PATH.'media/style/'.$modx->config['manager_theme'].'/html/welcome.html')) // ClipperCMS compatible |
|
| 434 | 434 | {
|
| 435 | - $content = file_get_contents(MODX_MANAGER_PATH . 'media/style/' . $modx->config['manager_theme'] . '/html/welcome.html'); |
|
| 435 | + $content = file_get_contents(MODX_MANAGER_PATH.'media/style/'.$modx->config['manager_theme'].'/html/welcome.html'); |
|
| 436 | 436 | } else {
|
| 437 | - $content = file_get_contents(MODX_MANAGER_PATH . 'media/style/common/welcome.tpl'); |
|
| 437 | + $content = file_get_contents(MODX_MANAGER_PATH.'media/style/common/welcome.tpl'); |
|
| 438 | 438 | } |
| 439 | 439 | } |
| 440 | 440 | |
@@ -442,7 +442,7 @@ discard block |
||
| 442 | 442 | $content = $modx->mergeConditionalTagsContent($content); |
| 443 | 443 | $content = $modx->mergeSettingsContent($content); |
| 444 | 444 | $content = $modx->parseText($content, $ph); |
| 445 | -if(strpos($content, '[+') !== false) {
|
|
| 445 | +if (strpos($content, '[+') !== false) {
|
|
| 446 | 446 | $modx->toPlaceholders($ph); |
| 447 | 447 | $content = $modx->mergePlaceholderContent($content); |
| 448 | 448 | } |
@@ -451,7 +451,7 @@ discard block |
||
| 451 | 451 | $content = $modx->parseText($content, $_style, '[&', '&]'); |
| 452 | 452 | $content = $modx->cleanUpMODXTags($content); //cleanup |
| 453 | 453 | |
| 454 | -if($js = $modx->getRegisteredClientScripts()) {
|
|
| 454 | +if ($js = $modx->getRegisteredClientScripts()) {
|
|
| 455 | 455 | $content .= $js; |
| 456 | 456 | } |
| 457 | 457 | |
@@ -1,11 +1,11 @@ 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 | unset($_SESSION['itemname']); // clear this, because it's only set for logging purposes |
| 7 | 7 | |
| 8 | -if($modx->hasPermission('settings') && (!isset($settings_version) || $settings_version != $modx->getVersionData('version'))) {
|
|
| 8 | +if($modx->hasPermission('settings') && (!isset($settings_version) || $settings_version != $modx->getVersionData('version'))) { |
|
| 9 | 9 | // seems to be a new install - send the user to the configuration page |
| 10 | 10 | exit('<script type="text/javascript">document.location.href="index.php?a=17";</script>');
|
| 11 | 11 | } |
@@ -16,7 +16,7 @@ discard block |
||
| 16 | 16 | $_SESSION['nrnewmessages'] = 0; |
| 17 | 17 | |
| 18 | 18 | // setup message info |
| 19 | -if($modx->hasPermission('messages')) {
|
|
| 19 | +if($modx->hasPermission('messages')) { |
|
| 20 | 20 | include_once(MODX_MANAGER_PATH . 'includes/messageCount.inc.php'); |
| 21 | 21 | $_SESSION['nrtotalmessages'] = $nrtotalmessages; |
| 22 | 22 | $_SESSION['nrnewmessages'] = $nrnewmessages; |
@@ -33,46 +33,46 @@ discard block |
||
| 33 | 33 | |
| 34 | 34 | $iconTpl = $modx->getChunk('manager#welcome\WrapIcon');
|
| 35 | 35 | // setup icons |
| 36 | -if($modx->hasPermission('new_user') || $modx->hasPermission('edit_user')) {
|
|
| 36 | +if($modx->hasPermission('new_user') || $modx->hasPermission('edit_user')) { |
|
| 37 | 37 | $icon = '<i class="[&icons_security_large&]" alt="[%user_management_title%]"> </i>[%user_management_title%]'; |
| 38 | 38 | $ph['SecurityIcon'] = sprintf($iconTpl,$icon, 75); |
| 39 | 39 | } |
| 40 | -if($modx->hasPermission('new_web_user') || $modx->hasPermission('edit_web_user')) {
|
|
| 40 | +if($modx->hasPermission('new_web_user') || $modx->hasPermission('edit_web_user')) { |
|
| 41 | 41 | $icon = '<i class="[&icons_webusers_large&]" alt="[%web_user_management_title%]"> </i>[%web_user_management_title%]'; |
| 42 | 42 | $ph['WebUserIcon'] = sprintf($iconTpl,$icon, 99); |
| 43 | 43 | } |
| 44 | -if($modx->hasPermission('new_module') || $modx->hasPermission('edit_module')) {
|
|
| 44 | +if($modx->hasPermission('new_module') || $modx->hasPermission('edit_module')) { |
|
| 45 | 45 | $icon = '<i class="[&icons_modules_large&]" alt="[%manage_modules%]"> </i>[%modules%]'; |
| 46 | 46 | $ph['ModulesIcon'] = sprintf($iconTpl,$icon, 106); |
| 47 | 47 | } |
| 48 | -if($modx->hasPermission('new_template') || $modx->hasPermission('edit_template') || $modx->hasPermission('new_snippet') || $modx->hasPermission('edit_snippet') || $modx->hasPermission('new_plugin') || $modx->hasPermission('edit_plugin') || $modx->hasPermission('manage_metatags')) {
|
|
| 48 | +if($modx->hasPermission('new_template') || $modx->hasPermission('edit_template') || $modx->hasPermission('new_snippet') || $modx->hasPermission('edit_snippet') || $modx->hasPermission('new_plugin') || $modx->hasPermission('edit_plugin') || $modx->hasPermission('manage_metatags')) { |
|
| 49 | 49 | $icon = '<i class="[&icons_resources_large&]" alt="[%element_management%]"> </i>[%elements%]'; |
| 50 | 50 | $ph['ResourcesIcon'] = sprintf($iconTpl,$icon, 76); |
| 51 | 51 | } |
| 52 | -if($modx->hasPermission('bk_manager')) {
|
|
| 52 | +if($modx->hasPermission('bk_manager')) { |
|
| 53 | 53 | $icon = '<i class="[&icons_backup_large&]" alt="[%bk_manager%]"> </i>[%backup%]'; |
| 54 | 54 | $ph['BackupIcon'] = sprintf($iconTpl,$icon, 93); |
| 55 | 55 | } |
| 56 | -if($modx->hasPermission('help')) {
|
|
| 56 | +if($modx->hasPermission('help')) { |
|
| 57 | 57 | $icon = '<i class="[&icons_help_large&]" alt="[%help%]" /> </i>[%help%]'; |
| 58 | 58 | $ph['HelpIcon'] = sprintf($iconTpl,$icon, 9); |
| 59 | 59 | } |
| 60 | 60 | |
| 61 | -if($modx->hasPermission('new_document')) {
|
|
| 61 | +if($modx->hasPermission('new_document')) { |
|
| 62 | 62 | $icon = '<i class="[&icons_resource_large&]"></i>[%add_resource%]'; |
| 63 | 63 | $ph['ResourceIcon'] = sprintf($iconTpl,$icon, 4); |
| 64 | 64 | $icon = '<i class="[&icons_weblink_large&]"></i>[%add_weblink%]'; |
| 65 | 65 | $ph['WeblinkIcon'] = sprintf($iconTpl,$icon, 72); |
| 66 | 66 | } |
| 67 | -if($modx->hasPermission('assets_images')) {
|
|
| 67 | +if($modx->hasPermission('assets_images')) { |
|
| 68 | 68 | $icon = '<i class="[&icons_images_large&]"></i>[%images_management%]'; |
| 69 | 69 | $ph['ImagesIcon'] = sprintf($iconTpl,$icon, 72); |
| 70 | 70 | } |
| 71 | -if($modx->hasPermission('assets_files')) {
|
|
| 71 | +if($modx->hasPermission('assets_files')) { |
|
| 72 | 72 | $icon = '<i class="[&icons_files_large&]"></i>[%files_management%]'; |
| 73 | 73 | $ph['FilesIcon'] = sprintf($iconTpl,$icon, 72); |
| 74 | 74 | } |
| 75 | -if($modx->hasPermission('change_password')) {
|
|
| 75 | +if($modx->hasPermission('change_password')) { |
|
| 76 | 76 | $icon = '<i class="[&icons_password_large&]"></i>[%change_password%]'; |
| 77 | 77 | $ph['PasswordIcon'] = sprintf($iconTpl,$icon, 28); |
| 78 | 78 | } |
@@ -80,21 +80,21 @@ discard block |
||
| 80 | 80 | $ph['LogoutIcon'] = sprintf($iconTpl,$icon, 8); |
| 81 | 81 | |
| 82 | 82 | // do some config checks |
| 83 | -if(($modx->config['warning_visibility'] == 0 && $_SESSION['mgrRole'] == 1) || $modx->config['warning_visibility'] == 1) {
|
|
| 83 | +if(($modx->config['warning_visibility'] == 0 && $_SESSION['mgrRole'] == 1) || $modx->config['warning_visibility'] == 1) { |
|
| 84 | 84 | include_once(MODX_MANAGER_PATH . 'includes/config_check.inc.php'); |
| 85 | - if($config_check_results != $_lang['configcheck_ok']) {
|
|
| 85 | + if($config_check_results != $_lang['configcheck_ok']) { |
|
| 86 | 86 | $ph['config_check_results'] = $config_check_results; |
| 87 | 87 | $ph['config_display'] = 'block'; |
| 88 | - } else {
|
|
| 88 | + } else { |
|
| 89 | 89 | $ph['config_display'] = 'none'; |
| 90 | 90 | } |
| 91 | -} else {
|
|
| 91 | +} else { |
|
| 92 | 92 | $ph['config_display'] = 'none'; |
| 93 | 93 | } |
| 94 | 94 | |
| 95 | 95 | // Check logout-reminder |
| 96 | -if(isset($_SESSION['show_logout_reminder'])) {
|
|
| 97 | - switch($_SESSION['show_logout_reminder']['type']) {
|
|
| 96 | +if(isset($_SESSION['show_logout_reminder'])) { |
|
| 97 | + switch($_SESSION['show_logout_reminder']['type']) { |
|
| 98 | 98 | case 'logout_reminder': |
| 99 | 99 | $date = $modx->toDateFormat($_SESSION['show_logout_reminder']['lastHit'], 'dateOnly'); |
| 100 | 100 | $ph['logout_reminder_msg'] = str_replace('[+date+]', $date, $_lang['logout_reminder_msg']);
|
@@ -102,7 +102,7 @@ discard block |
||
| 102 | 102 | } |
| 103 | 103 | $ph['show_logout_reminder'] = 'block'; |
| 104 | 104 | unset($_SESSION['show_logout_reminder']); |
| 105 | -} else {
|
|
| 105 | +} else { |
|
| 106 | 106 | $ph['show_logout_reminder'] = 'none'; |
| 107 | 107 | } |
| 108 | 108 | |
@@ -163,9 +163,9 @@ discard block |
||
| 163 | 163 | $from[] = " us LEFT JOIN [+prefix+]active_users au ON au.sid=us.sid WHERE au.action <> '8'"; |
| 164 | 164 | $rs = $modx->getDatabase()->select('*', $from, '', 'username ASC, au.sid ASC');
|
| 165 | 165 | |
| 166 | -if($modx->getDatabase()->getRecordCount($rs) < 1) {
|
|
| 166 | +if($modx->getDatabase()->getRecordCount($rs) < 1) { |
|
| 167 | 167 | $html = '<p>[%no_active_users_found%]</p>'; |
| 168 | -} else {
|
|
| 168 | +} else { |
|
| 169 | 169 | include_once(MODX_MANAGER_PATH . 'includes/actionlist.inc.php'); |
| 170 | 170 | $now = $_SERVER['REQUEST_TIME'] + $server_offset_time; |
| 171 | 171 | $ph['now'] = strftime('%H:%M:%S', $now);
|
@@ -191,7 +191,7 @@ discard block |
||
| 191 | 191 | $userList = array(); |
| 192 | 192 | $userCount = array(); |
| 193 | 193 | // Create userlist with session-count first before output |
| 194 | - while($activeusers = $modx->getDatabase()->getRow($rs)) {
|
|
| 194 | + while($activeusers = $modx->getDatabase()->getRow($rs)) { |
|
| 195 | 195 | $userCount[$activeusers['internalKey']] = isset($userCount[$activeusers['internalKey']]) ? $userCount[$activeusers['internalKey']] + 1 : 1; |
| 196 | 196 | |
| 197 | 197 | $idle = $activeusers['lasthit'] < $timetocheck ? ' class="userIdle"' : ''; |
@@ -209,7 +209,7 @@ discard block |
||
| 209 | 209 | $currentaction |
| 210 | 210 | ); |
| 211 | 211 | } |
| 212 | - foreach($userList as $params) {
|
|
| 212 | + foreach($userList as $params) { |
|
| 213 | 213 | $params[1] = $userCount[$params[4]] > 1 ? ' class="userMultipleSessions"' : ''; |
| 214 | 214 | $html .= "\n\t\t" . vsprintf('<tr%s><td><strong%s>%s</strong></td><td>%s%s</td><td>%s</td><td>%s</td><td>%s</td></tr>', $params);
|
| 215 | 215 | } |
@@ -254,7 +254,7 @@ discard block |
||
| 254 | 254 | |
| 255 | 255 | // invoke event OnManagerWelcomePrerender |
| 256 | 256 | $evtOut = $modx->invokeEvent('OnManagerWelcomePrerender');
|
| 257 | -if(is_array($evtOut)) {
|
|
| 257 | +if(is_array($evtOut)) { |
|
| 258 | 258 | $output = implode('', $evtOut);
|
| 259 | 259 | $ph['OnManagerWelcomePrerender'] = $output; |
| 260 | 260 | } |
@@ -359,7 +359,7 @@ discard block |
||
| 359 | 359 | 'body' => '<div class="widget-stage">[+RecentInfo+]</div>', |
| 360 | 360 | 'hide'=>'0' |
| 361 | 361 | ); |
| 362 | -if ($modx->config['rss_url_news']) {
|
|
| 362 | +if ($modx->config['rss_url_news']) { |
|
| 363 | 363 | $widgets['news'] = array( |
| 364 | 364 | 'menuindex' => '40', |
| 365 | 365 | 'id' => 'news', |
@@ -370,7 +370,7 @@ discard block |
||
| 370 | 370 | 'hide'=>'0' |
| 371 | 371 | ); |
| 372 | 372 | } |
| 373 | -if ($modx->config['rss_url_security']) {
|
|
| 373 | +if ($modx->config['rss_url_security']) { |
|
| 374 | 374 | $widgets['security'] = array( |
| 375 | 375 | 'menuindex' => '50', |
| 376 | 376 | 'id' => 'security', |
@@ -384,29 +384,29 @@ discard block |
||
| 384 | 384 | |
| 385 | 385 | // invoke OnManagerWelcomeHome event |
| 386 | 386 | $sitewidgets = $modx->invokeEvent("OnManagerWelcomeHome", array('widgets' => $widgets));
|
| 387 | -if(is_array($sitewidgets)) {
|
|
| 387 | +if(is_array($sitewidgets)) { |
|
| 388 | 388 | $newwidgets = array(); |
| 389 | - foreach($sitewidgets as $widget){
|
|
| 389 | + foreach($sitewidgets as $widget) { |
|
| 390 | 390 | $newwidgets = array_merge($newwidgets, unserialize($widget)); |
| 391 | 391 | } |
| 392 | 392 | $widgets = (count($newwidgets) > 0) ? $newwidgets : $widgets; |
| 393 | 393 | } |
| 394 | 394 | |
| 395 | -usort($widgets, function ($a, $b) {
|
|
| 395 | +usort($widgets, function ($a, $b){ |
|
| 396 | 396 | return $a['menuindex'] - $b['menuindex']; |
| 397 | 397 | }); |
| 398 | 398 | |
| 399 | 399 | $tpl = $modx->getChunk('manager#welcome\Widget');
|
| 400 | 400 | $output = ''; |
| 401 | -foreach($widgets as $widget) {
|
|
| 402 | - if ($widget['hide'] != '1'){
|
|
| 401 | +foreach($widgets as $widget) { |
|
| 402 | + if ($widget['hide'] != '1') { |
|
| 403 | 403 | $output .= $modx->parseText($tpl, $widget); |
| 404 | 404 | } |
| 405 | 405 | } |
| 406 | 406 | $ph['widgets'] = $output; |
| 407 | 407 | |
| 408 | 408 | // load template |
| 409 | -if(!isset($modx->config['manager_welcome_tpl']) || empty($modx->config['manager_welcome_tpl'])) {
|
|
| 409 | +if(!isset($modx->config['manager_welcome_tpl']) || empty($modx->config['manager_welcome_tpl'])) { |
|
| 410 | 410 | $modx->config['manager_welcome_tpl'] = MODX_MANAGER_PATH . 'media/style/common/welcome.tpl'; |
| 411 | 411 | } |
| 412 | 412 | |
@@ -414,26 +414,28 @@ discard block |
||
| 414 | 414 | $target = str_replace('[+base_path+]', MODX_BASE_PATH, $target);
|
| 415 | 415 | $target = $modx->mergeSettingsContent($target); |
| 416 | 416 | |
| 417 | -if(substr($target, 0, 1) === '@') {
|
|
| 418 | - if(substr($target, 0, 6) === '@CHUNK') {
|
|
| 417 | +if(substr($target, 0, 1) === '@') { |
|
| 418 | + if(substr($target, 0, 6) === '@CHUNK') { |
|
| 419 | 419 | $content = $modx->getChunk(trim(substr($target, 7))); |
| 420 | - } elseif(substr($target, 0, 5) === '@FILE') {
|
|
| 420 | + } elseif(substr($target, 0, 5) === '@FILE') { |
|
| 421 | 421 | $content = file_get_contents(trim(substr($target, 6))); |
| 422 | - } else {
|
|
| 422 | + } else { |
|
| 423 | 423 | $content = ''; |
| 424 | 424 | } |
| 425 | -} else {
|
|
| 425 | +} else { |
|
| 426 | 426 | $chunk = $modx->getChunk($target); |
| 427 | - if($chunk !== false && !empty($chunk)) {
|
|
| 427 | + if($chunk !== false && !empty($chunk)) { |
|
| 428 | 428 | $content = $chunk; |
| 429 | - } elseif(is_file(MODX_BASE_PATH . $target)) {
|
|
| 429 | + } elseif(is_file(MODX_BASE_PATH . $target)) { |
|
| 430 | 430 | $content = file_get_contents(MODX_BASE_PATH . $target); |
| 431 | - } elseif(is_file(MODX_MANAGER_PATH . 'media/style/' . $modx->config['manager_theme'] . '/welcome.tpl')) {
|
|
| 431 | + } elseif(is_file(MODX_MANAGER_PATH . 'media/style/' . $modx->config['manager_theme'] . '/welcome.tpl')) { |
|
| 432 | 432 | $content = file_get_contents(MODX_MANAGER_PATH . 'media/style/' . $modx->config['manager_theme'] . '/welcome.tpl'); |
| 433 | - } elseif(is_file(MODX_MANAGER_PATH . 'media/style/' . $modx->config['manager_theme'] . '/html/welcome.html')) // ClipperCMS compatible |
|
| 433 | + } elseif(is_file(MODX_MANAGER_PATH . 'media/style/' . $modx->config['manager_theme'] . '/html/welcome.html')) { |
|
| 434 | + // ClipperCMS compatible |
|
| 434 | 435 | {
|
| 435 | - $content = file_get_contents(MODX_MANAGER_PATH . 'media/style/' . $modx->config['manager_theme'] . '/html/welcome.html'); |
|
| 436 | - } else {
|
|
| 436 | + $content = file_get_contents(MODX_MANAGER_PATH . 'media/style/' . $modx->config['manager_theme'] . '/html/welcome.html'); |
|
| 437 | + } |
|
| 438 | + } else { |
|
| 437 | 439 | $content = file_get_contents(MODX_MANAGER_PATH . 'media/style/common/welcome.tpl'); |
| 438 | 440 | } |
| 439 | 441 | } |
@@ -442,7 +444,7 @@ discard block |
||
| 442 | 444 | $content = $modx->mergeConditionalTagsContent($content); |
| 443 | 445 | $content = $modx->mergeSettingsContent($content); |
| 444 | 446 | $content = $modx->parseText($content, $ph); |
| 445 | -if(strpos($content, '[+') !== false) {
|
|
| 447 | +if(strpos($content, '[+') !== false) { |
|
| 446 | 448 | $modx->toPlaceholders($ph); |
| 447 | 449 | $content = $modx->mergePlaceholderContent($content); |
| 448 | 450 | } |
@@ -451,7 +453,7 @@ discard block |
||
| 451 | 453 | $content = $modx->parseText($content, $_style, '[&', '&]'); |
| 452 | 454 | $content = $modx->cleanUpMODXTags($content); //cleanup |
| 453 | 455 | |
| 454 | -if($js = $modx->getRegisteredClientScripts()) {
|
|
| 456 | +if($js = $modx->getRegisteredClientScripts()) { |
|
| 455 | 457 | $content .= $js; |
| 456 | 458 | } |
| 457 | 459 | |