@@ -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->db->select('username', $modx->getFullTableName('active_users'), "action=17 AND internalKey!='" . $modx->getLoginUserID() . "'");
|
|
| 11 | -if($username = $modx->db->getValue($rs)) {
|
|
| 10 | +$rs = $modx->db->select('username', $modx->getFullTableName('active_users'), "action=17 AND internalKey!='".$modx->getLoginUserID()."'");
|
|
| 11 | +if ($username = $modx->db->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->db->select('setting_name, setting_value', '[+prefix+]system_settings');
|
| 21 | -while($row = $modx->db->getRow($rs)) {
|
|
| 21 | +while ($row = $modx->db->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,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 | $tbl_site_plugins = $modx->getFullTableName('site_plugins'); |
| 24 | 24 | $tbl_site_plugin_events = $modx->getFullTableName('site_plugin_events'); |
@@ -46,7 +46,7 @@ discard block |
||
| 46 | 46 | $content['properties'] = str_replace("&", "&", $content['properties']); |
| 47 | 47 | } else { |
| 48 | 48 | $_SESSION['itemname'] = $_lang["new_plugin"]; |
| 49 | - $content['category'] = (int)$_REQUEST['catid']; |
|
| 49 | + $content['category'] = (int) $_REQUEST['catid']; |
|
| 50 | 50 | } |
| 51 | 51 | |
| 52 | 52 | if ($modx->manager->hasFormValues()) { |
@@ -56,7 +56,7 @@ discard block |
||
| 56 | 56 | // Add lock-element JS-Script |
| 57 | 57 | $lockElementId = $id; |
| 58 | 58 | $lockElementType = 5; |
| 59 | -require_once(MODX_MANAGER_PATH . 'includes/active_user_locks.inc.php'); |
|
| 59 | +require_once(MODX_MANAGER_PATH.'includes/active_user_locks.inc.php'); |
|
| 60 | 60 | |
| 61 | 61 | |
| 62 | 62 | |
@@ -473,7 +473,7 @@ discard block |
||
| 473 | 473 | <input type="hidden" name="mode" value="<?= $modx->manager->action ?>"> |
| 474 | 474 | |
| 475 | 475 | <h1> |
| 476 | - <i class="fa fa-plug"></i><?= ($content['name'] ? $content['name'] . '<small>(' . $content['id'] . ')</small>' : $_lang['new_plugin']) ?><i class="fa fa-question-circle help"></i> |
|
| 476 | + <i class="fa fa-plug"></i><?= ($content['name'] ? $content['name'].'<small>('.$content['id'].')</small>' : $_lang['new_plugin']) ?><i class="fa fa-question-circle help"></i> |
|
| 477 | 477 | </h1> |
| 478 | 478 | |
| 479 | 479 | <?= $_style['actionbuttons']['dynamic']['element'] ?> |
@@ -499,7 +499,7 @@ discard block |
||
| 499 | 499 | <div class="form-control-name clearfix"> |
| 500 | 500 | <input name="name" type="text" maxlength="100" value="<?= $modx->htmlspecialchars($content['name']) ?>" class="form-control form-control-lg" onchange="documentDirty=true;" /> |
| 501 | 501 | <?php if ($modx->hasPermission('save_role')): ?> |
| 502 | - <label class="custom-control" title="<?= $_lang['lock_plugin'] . "\n" . $_lang['lock_plugin_msg'] ?>" tooltip> |
|
| 502 | + <label class="custom-control" title="<?= $_lang['lock_plugin']."\n".$_lang['lock_plugin_msg'] ?>" tooltip> |
|
| 503 | 503 | <input name="locked" type="checkbox" value="on"<?= ($content['locked'] == 1 ? ' checked="checked"' : '') ?> /> |
| 504 | 504 | <i class="fa fa-lock"></i> |
| 505 | 505 | </label> |
@@ -523,9 +523,9 @@ discard block |
||
| 523 | 523 | <select name="categoryid" class="form-control" onchange="documentDirty=true;"> |
| 524 | 524 | <option> </option> |
| 525 | 525 | <?php |
| 526 | - include_once(MODX_MANAGER_PATH . 'includes/categories.inc.php'); |
|
| 526 | + include_once(MODX_MANAGER_PATH.'includes/categories.inc.php'); |
|
| 527 | 527 | foreach (getCategories() as $n => $v) { |
| 528 | - echo '<option value="' . $v['id'] . '"' . ($content["category"] == $v["id"] ? ' selected="selected"' : '') . '>' . $modx->htmlspecialchars($v["category"]) . "</option>"; |
|
| 528 | + echo '<option value="'.$v['id'].'"'.($content["category"] == $v["id"] ? ' selected="selected"' : '').'>'.$modx->htmlspecialchars($v["category"])."</option>"; |
|
| 529 | 529 | } |
| 530 | 530 | ?> |
| 531 | 531 | </select> |
@@ -541,7 +541,7 @@ discard block |
||
| 541 | 541 | <?php if ($modx->hasPermission('save_role')): ?> |
| 542 | 542 | <div class="form-group"> |
| 543 | 543 | <div class="form-row"> |
| 544 | - <label><input name="disabled" type="checkbox" value="on"<?= ($content['disabled'] == 1 ? ' checked="checked"' : '') ?> /> <?= ($content['disabled'] == 1 ? "<span class='text-danger'>" . $_lang['plugin_disabled'] . "</span>" : $_lang['plugin_disabled']) ?></label> |
|
| 544 | + <label><input name="disabled" type="checkbox" value="on"<?= ($content['disabled'] == 1 ? ' checked="checked"' : '') ?> /> <?= ($content['disabled'] == 1 ? "<span class='text-danger'>".$_lang['plugin_disabled']."</span>" : $_lang['plugin_disabled']) ?></label> |
|
| 545 | 545 | </div> |
| 546 | 546 | <div class="form-row"> |
| 547 | 547 | <label> |
@@ -588,11 +588,11 @@ discard block |
||
| 588 | 588 | <select name="moduleguid" class="form-control" onchange="documentDirty=true;"> |
| 589 | 589 | <option> </option> |
| 590 | 590 | <?php |
| 591 | - $ds = $modx->db->select('sm.id,sm.name,sm.guid', $modx->getFullTableName("site_modules") . " sm |
|
| 592 | - INNER JOIN " . $modx->getFullTableName("site_module_depobj") . " smd ON smd.module=sm.id AND smd.type=30 |
|
| 593 | - INNER JOIN " . $modx->getFullTableName("site_plugins") . " sp ON sp.id=smd.resource", "smd.resource='{$id}' AND sm.enable_sharedparams='1'", 'sm.name'); |
|
| 591 | + $ds = $modx->db->select('sm.id,sm.name,sm.guid', $modx->getFullTableName("site_modules")." sm |
|
| 592 | + INNER JOIN " . $modx->getFullTableName("site_module_depobj")." smd ON smd.module=sm.id AND smd.type=30 |
|
| 593 | + INNER JOIN " . $modx->getFullTableName("site_plugins")." sp ON sp.id=smd.resource", "smd.resource='{$id}' AND sm.enable_sharedparams='1'", 'sm.name'); |
|
| 594 | 594 | while ($row = $modx->db->getRow($ds)) { |
| 595 | - echo "<option value='" . $row['guid'] . "'" . ($content["moduleguid"] == $row["guid"] ? " selected='selected'" : "") . ">" . $modx->htmlspecialchars($row["name"]) . "</option>"; |
|
| 595 | + echo "<option value='".$row['guid']."'".($content["moduleguid"] == $row["guid"] ? " selected='selected'" : "").">".$modx->htmlspecialchars($row["name"])."</option>"; |
|
| 596 | 596 | } |
| 597 | 597 | ?> |
| 598 | 598 | </select> |
@@ -654,7 +654,7 @@ discard block |
||
| 654 | 654 | echoEventRows($evtnames); |
| 655 | 655 | } |
| 656 | 656 | echo '<hr class="clear">'; |
| 657 | - echo '<div class="form-group"><b>' . $services[$srv - 1] . '</b></div>'; |
|
| 657 | + echo '<div class="form-group"><b>'.$services[$srv - 1].'</b></div>'; |
|
| 658 | 658 | } |
| 659 | 659 | // display group name |
| 660 | 660 | if ($grp != $row['groupname']) { |
@@ -663,9 +663,9 @@ discard block |
||
| 663 | 663 | echoEventRows($evtnames); |
| 664 | 664 | } |
| 665 | 665 | echo '<hr class="clear">'; |
| 666 | - echo '<div class="form-group"><b>' . $row['groupname'] . '</b></div>'; |
|
| 666 | + echo '<div class="form-group"><b>'.$row['groupname'].'</b></div>'; |
|
| 667 | 667 | } |
| 668 | - $evtnames[] = '<input name="sysevents[]" id="' . $row['name'] . '" type="checkbox" ' . (in_array($row['id'], $evts) ? ' checked="checked" ' : '') . 'class="inputBox" value="' . $row['id'] . '" /> <label for="' . $row['name'] . '" ' . bold(in_array($row['id'], $evts)) . '> ' . $row['name'] . '</label>' . "\n"; |
|
| 668 | + $evtnames[] = '<input name="sysevents[]" id="'.$row['name'].'" type="checkbox" '.(in_array($row['id'], $evts) ? ' checked="checked" ' : '').'class="inputBox" value="'.$row['id'].'" /> <label for="'.$row['name'].'" '.bold(in_array($row['id'], $evts)).'> '.$row['name'].'</label>'."\n"; |
|
| 669 | 669 | if (count($evtnames) == 2) { |
| 670 | 670 | echoEventRows($evtnames); |
| 671 | 671 | } |
@@ -3,7 +3,7 @@ discard block |
||
| 3 | 3 | die("<b>INCLUDE_ORDERING_ERROR</b><br /><br />Please use the EVO Content Manager instead of accessing this file directly."); |
| 4 | 4 | } |
| 5 | 5 | |
| 6 | -switch ((int)$modx->manager->action) { |
|
| 6 | +switch ((int) $modx->manager->action) { |
|
| 7 | 7 | case 35: |
| 8 | 8 | if (!$modx->hasPermission('edit_role')) { |
| 9 | 9 | $modx->webAlertAndQuit($_lang["error_no_privileges"]); |
@@ -18,7 +18,7 @@ discard block |
||
| 18 | 18 | $modx->webAlertAndQuit($_lang["error_no_privileges"]); |
| 19 | 19 | } |
| 20 | 20 | |
| 21 | -$role = isset($_REQUEST['id']) ? (int)$_REQUEST['id'] : 0; |
|
| 21 | +$role = isset($_REQUEST['id']) ? (int) $_REQUEST['id'] : 0; |
|
| 22 | 22 | |
| 23 | 23 | $tbl_user_roles = $modx->getFullTableName('user_roles'); |
| 24 | 24 | |
@@ -46,7 +46,7 @@ discard block |
||
| 46 | 46 | // Add lock-element JS-Script |
| 47 | 47 | $lockElementId = $role; |
| 48 | 48 | $lockElementType = 8; |
| 49 | -require_once(MODX_MANAGER_PATH . 'includes/active_user_locks.inc.php'); |
|
| 49 | +require_once(MODX_MANAGER_PATH.'includes/active_user_locks.inc.php'); |
|
| 50 | 50 | ?> |
| 51 | 51 | <script type="text/javascript"> |
| 52 | 52 | function changestate(element) { |
@@ -82,7 +82,7 @@ discard block |
||
| 82 | 82 | <input type="hidden" name="id" value="<?= $_GET['id'] ?>"> |
| 83 | 83 | |
| 84 | 84 | <h1> |
| 85 | - <i class="fa fa-legal"></i><?= ($roledata['name'] ? $roledata['name'] . '<small>(' . $roledata['id'] . ')</small>' : $_lang['role_title']) ?> |
|
| 85 | + <i class="fa fa-legal"></i><?= ($roledata['name'] ? $roledata['name'].'<small>('.$roledata['id'].')</small>' : $_lang['role_title']) ?> |
|
| 86 | 86 | </h1> |
| 87 | 87 | |
| 88 | 88 | <?= $_style['actionbuttons']['dynamic']['savedelete'] ?> |
@@ -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 | |
@@ -9,11 +9,11 @@ discard block |
||
| 9 | 9 | */ |
| 10 | 10 | |
| 11 | 11 | $tpl = array( |
| 12 | - 'viewForm' => file_get_contents(MODX_MANAGER_PATH . 'actions/resources/tpl_viewForm.tpl'), |
|
| 13 | - 'panelGroup' => file_get_contents(MODX_MANAGER_PATH . 'actions/resources/tpl_panelGroup.tpl'), |
|
| 14 | - 'panelHeading' => file_get_contents(MODX_MANAGER_PATH . 'actions/resources/tpl_panelHeading.tpl'), |
|
| 15 | - 'panelCollapse' => file_get_contents(MODX_MANAGER_PATH . 'actions/resources/tpl_panelCollapse.tpl'), |
|
| 16 | - 'elementsRow' => file_get_contents(MODX_MANAGER_PATH . 'actions/resources/tpl_elementsRow.tpl') |
|
| 12 | + 'viewForm' => file_get_contents(MODX_MANAGER_PATH.'actions/resources/tpl_viewForm.tpl'), |
|
| 13 | + 'panelGroup' => file_get_contents(MODX_MANAGER_PATH.'actions/resources/tpl_panelGroup.tpl'), |
|
| 14 | + 'panelHeading' => file_get_contents(MODX_MANAGER_PATH.'actions/resources/tpl_panelHeading.tpl'), |
|
| 15 | + 'panelCollapse' => file_get_contents(MODX_MANAGER_PATH.'actions/resources/tpl_panelCollapse.tpl'), |
|
| 16 | + 'elementsRow' => file_get_contents(MODX_MANAGER_PATH.'actions/resources/tpl_elementsRow.tpl') |
|
| 17 | 17 | ); |
| 18 | 18 | |
| 19 | 19 | /** |
@@ -21,7 +21,7 @@ discard block |
||
| 21 | 21 | * @param array $ph |
| 22 | 22 | * @return string |
| 23 | 23 | */ |
| 24 | -function parsePh($tpl, $ph) { |
|
| 24 | +function parsePh($tpl, $ph){ |
|
| 25 | 25 | $modx = evolutionCMS(); global $_lang; |
| 26 | 26 | $tpl = $modx->parseText($tpl, $_lang, '[%', '%]'); |
| 27 | 27 | return $modx->parseText($tpl, $ph); |
@@ -31,7 +31,7 @@ discard block |
||
| 31 | 31 | * @param string|int $cssId |
| 32 | 32 | * @return string |
| 33 | 33 | */ |
| 34 | -function renderViewSwitchButtons($cssId) { |
|
| 34 | +function renderViewSwitchButtons($cssId){ |
|
| 35 | 35 | $modx = evolutionCMS(); global $_lang, $tpl; |
| 36 | 36 | |
| 37 | 37 | return parsePh($tpl['viewForm'], array( |
@@ -44,19 +44,19 @@ discard block |
||
| 44 | 44 | * @param mgrResources $resources |
| 45 | 45 | * @return string |
| 46 | 46 | */ |
| 47 | -function createResourceList($resourceTable, $resources) { |
|
| 47 | +function createResourceList($resourceTable, $resources){ |
|
| 48 | 48 | $modx = evolutionCMS(); global $_lang, $_style, $modx_textdir, $tpl; |
| 49 | 49 | |
| 50 | 50 | $items = isset($resources->items[$resourceTable]) ? $resources->items[$resourceTable] : false; |
| 51 | 51 | |
| 52 | - if( ! is_array($items) || empty($items)) { |
|
| 52 | + if (!is_array($items) || empty($items)) { |
|
| 53 | 53 | return $_lang['no_results']; |
| 54 | 54 | } |
| 55 | 55 | |
| 56 | 56 | // Prepare elements- and categories-list |
| 57 | 57 | $elements = array(); |
| 58 | 58 | $categories = array(); |
| 59 | - foreach($items as $row) { |
|
| 59 | + foreach ($items as $row) { |
|
| 60 | 60 | $catid = $row['catid'] ? $row['catid'] : 0; |
| 61 | 61 | $categories[$catid] = array('name' => stripslashes($row['category'])); |
| 62 | 62 | $elements[$catid][] = prepareElementRowPh($row, $resourceTable, $resources); |
@@ -64,18 +64,18 @@ discard block |
||
| 64 | 64 | |
| 65 | 65 | // Now render categories / panel-collapse |
| 66 | 66 | $panelGroup = ''; |
| 67 | - foreach($elements as $catid => $elList) { |
|
| 67 | + foreach ($elements as $catid => $elList) { |
|
| 68 | 68 | // Add panel-heading / category-collapse to output |
| 69 | 69 | $panelGroup .= parsePh($tpl['panelHeading'], array( |
| 70 | 70 | 'tab' => $resourceTable, |
| 71 | 71 | 'category' => $categories[$catid]['name'], |
| 72 | - 'categoryid' => $catid != '' ? ' <small>(' . $catid . ')</small>' : '', |
|
| 72 | + 'categoryid' => $catid != '' ? ' <small>('.$catid.')</small>' : '', |
|
| 73 | 73 | 'catid' => $catid, |
| 74 | 74 | )); |
| 75 | 75 | |
| 76 | 76 | // Prepare content for panel-collapse |
| 77 | 77 | $panelCollapse = ''; |
| 78 | - foreach($elList as $el) { |
|
| 78 | + foreach ($elList as $el) { |
|
| 79 | 79 | $panelCollapse .= parsePh($tpl['elementsRow'], $el); |
| 80 | 80 | } |
| 81 | 81 | |
@@ -97,30 +97,30 @@ discard block |
||
| 97 | 97 | * @param mgrResources $resources |
| 98 | 98 | * @return string |
| 99 | 99 | */ |
| 100 | -function createCombinedView($resources) { |
|
| 100 | +function createCombinedView($resources){ |
|
| 101 | 101 | $modx = evolutionCMS(); global $_lang, $_style, $modx_textdir; |
| 102 | 102 | |
| 103 | 103 | $itemsPerCategory = isset($resources->itemsPerCategory) ? $resources->itemsPerCategory : false; |
| 104 | 104 | $types = isset($resources->types) ? $resources->types : false; |
| 105 | 105 | $categories = isset($resources->categories) ? $resources->categories : false; |
| 106 | 106 | |
| 107 | - if(!$itemsPerCategory) { |
|
| 107 | + if (!$itemsPerCategory) { |
|
| 108 | 108 | return $_lang['no_results']; |
| 109 | 109 | } |
| 110 | 110 | |
| 111 | 111 | $tpl = array( |
| 112 | - 'panelGroup' => file_get_contents(MODX_MANAGER_PATH . 'actions/resources/tpl_panelGroup.tpl'), |
|
| 113 | - 'panelHeading' => file_get_contents(MODX_MANAGER_PATH . 'actions/resources/tpl_panelHeading.tpl'), |
|
| 114 | - 'panelCollapse' => file_get_contents(MODX_MANAGER_PATH . 'actions/resources/tpl_panelCollapse.tpl'), |
|
| 115 | - 'elementsRow' => file_get_contents(MODX_MANAGER_PATH . 'actions/resources/tpl_elementsRow.tpl'), |
|
| 112 | + 'panelGroup' => file_get_contents(MODX_MANAGER_PATH.'actions/resources/tpl_panelGroup.tpl'), |
|
| 113 | + 'panelHeading' => file_get_contents(MODX_MANAGER_PATH.'actions/resources/tpl_panelHeading.tpl'), |
|
| 114 | + 'panelCollapse' => file_get_contents(MODX_MANAGER_PATH.'actions/resources/tpl_panelCollapse.tpl'), |
|
| 115 | + 'elementsRow' => file_get_contents(MODX_MANAGER_PATH.'actions/resources/tpl_elementsRow.tpl'), |
|
| 116 | 116 | ); |
| 117 | 117 | |
| 118 | 118 | // Easily loop through $itemsPerCategory-Array |
| 119 | 119 | $panelGroup = ''; |
| 120 | - foreach($categories as $catid => $category) { |
|
| 120 | + foreach ($categories as $catid => $category) { |
|
| 121 | 121 | // Prepare collapse content / elements-list |
| 122 | 122 | $panelCollapse = ''; |
| 123 | - foreach($itemsPerCategory[$catid] as $el) { |
|
| 123 | + foreach ($itemsPerCategory[$catid] as $el) { |
|
| 124 | 124 | $resourceTable = $el['type']; |
| 125 | 125 | $ph = prepareElementRowPh($el, $resourceTable, $resources); |
| 126 | 126 | $panelCollapse .= parsePh($tpl['elementsRow'], $ph); |
@@ -130,7 +130,7 @@ discard block |
||
| 130 | 130 | $panelGroup .= parsePh($tpl['panelHeading'], array( |
| 131 | 131 | 'tab' => 'categories_list', |
| 132 | 132 | 'category' => $categories[$catid], |
| 133 | - 'categoryid' => $catid != '' ? ' <small>(' . $catid . ')</small>' : '', |
|
| 133 | + 'categoryid' => $catid != '' ? ' <small>('.$catid.')</small>' : '', |
|
| 134 | 134 | 'catid' => $catid, |
| 135 | 135 | )); |
| 136 | 136 | |
@@ -154,14 +154,14 @@ discard block |
||
| 154 | 154 | * @param mgrResources $resources |
| 155 | 155 | * @return array |
| 156 | 156 | */ |
| 157 | -function prepareElementRowPh($row, $resourceTable, $resources) { |
|
| 157 | +function prepareElementRowPh($row, $resourceTable, $resources){ |
|
| 158 | 158 | $modx = evolutionCMS(); global $modx_textdir, $_style, $_lang; |
| 159 | 159 | |
| 160 | 160 | $types = isset($resources->types[$resourceTable]) ? $resources->types[$resourceTable] : false; |
| 161 | 161 | |
| 162 | 162 | $_lang["confirm_delete"] = $_lang["delete"]; |
| 163 | 163 | |
| 164 | - switch($resourceTable){ |
|
| 164 | + switch ($resourceTable) { |
|
| 165 | 165 | case 'site_templates': |
| 166 | 166 | $class = $row['selectable'] ? '' : 'disabledPlugin'; |
| 167 | 167 | $lockElementType = 1; |
@@ -198,65 +198,65 @@ discard block |
||
| 198 | 198 | // Prepare displaying user-locks |
| 199 | 199 | $lockedByUser = ''; |
| 200 | 200 | $rowLock = $modx->elementIsLocked($lockElementType, $row['id'], true); |
| 201 | - if($rowLock && $modx->hasPermission('display_locks')) { |
|
| 202 | - if($rowLock['sid'] == $modx->sid) { |
|
| 201 | + if ($rowLock && $modx->hasPermission('display_locks')) { |
|
| 202 | + if ($rowLock['sid'] == $modx->sid) { |
|
| 203 | 203 | $title = $modx->parseText($_lang["lock_element_editing"], array( |
| 204 | - 'element_type' => $_lang["lock_element_type_" . $lockElementType], |
|
| 204 | + 'element_type' => $_lang["lock_element_type_".$lockElementType], |
|
| 205 | 205 | 'lasthit_df' => $rowLock['lasthit_df'] |
| 206 | 206 | )); |
| 207 | - $lockedByUser = '<span title="' . $title . '" class="editResource" style="cursor:context-menu;">' . $_style['tree_preview_resource'] . '</span> '; |
|
| 207 | + $lockedByUser = '<span title="'.$title.'" class="editResource" style="cursor:context-menu;">'.$_style['tree_preview_resource'].'</span> '; |
|
| 208 | 208 | } else { |
| 209 | 209 | $title = $modx->parseText($_lang["lock_element_locked_by"], array( |
| 210 | - 'element_type' => $_lang["lock_element_type_" . $lockElementType], |
|
| 210 | + 'element_type' => $_lang["lock_element_type_".$lockElementType], |
|
| 211 | 211 | 'username' => $rowLock['username'], |
| 212 | 212 | 'lasthit_df' => $rowLock['lasthit_df'] |
| 213 | 213 | )); |
| 214 | - if($modx->hasPermission('remove_locks')) { |
|
| 215 | - $lockedByUser = '<a href="javascript:;" onclick="unlockElement(' . $lockElementType . ', ' . $row['id'] . ', this);return false;" title="' . $title . '" class="lockedResource"><i class="' . $_style['icons_secured'] . '"></i></a>'; |
|
| 214 | + if ($modx->hasPermission('remove_locks')) { |
|
| 215 | + $lockedByUser = '<a href="javascript:;" onclick="unlockElement('.$lockElementType.', '.$row['id'].', this);return false;" title="'.$title.'" class="lockedResource"><i class="'.$_style['icons_secured'].'"></i></a>'; |
|
| 216 | 216 | } else { |
| 217 | - $lockedByUser = '<span title="' . $title . '" class="lockedResource" style="cursor:context-menu;"><i class="' . $_style['icons_secured'] . '"></i></span>'; |
|
| 217 | + $lockedByUser = '<span title="'.$title.'" class="lockedResource" style="cursor:context-menu;"><i class="'.$_style['icons_secured'].'"></i></span>'; |
|
| 218 | 218 | } |
| 219 | 219 | } |
| 220 | 220 | } |
| 221 | - if($lockedByUser) { |
|
| 222 | - $lockedByUser = '<div class="lockCell">' . $lockedByUser . '</div>'; |
|
| 221 | + if ($lockedByUser) { |
|
| 222 | + $lockedByUser = '<div class="lockCell">'.$lockedByUser.'</div>'; |
|
| 223 | 223 | } |
| 224 | 224 | |
| 225 | 225 | // Caption |
| 226 | - if($resourceTable == 'site_tmplvars') { |
|
| 227 | - $caption = !empty($row['description']) ? ' ' . $row['caption'] . ' <small>(' . $row['description'] . ')</small>' : ' ' . $row['caption']; |
|
| 226 | + if ($resourceTable == 'site_tmplvars') { |
|
| 227 | + $caption = !empty($row['description']) ? ' '.$row['caption'].' <small>('.$row['description'].')</small>' : ' '.$row['caption']; |
|
| 228 | 228 | } else { |
| 229 | - $caption = !empty($row['description']) ? ' ' . $row['description'] : ''; |
|
| 229 | + $caption = !empty($row['description']) ? ' '.$row['description'] : ''; |
|
| 230 | 230 | } |
| 231 | 231 | |
| 232 | 232 | // Special marks |
| 233 | 233 | $tplInfo = array(); |
| 234 | - if($row['locked']) { |
|
| 234 | + if ($row['locked']) { |
|
| 235 | 235 | $tplInfo[] = $_lang['locked']; |
| 236 | 236 | } |
| 237 | - if($row['id'] == $modx->config['default_template'] && $resourceTable == 'site_templates') { |
|
| 237 | + if ($row['id'] == $modx->config['default_template'] && $resourceTable == 'site_templates') { |
|
| 238 | 238 | $tplInfo[] = $_lang['defaulttemplate_title']; |
| 239 | 239 | } |
| 240 | - $marks = !empty($tplInfo) ? ' <em>(' . implode(', ', $tplInfo) . ')</em>' : ''; |
|
| 240 | + $marks = !empty($tplInfo) ? ' <em>('.implode(', ', $tplInfo).')</em>' : ''; |
|
| 241 | 241 | |
| 242 | 242 | /* row buttons */ |
| 243 | 243 | $buttons = ''; |
| 244 | - if($modx->hasPermission($types['actions']['edit'][1])) { |
|
| 245 | - $buttons .= '<li><a title="' . $_lang["edit_resource"] . '" href="index.php?a=' . $types['actions']['edit'][0] . '&id=' . $row['id'] . '"><i class="fa fa-edit fa-fw"></i></a></li>'; |
|
| 244 | + if ($modx->hasPermission($types['actions']['edit'][1])) { |
|
| 245 | + $buttons .= '<li><a title="'.$_lang["edit_resource"].'" href="index.php?a='.$types['actions']['edit'][0].'&id='.$row['id'].'"><i class="fa fa-edit fa-fw"></i></a></li>'; |
|
| 246 | 246 | } |
| 247 | - if($modx->hasPermission($types['actions']['duplicate'][1])) { |
|
| 248 | - $buttons .= '<li><a onclick="return confirm(\'' . $_lang["confirm_duplicate_record"] . '\')" title="' . $_lang["resource_duplicate"] . '" href="index.php?a=' . $types['actions']['duplicate'][0] . '&id=' . $row['id'] . '"><i class="fa fa-clone fa-fw"></i></a></li>'; |
|
| 247 | + if ($modx->hasPermission($types['actions']['duplicate'][1])) { |
|
| 248 | + $buttons .= '<li><a onclick="return confirm(\''.$_lang["confirm_duplicate_record"].'\')" title="'.$_lang["resource_duplicate"].'" href="index.php?a='.$types['actions']['duplicate'][0].'&id='.$row['id'].'"><i class="fa fa-clone fa-fw"></i></a></li>'; |
|
| 249 | 249 | } |
| 250 | - if($modx->hasPermission($types['actions']['remove'][1])) { |
|
| 251 | - $buttons .= '<li><a onclick="return confirm(\'' . $_lang["confirm_delete"] . '\')" title="' . $_lang["delete"] . '" href="index.php?a=' . $types['actions']['remove'][0] . '&id=' . $row['id'] . '"><i class="fa fa-trash fa-fw"></i></a></li>'; |
|
| 250 | + if ($modx->hasPermission($types['actions']['remove'][1])) { |
|
| 251 | + $buttons .= '<li><a onclick="return confirm(\''.$_lang["confirm_delete"].'\')" title="'.$_lang["delete"].'" href="index.php?a='.$types['actions']['remove'][0].'&id='.$row['id'].'"><i class="fa fa-trash fa-fw"></i></a></li>'; |
|
| 252 | 252 | } |
| 253 | - $buttons = $buttons ? '<div class="btnCell"><ul class="elements_buttonbar">' . $buttons . '</ul></div>' : ''; |
|
| 253 | + $buttons = $buttons ? '<div class="btnCell"><ul class="elements_buttonbar">'.$buttons.'</ul></div>' : ''; |
|
| 254 | 254 | |
| 255 | 255 | $catid = $row['catid'] ? $row['catid'] : 0; |
| 256 | 256 | |
| 257 | 257 | // Placeholders for elements-row |
| 258 | 258 | return array( |
| 259 | - 'class' => $class ? ' class="' . $class . '"' : '', |
|
| 259 | + 'class' => $class ? ' class="'.$class.'"' : '', |
|
| 260 | 260 | 'lockedByUser' => $lockedByUser, |
| 261 | 261 | 'name' => $row['name'], |
| 262 | 262 | 'caption' => $caption, |
@@ -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('file_manager')) { |
@@ -9,15 +9,15 @@ discard block |
||
| 9 | 9 | $newToken = makeToken(); |
| 10 | 10 | |
| 11 | 11 | // settings |
| 12 | -$theme_image_path = $modx->config['site_manager_url'] . 'media/style/' . $modx->config['manager_theme'] . '/images/'; |
|
| 12 | +$theme_image_path = $modx->config['site_manager_url'].'media/style/'.$modx->config['manager_theme'].'/images/'; |
|
| 13 | 13 | $excludes = array( |
| 14 | 14 | '.', |
| 15 | 15 | '..', |
| 16 | 16 | '.svn' |
| 17 | 17 | ); |
| 18 | -$alias_suffix = (!empty($friendly_url_suffix)) ? ',' . ltrim($friendly_url_suffix, '.') : ''; |
|
| 19 | -$editablefiles = explode(',', 'txt,php,tpl,less,sass,shtml,html,htm,xml,js,css,pageCache,htaccess,json,ini' . $alias_suffix); |
|
| 20 | -$inlineviewablefiles = explode(',', 'txt,php,tpl,less,sass,html,htm,xml,js,css,pageCache,htaccess,json,ini' . $alias_suffix); |
|
| 18 | +$alias_suffix = (!empty($friendly_url_suffix)) ? ','.ltrim($friendly_url_suffix, '.') : ''; |
|
| 19 | +$editablefiles = explode(',', 'txt,php,tpl,less,sass,shtml,html,htm,xml,js,css,pageCache,htaccess,json,ini'.$alias_suffix); |
|
| 20 | +$inlineviewablefiles = explode(',', 'txt,php,tpl,less,sass,html,htm,xml,js,css,pageCache,htaccess,json,ini'.$alias_suffix); |
|
| 21 | 21 | $viewablefiles = explode(',', 'jpg,gif,png,ico'); |
| 22 | 22 | |
| 23 | 23 | $editablefiles = add_dot($editablefiles); |
@@ -30,31 +30,31 @@ discard block |
||
| 30 | 30 | { |
| 31 | 31 | */ |
| 32 | 32 | $protected_path[] = $modx->config['site_manager_path']; |
| 33 | -$protected_path[] = $modx->config['base_path'] . 'temp/backup'; |
|
| 34 | -$protected_path[] = $modx->config['base_path'] . 'assets/backup'; |
|
| 33 | +$protected_path[] = $modx->config['base_path'].'temp/backup'; |
|
| 34 | +$protected_path[] = $modx->config['base_path'].'assets/backup'; |
|
| 35 | 35 | |
| 36 | 36 | if (!$modx->hasPermission('save_plugin')) { |
| 37 | - $protected_path[] = $modx->config['base_path'] . 'assets/plugins'; |
|
| 37 | + $protected_path[] = $modx->config['base_path'].'assets/plugins'; |
|
| 38 | 38 | } |
| 39 | 39 | if (!$modx->hasPermission('save_snippet')) { |
| 40 | - $protected_path[] = $modx->config['base_path'] . 'assets/snippets'; |
|
| 40 | + $protected_path[] = $modx->config['base_path'].'assets/snippets'; |
|
| 41 | 41 | } |
| 42 | 42 | if (!$modx->hasPermission('save_template')) { |
| 43 | - $protected_path[] = $modx->config['base_path'] . 'assets/templates'; |
|
| 43 | + $protected_path[] = $modx->config['base_path'].'assets/templates'; |
|
| 44 | 44 | } |
| 45 | 45 | if (!$modx->hasPermission('save_module')) { |
| 46 | - $protected_path[] = $modx->config['base_path'] . 'assets/modules'; |
|
| 46 | + $protected_path[] = $modx->config['base_path'].'assets/modules'; |
|
| 47 | 47 | } |
| 48 | 48 | if (!$modx->hasPermission('empty_cache')) { |
| 49 | - $protected_path[] = $modx->config['base_path'] . 'assets/cache'; |
|
| 49 | + $protected_path[] = $modx->config['base_path'].'assets/cache'; |
|
| 50 | 50 | } |
| 51 | 51 | if (!$modx->hasPermission('import_static')) { |
| 52 | - $protected_path[] = $modx->config['base_path'] . 'temp/import'; |
|
| 53 | - $protected_path[] = $modx->config['base_path'] . 'assets/import'; |
|
| 52 | + $protected_path[] = $modx->config['base_path'].'temp/import'; |
|
| 53 | + $protected_path[] = $modx->config['base_path'].'assets/import'; |
|
| 54 | 54 | } |
| 55 | 55 | if (!$modx->hasPermission('export_static')) { |
| 56 | - $protected_path[] = $modx->config['base_path'] . 'temp/export'; |
|
| 57 | - $protected_path[] = $modx->config['base_path'] . 'assets/export'; |
|
| 56 | + $protected_path[] = $modx->config['base_path'].'temp/export'; |
|
| 57 | + $protected_path[] = $modx->config['base_path'].'assets/export'; |
|
| 58 | 58 | } |
| 59 | 59 | /* |
| 60 | 60 | } |
@@ -96,15 +96,15 @@ discard block |
||
| 96 | 96 | $rw = realpath('../'); |
| 97 | 97 | $webstart_path = str_replace('\\', '/', str_replace($rw, '', $rf)); |
| 98 | 98 | if (substr($webstart_path, 0, 1) == '/') { |
| 99 | - $webstart_path = '..' . $webstart_path; |
|
| 99 | + $webstart_path = '..'.$webstart_path; |
|
| 100 | 100 | } else { |
| 101 | - $webstart_path = '../' . $webstart_path; |
|
| 101 | + $webstart_path = '../'.$webstart_path; |
|
| 102 | 102 | } |
| 103 | 103 | |
| 104 | 104 | ?> |
| 105 | 105 | <script type="text/javascript"> |
| 106 | 106 | |
| 107 | - var current_path = '<?= $startpath;?>'; |
|
| 107 | + var current_path = '<?= $startpath; ?>'; |
|
| 108 | 108 | |
| 109 | 109 | function viewfile (url) |
| 110 | 110 | { |
@@ -140,7 +140,7 @@ discard block |
||
| 140 | 140 | function unzipFile (file) |
| 141 | 141 | { |
| 142 | 142 | if (confirmUnzip()) { |
| 143 | - window.location.href = "index.php?a=31&mode=unzip&path=" + current_path + '/&file=' + file + "&token=<?= $newToken;?>"; |
|
| 143 | + window.location.href = "index.php?a=31&mode=unzip&path=" + current_path + '/&file=' + file + "&token=<?= $newToken; ?>"; |
|
| 144 | 144 | return false; |
| 145 | 145 | } |
| 146 | 146 | } |
@@ -162,7 +162,7 @@ discard block |
||
| 162 | 162 | function deleteFolder (folder, status) |
| 163 | 163 | { |
| 164 | 164 | if (confirmDeleteFolder(status)) { |
| 165 | - window.location.href = "index.php?a=31&mode=deletefolder&path=" + current_path + "&folderpath=" + current_path + '/' + folder + "&token=<?= $newToken;?>"; |
|
| 165 | + window.location.href = "index.php?a=31&mode=deletefolder&path=" + current_path + "&folderpath=" + current_path + '/' + folder + "&token=<?= $newToken; ?>"; |
|
| 166 | 166 | return false; |
| 167 | 167 | } |
| 168 | 168 | } |
@@ -170,7 +170,7 @@ discard block |
||
| 170 | 170 | function deleteFile (file) |
| 171 | 171 | { |
| 172 | 172 | if (confirmDelete()) { |
| 173 | - window.location.href = "index.php?a=31&mode=delete&path=" + current_path + '/' + file + "&token=<?= $newToken;?>"; |
|
| 173 | + window.location.href = "index.php?a=31&mode=delete&path=" + current_path + '/' + file + "&token=<?= $newToken; ?>"; |
|
| 174 | 174 | return false; |
| 175 | 175 | } |
| 176 | 176 | } |
@@ -179,7 +179,7 @@ discard block |
||
| 179 | 179 | { |
| 180 | 180 | var newFilename = prompt("<?= $_lang["files_dynamic_new_file_name"] ?>", file); |
| 181 | 181 | if (newFilename !== null && newFilename !== file) { |
| 182 | - window.location.href = "index.php?a=31&mode=duplicate&path=" + current_path + '/' + file + "&newFilename=" + newFilename + "&token=<?= $newToken;?>"; |
|
| 182 | + window.location.href = "index.php?a=31&mode=duplicate&path=" + current_path + '/' + file + "&newFilename=" + newFilename + "&token=<?= $newToken; ?>"; |
|
| 183 | 183 | } |
| 184 | 184 | } |
| 185 | 185 | |
@@ -187,7 +187,7 @@ discard block |
||
| 187 | 187 | { |
| 188 | 188 | var newDirname = prompt("<?= $_lang["files_dynamic_new_folder_name"] ?>", dir); |
| 189 | 189 | if (newDirname !== null && newDirname !== dir) { |
| 190 | - window.location.href = "index.php?a=31&mode=renameFolder&path=" + current_path + '&dirname=' + dir + "&newDirname=" + newDirname + "&token=<?= $newToken;?>"; |
|
| 190 | + window.location.href = "index.php?a=31&mode=renameFolder&path=" + current_path + '&dirname=' + dir + "&newDirname=" + newDirname + "&token=<?= $newToken; ?>"; |
|
| 191 | 191 | } |
| 192 | 192 | } |
| 193 | 193 | |
@@ -195,7 +195,7 @@ discard block |
||
| 195 | 195 | { |
| 196 | 196 | var newFilename = prompt("<?= $_lang["files_dynamic_new_file_name"] ?>", file); |
| 197 | 197 | if (newFilename !== null && newFilename !== file) { |
| 198 | - window.location.href = "index.php?a=31&mode=renameFile&path=" + current_path + '/' + file + "&newFilename=" + newFilename + "&token=<?= $newToken;?>"; |
|
| 198 | + window.location.href = "index.php?a=31&mode=renameFile&path=" + current_path + '/' + file + "&newFilename=" + newFilename + "&token=<?= $newToken; ?>"; |
|
| 199 | 199 | } |
| 200 | 200 | } |
| 201 | 201 | |
@@ -214,7 +214,7 @@ discard block |
||
| 214 | 214 | <?php endif ?> |
| 215 | 215 | <?php |
| 216 | 216 | if (isset($_GET['mode']) && $_GET['mode'] !== 'drill') { |
| 217 | - $href = 'a=31&path=' . urlencode($_REQUEST['path']); |
|
| 217 | + $href = 'a=31&path='.urlencode($_REQUEST['path']); |
|
| 218 | 218 | } else { |
| 219 | 219 | $href = 'a=2'; |
| 220 | 220 | } |
@@ -224,12 +224,12 @@ discard block |
||
| 224 | 224 | $tpl = '<a class="btn btn-secondary" href="[+href+]" onclick="return getFolderName(this);"><i class="[+image+]"></i><span>[+subject+]</span></a>'; |
| 225 | 225 | $ph['image'] = $_style['files_folder-open']; |
| 226 | 226 | $ph['subject'] = $_lang['add_folder']; |
| 227 | - $ph['href'] = 'index.php?a=31&mode=newfolder&path=' . urlencode($startpath) . '&name='; |
|
| 227 | + $ph['href'] = 'index.php?a=31&mode=newfolder&path='.urlencode($startpath).'&name='; |
|
| 228 | 228 | $_ = parsePlaceholder($tpl, $ph); |
| 229 | 229 | |
| 230 | - $tpl = '<a class="btn btn-secondary" href="[+href+]" onclick="return getFileName(this);"><i class="[+image+]"></i><span>' . $_lang['files.dynamic.php1'] . '</span></a>'; |
|
| 230 | + $tpl = '<a class="btn btn-secondary" href="[+href+]" onclick="return getFileName(this);"><i class="[+image+]"></i><span>'.$_lang['files.dynamic.php1'].'</span></a>'; |
|
| 231 | 231 | $ph['image'] = $_style['files_page_html']; |
| 232 | - $ph['href'] = 'index.php?a=31&mode=newfile&path=' . urlencode($startpath) . '&name='; |
|
| 232 | + $ph['href'] = 'index.php?a=31&mode=newfile&path='.urlencode($startpath).'&name='; |
|
| 233 | 233 | $_ .= parsePlaceholder($tpl, $ph); |
| 234 | 234 | echo $_; |
| 235 | 235 | } |
@@ -259,12 +259,12 @@ discard block |
||
| 259 | 259 | $ph = array(); |
| 260 | 260 | $ph['style_path'] = $theme_image_path; |
| 261 | 261 | // To Top Level with folder icon to the left |
| 262 | - if ($startpath == $filemanager_path || $startpath . '/' == $filemanager_path) { |
|
| 263 | - $ph['image'] = '' . $_style['files_top'] . ''; |
|
| 262 | + if ($startpath == $filemanager_path || $startpath.'/' == $filemanager_path) { |
|
| 263 | + $ph['image'] = ''.$_style['files_top'].''; |
|
| 264 | 264 | $ph['subject'] = '<span>Top</span>'; |
| 265 | 265 | } else { |
| 266 | - $ph['image'] = '' . $_style['files_top'] . ''; |
|
| 267 | - $ph['subject'] = '<a href="index.php?a=31&mode=drill&path=' . $filemanager_path . '">Top</a>/'; |
|
| 266 | + $ph['image'] = ''.$_style['files_top'].''; |
|
| 267 | + $ph['subject'] = '<a href="index.php?a=31&mode=drill&path='.$filemanager_path.'">Top</a>/'; |
|
| 268 | 268 | } |
| 269 | 269 | |
| 270 | 270 | echo parsePlaceholder($tpl, $ph); |
@@ -281,12 +281,12 @@ discard block |
||
| 281 | 281 | if (empty($v)) { |
| 282 | 282 | continue; |
| 283 | 283 | } |
| 284 | - $path .= rtrim($v, '/') . '/'; |
|
| 284 | + $path .= rtrim($v, '/').'/'; |
|
| 285 | 285 | if (1 < $count) { |
| 286 | - $href = 'index.php?a=31&mode=drill&path=' . urlencode($filemanager_path . $path); |
|
| 287 | - $pieces[$i] = '<a href="' . $href . '">' . trim($v, '/') . '</a>'; |
|
| 286 | + $href = 'index.php?a=31&mode=drill&path='.urlencode($filemanager_path.$path); |
|
| 287 | + $pieces[$i] = '<a href="'.$href.'">'.trim($v, '/').'</a>'; |
|
| 288 | 288 | } else { |
| 289 | - $pieces[$i] = '<span>' . trim($v, '/') . '</span>'; |
|
| 289 | + $pieces[$i] = '<span>'.trim($v, '/').'</span>'; |
|
| 290 | 290 | } |
| 291 | 291 | $count--; |
| 292 | 292 | } |
@@ -299,16 +299,16 @@ discard block |
||
| 299 | 299 | </div> |
| 300 | 300 | <?php |
| 301 | 301 | // check to see user isn't trying to move below the document_root |
| 302 | - if (substr(strtolower(str_replace('//', '/', $startpath . "/")), 0, $len) != strtolower(str_replace('//', '/', $filemanager_path . '/'))) { |
|
| 302 | + if (substr(strtolower(str_replace('//', '/', $startpath."/")), 0, $len) != strtolower(str_replace('//', '/', $filemanager_path.'/'))) { |
|
| 303 | 303 | $modx->webAlertAndQuit($_lang["files_access_denied"]); |
| 304 | 304 | } |
| 305 | 305 | |
| 306 | 306 | // Unzip .zip files - by Raymond |
| 307 | 307 | if ($enablefileunzip && $_REQUEST['mode'] == 'unzip' && is_writable($startpath)) { |
| 308 | - if (!$err = unzip(realpath("{$startpath}/" . $_REQUEST['file']), realpath($startpath))) { |
|
| 309 | - echo '<span class="warning"><b>' . $_lang['file_unzip_fail'] . ($err === 0 ? 'Missing zip library (php_zip.dll / zip.so)' : '') . '</b></span><br /><br />'; |
|
| 308 | + if (!$err = unzip(realpath("{$startpath}/".$_REQUEST['file']), realpath($startpath))) { |
|
| 309 | + echo '<span class="warning"><b>'.$_lang['file_unzip_fail'].($err === 0 ? 'Missing zip library (php_zip.dll / zip.so)' : '').'</b></span><br /><br />'; |
|
| 310 | 310 | } else { |
| 311 | - echo '<span class="success"><b>' . $_lang['file_unzip'] . '</b></span><br /><br />'; |
|
| 311 | + echo '<span class="success"><b>'.$_lang['file_unzip'].'</b></span><br /><br />'; |
|
| 312 | 312 | } |
| 313 | 313 | } |
| 314 | 314 | // End Unzip - Raymond |
@@ -320,9 +320,9 @@ discard block |
||
| 320 | 320 | if ($_REQUEST['mode'] == 'deletefolder') { |
| 321 | 321 | $folder = $_REQUEST['folderpath']; |
| 322 | 322 | if (!$token_check || !@rrmdir($folder)) { |
| 323 | - echo '<span class="warning"><b>' . $_lang['file_folder_not_deleted'] . '</b></span><br /><br />'; |
|
| 323 | + echo '<span class="warning"><b>'.$_lang['file_folder_not_deleted'].'</b></span><br /><br />'; |
|
| 324 | 324 | } else { |
| 325 | - echo '<span class="success"><b>' . $_lang['file_folder_deleted'] . '</b></span><br /><br />'; |
|
| 325 | + echo '<span class="success"><b>'.$_lang['file_folder_deleted'].'</b></span><br /><br />'; |
|
| 326 | 326 | } |
| 327 | 327 | } |
| 328 | 328 | |
@@ -333,10 +333,10 @@ discard block |
||
| 333 | 333 | if (!mkdirs("{$startpath}/{$foldername}", 0777)) { |
| 334 | 334 | echo '<span class="warning"><b>', $_lang['file_folder_not_created'], '</b></span><br /><br />'; |
| 335 | 335 | } else { |
| 336 | - if (!@chmod($startpath . '/' . $foldername, $newfolderaccessmode)) { |
|
| 337 | - echo '<span class="warning"><b>' . $_lang['file_folder_chmod_error'] . '</b></span><br /><br />'; |
|
| 336 | + if (!@chmod($startpath.'/'.$foldername, $newfolderaccessmode)) { |
|
| 337 | + echo '<span class="warning"><b>'.$_lang['file_folder_chmod_error'].'</b></span><br /><br />'; |
|
| 338 | 338 | } else { |
| 339 | - echo '<span class="success"><b>' . $_lang['file_folder_created'] . '</b></span><br /><br />'; |
|
| 339 | + echo '<span class="success"><b>'.$_lang['file_folder_created'].'</b></span><br /><br />'; |
|
| 340 | 340 | } |
| 341 | 341 | } |
| 342 | 342 | umask($old_umask); |
@@ -348,7 +348,7 @@ discard block |
||
| 348 | 348 | $filename = $modx->db->escape($filename); |
| 349 | 349 | |
| 350 | 350 | if (!checkExtension($filename)) { |
| 351 | - echo '<span class="warning"><b>' . $_lang['files_filetype_notok'] . '</b></span><br /><br />'; |
|
| 351 | + echo '<span class="warning"><b>'.$_lang['files_filetype_notok'].'</b></span><br /><br />'; |
|
| 352 | 352 | } elseif (preg_match('@(\\\\|\/|\:|\;|\,|\*|\?|\"|\<|\>|\||\?)@', $filename) !== 0) { |
| 353 | 353 | echo $_lang['files.dynamic.php3']; |
| 354 | 354 | } else { |
@@ -370,11 +370,11 @@ discard block |
||
| 370 | 370 | $newFilename = $modx->db->escape($newFilename); |
| 371 | 371 | |
| 372 | 372 | if (!checkExtension($newFilename)) { |
| 373 | - echo '<span class="warning"><b>' . $_lang['files_filetype_notok'] . '</b></span><br /><br />'; |
|
| 373 | + echo '<span class="warning"><b>'.$_lang['files_filetype_notok'].'</b></span><br /><br />'; |
|
| 374 | 374 | } elseif (preg_match('@(\\\\|\/|\:|\;|\,|\*|\?|\"|\<|\>|\||\?)@', $newFilename) !== 0) { |
| 375 | 375 | echo $_lang['files.dynamic.php3']; |
| 376 | 376 | } else { |
| 377 | - if (!copy($filename, MODX_BASE_PATH . $newFilename)) { |
|
| 377 | + if (!copy($filename, MODX_BASE_PATH.$newFilename)) { |
|
| 378 | 378 | echo $_lang['files.dynamic.php5']; |
| 379 | 379 | } |
| 380 | 380 | umask($old_umask); |
@@ -383,7 +383,7 @@ discard block |
||
| 383 | 383 | // Rename folder here |
| 384 | 384 | if ($_REQUEST['mode'] == 'renameFolder') { |
| 385 | 385 | $old_umask = umask(0); |
| 386 | - $dirname = $_REQUEST['path'] . '/' . $_REQUEST['dirname']; |
|
| 386 | + $dirname = $_REQUEST['path'].'/'.$_REQUEST['dirname']; |
|
| 387 | 387 | $dirname = $modx->db->escape($dirname); |
| 388 | 388 | $newDirname = str_replace(array( |
| 389 | 389 | '..\\', |
@@ -395,7 +395,7 @@ discard block |
||
| 395 | 395 | |
| 396 | 396 | if (preg_match('@(\\\\|\/|\:|\;|\,|\*|\?|\"|\<|\>|\||\?)@', $newDirname) !== 0) { |
| 397 | 397 | echo $_lang['files.dynamic.php3']; |
| 398 | - } else if (!rename($dirname, $_REQUEST['path'] . '/' . $newDirname)) { |
|
| 398 | + } else if (!rename($dirname, $_REQUEST['path'].'/'.$newDirname)) { |
|
| 399 | 399 | echo '<span class="warning"><b>', $_lang['file_folder_not_created'], '</b></span><br /><br />'; |
| 400 | 400 | } |
| 401 | 401 | umask($old_umask); |
@@ -415,11 +415,11 @@ discard block |
||
| 415 | 415 | $newFilename = $modx->db->escape($newFilename); |
| 416 | 416 | |
| 417 | 417 | if (!checkExtension($newFilename)) { |
| 418 | - echo '<span class="warning"><b>' . $_lang['files_filetype_notok'] . '</b></span><br /><br />'; |
|
| 418 | + echo '<span class="warning"><b>'.$_lang['files_filetype_notok'].'</b></span><br /><br />'; |
|
| 419 | 419 | } elseif (preg_match('@(\\\\|\/|\:|\;|\,|\*|\?|\"|\<|\>|\||\?)@', $newFilename) !== 0) { |
| 420 | 420 | echo $_lang['files.dynamic.php3']; |
| 421 | 421 | } else { |
| 422 | - if (!rename($filename, $path . '/' . $newFilename)) { |
|
| 422 | + if (!rename($filename, $path.'/'.$newFilename)) { |
|
| 423 | 423 | echo $_lang['files.dynamic.php5']; |
| 424 | 424 | } |
| 425 | 425 | umask($old_umask); |
@@ -452,7 +452,7 @@ discard block |
||
| 452 | 452 | ls($startpath); |
| 453 | 453 | echo "\n\n\n"; |
| 454 | 454 | if ($folders == 0 && $files == 0) { |
| 455 | - echo '<tr><td colspan="4"><i class="' . $_style['files_deleted_folder'] . ' FilesDeletedFolder"></i> <span style="color:#888;cursor:default;"> ' . $_lang['files_directory_is_empty'] . ' </span></td></tr>'; |
|
| 455 | + echo '<tr><td colspan="4"><i class="'.$_style['files_deleted_folder'].' FilesDeletedFolder"></i> <span style="color:#888;cursor:default;"> '.$_lang['files_directory_is_empty'].' </span></td></tr>'; |
|
| 456 | 456 | } |
| 457 | 457 | ?> |
| 458 | 458 | </table> |
@@ -461,10 +461,10 @@ discard block |
||
| 461 | 461 | <div class="container"> |
| 462 | 462 | <p> |
| 463 | 463 | <?php |
| 464 | - echo $_lang['files_directories'] . ': <b>' . $folders . '</b> '; |
|
| 465 | - echo $_lang['files_files'] . ': <b>' . $files . '</b> '; |
|
| 466 | - echo $_lang['files_data'] . ': <b><span dir="ltr">' . $modx->nicesize($filesizes) . '</span></b> '; |
|
| 467 | - echo $_lang['files_dirwritable'] . ' <b>' . (is_writable($startpath) == 1 ? $_lang['yes'] . '.' : $_lang['no']) . '.</b>' |
|
| 464 | + echo $_lang['files_directories'].': <b>'.$folders.'</b> '; |
|
| 465 | + echo $_lang['files_files'].': <b>'.$files.'</b> '; |
|
| 466 | + echo $_lang['files_data'].': <b><span dir="ltr">'.$modx->nicesize($filesizes).'</span></b> '; |
|
| 467 | + echo $_lang['files_dirwritable'].' <b>'.(is_writable($startpath) == 1 ? $_lang['yes'].'.' : $_lang['no']).'.</b>' |
|
| 468 | 468 | ?> |
| 469 | 469 | </p> |
| 470 | 470 | |
@@ -489,7 +489,7 @@ discard block |
||
| 489 | 489 | </form> |
| 490 | 490 | <?php |
| 491 | 491 | } else { |
| 492 | - echo "<p>" . $_lang['files_upload_inhibited_msg'] . "</p>"; |
|
| 492 | + echo "<p>".$_lang['files_upload_inhibited_msg']."</p>"; |
|
| 493 | 493 | } |
| 494 | 494 | ?> |
| 495 | 495 | <div id="imageviewer"></div> |
@@ -1,5 +1,5 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | -if(!function_exists('createList')) { |
|
| 2 | +if (!function_exists('createList')) { |
|
| 3 | 3 | /** |
| 4 | 4 | * @param string $sectionHeader |
| 5 | 5 | * @param array $linkArr |
@@ -7,8 +7,8 @@ discard block |
||
| 7 | 7 | */ |
| 8 | 8 | function createList($sectionHeader, $linkArr) |
| 9 | 9 | { |
| 10 | - $output = '<div class="sectionHeader">' . $sectionHeader . '</div><div class="sectionBody">' . "\n"; |
|
| 11 | - $output .= '<table width="500" border="0" cellspacing="0" cellpadding="0">' . "\n"; |
|
| 10 | + $output = '<div class="sectionHeader">'.$sectionHeader.'</div><div class="sectionBody">'."\n"; |
|
| 11 | + $output .= '<table width="500" border="0" cellspacing="0" cellpadding="0">'."\n"; |
|
| 12 | 12 | $links = ''; |
| 13 | 13 | foreach ($linkArr as $row) { |
| 14 | 14 | if (!is_array($row['link'])) { |
@@ -16,16 +16,16 @@ discard block |
||
| 16 | 16 | } |
| 17 | 17 | foreach ($row['link'] as $link) { |
| 18 | 18 | $links .= $links != '' ? '<br/>' : ''; |
| 19 | - $links .= '<a href="' . $link . '" target="_blank">' . $link . '</a>'; |
|
| 19 | + $links .= '<a href="'.$link.'" target="_blank">'.$link.'</a>'; |
|
| 20 | 20 | } |
| 21 | 21 | $output .= ' |
| 22 | 22 | <tr> |
| 23 | - <td align="left"><strong>' . $row["title"] . '</strong></td> |
|
| 24 | - <td align="left">' . $links . '</td> |
|
| 23 | + <td align="left"><strong>' . $row["title"].'</strong></td> |
|
| 24 | + <td align="left">' . $links.'</td> |
|
| 25 | 25 | </tr>'; |
| 26 | 26 | $links = ''; |
| 27 | 27 | } |
| 28 | - $output .= '</table></div>' . "\n"; |
|
| 28 | + $output .= '</table></div>'."\n"; |
|
| 29 | 29 | |
| 30 | 30 | return $output; |
| 31 | 31 | } |
@@ -16,8 +16,8 @@ |
||
| 16 | 16 | { |
| 17 | 17 | echo '<div class="row form-row"> |
| 18 | 18 | <div class="col-sm-6 col-md-4 col-lg-3">' . |
| 19 | - implode('</div><div class="col-sm-6 col-md-4 col-lg-3">', $evtnames) . |
|
| 20 | - '</div>' . |
|
| 19 | + implode('</div><div class="col-sm-6 col-md-4 col-lg-3">', $evtnames). |
|
| 20 | + '</div>'. |
|
| 21 | 21 | '</div>'; |
| 22 | 22 | |
| 23 | 23 | $evtnames = array(); |
@@ -1,6 +1,6 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -if(!function_exists('getDefaultTemplate')) { |
|
| 3 | +if (!function_exists('getDefaultTemplate')) { |
|
| 4 | 4 | /** |
| 5 | 5 | * @return string |
| 6 | 6 | */ |
@@ -1,5 +1,5 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | -if(!function_exists('get_lang_keys')) { |
|
| 2 | +if (!function_exists('get_lang_keys')) { |
|
| 3 | 3 | /** |
| 4 | 4 | * get_lang_keys |
| 5 | 5 | * |
@@ -8,7 +8,7 @@ discard block |
||
| 8 | 8 | */ |
| 9 | 9 | function get_lang_keys($filename) |
| 10 | 10 | { |
| 11 | - $file = MODX_MANAGER_PATH . 'includes/lang' . DIRECTORY_SEPARATOR . $filename; |
|
| 11 | + $file = MODX_MANAGER_PATH.'includes/lang'.DIRECTORY_SEPARATOR.$filename; |
|
| 12 | 12 | if (is_file($file) && is_readable($file)) { |
| 13 | 13 | include($file); |
| 14 | 14 | $out = isset($_lang) ? array_keys($_lang) : array(); |
@@ -20,7 +20,7 @@ discard block |
||
| 20 | 20 | } |
| 21 | 21 | } |
| 22 | 22 | |
| 23 | -if(!function_exists('get_langs_by_key')) { |
|
| 23 | +if (!function_exists('get_langs_by_key')) { |
|
| 24 | 24 | /** |
| 25 | 25 | * get_langs_by_key |
| 26 | 26 | * |
@@ -41,7 +41,7 @@ discard block |
||
| 41 | 41 | } |
| 42 | 42 | } |
| 43 | 43 | |
| 44 | -if(!function_exists('get_lang_options')) { |
|
| 44 | +if (!function_exists('get_lang_options')) { |
|
| 45 | 45 | /** |
| 46 | 46 | * get_lang_options |
| 47 | 47 | * |
@@ -58,11 +58,11 @@ discard block |
||
| 58 | 58 | if (!empty($key)) { |
| 59 | 59 | $languages = get_langs_by_key($key); |
| 60 | 60 | sort($languages); |
| 61 | - $lang_options .= '<option value="">' . $_lang['language_title'] . '</option>'; |
|
| 61 | + $lang_options .= '<option value="">'.$_lang['language_title'].'</option>'; |
|
| 62 | 62 | |
| 63 | 63 | foreach ($languages as $language_name) { |
| 64 | 64 | $uclanguage_name = ucwords(str_replace("_", " ", $language_name)); |
| 65 | - $lang_options .= '<option value="' . $language_name . '">' . $uclanguage_name . '</option>'; |
|
| 65 | + $lang_options .= '<option value="'.$language_name.'">'.$uclanguage_name.'</option>'; |
|
| 66 | 66 | } |
| 67 | 67 | |
| 68 | 68 | return $lang_options; |
@@ -72,7 +72,7 @@ discard block |
||
| 72 | 72 | foreach ($languages as $language_name) { |
| 73 | 73 | $uclanguage_name = ucwords(str_replace("_", " ", $language_name)); |
| 74 | 74 | $sel = $language_name === $selected_lang ? ' selected="selected"' : ''; |
| 75 | - $lang_options .= '<option value="' . $language_name . '" ' . $sel . '>' . $uclanguage_name . '</option>'; |
|
| 75 | + $lang_options .= '<option value="'.$language_name.'" '.$sel.'>'.$uclanguage_name.'</option>'; |
|
| 76 | 76 | } |
| 77 | 77 | |
| 78 | 78 | return $lang_options; |
@@ -80,7 +80,7 @@ discard block |
||
| 80 | 80 | } |
| 81 | 81 | } |
| 82 | 82 | |
| 83 | -if(!function_exists('form_radio')) { |
|
| 83 | +if (!function_exists('form_radio')) { |
|
| 84 | 84 | /** |
| 85 | 85 | * @param string $name |
| 86 | 86 | * @param string $value |
@@ -99,7 +99,7 @@ discard block |
||
| 99 | 99 | $disabled = ''; |
| 100 | 100 | } |
| 101 | 101 | if ($add) { |
| 102 | - $add = ' ' . $add; |
|
| 102 | + $add = ' '.$add; |
|
| 103 | 103 | } |
| 104 | 104 | |
| 105 | 105 | return sprintf('<input onchange="documentDirty=true;" type="radio" name="%s" value="%s" %s %s %s />', $name, |
@@ -108,7 +108,7 @@ discard block |
||
| 108 | 108 | } |
| 109 | 109 | } |
| 110 | 110 | |
| 111 | -if(!function_exists('wrap_label')) { |
|
| 111 | +if (!function_exists('wrap_label')) { |
|
| 112 | 112 | /** |
| 113 | 113 | * @param string $str |
| 114 | 114 | * @param string $object |
@@ -121,7 +121,7 @@ discard block |
||
| 121 | 121 | |
| 122 | 122 | } |
| 123 | 123 | |
| 124 | -if(!function_exists('parseText')) { |
|
| 124 | +if (!function_exists('parseText')) { |
|
| 125 | 125 | /** |
| 126 | 126 | * @param string $tpl |
| 127 | 127 | * @param array $ph |
@@ -142,7 +142,7 @@ discard block |
||
| 142 | 142 | } |
| 143 | 143 | } |
| 144 | 144 | |
| 145 | -if(!function_exists('showHide')) { |
|
| 145 | +if (!function_exists('showHide')) { |
|
| 146 | 146 | /** |
| 147 | 147 | * @param bool $cond |
| 148 | 148 | * @return string |