403Webshell
Server IP : 104.21.93.192  /  Your IP : 216.73.216.62
Web Server : LiteSpeed
System : Linux premium900.web-hosting.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64
User : redwjova ( 1790)
PHP Version : 8.1.32
Disable Function : NONE
MySQL : OFF |  cURL : ON |  WGET : ON |  Perl : ON |  Python : ON |  Sudo : OFF |  Pkexec : OFF
Directory :  /proc/self/root/proc/self/root/usr/local/lsws/add-ons/webcachemgr/src/View/Tpl/

Upload File :
current_dir [ Writeable] document_root [ Writeable]

 

Command :


[ Back ]     

Current File : /proc/self/root/proc/self/root/usr/local/lsws/add-ons/webcachemgr/src/View/Tpl/Manage.tpl
<?php

use Lsc\Wp\View\Model\ManageViewModel as ViewModel;

$iconDir     = $this->viewModel->getTplData(ViewModel::FLD_ICON_DIR);
$scanBtnName = $this->viewModel->getTplData(ViewModel::FLD_SCAN_BTN_NAME);
$btnState    = $this->viewModel->getTplData(ViewModel::FLD_BTN_STATE);
$activeVer   = $this->viewModel->getTplData(ViewModel::FLD_ACTIVE_VER);
$listData    = $this->viewModel->getTplData(ViewModel::FLD_LIST_DATA);
$countData   = $this->viewModel->getTplData(ViewModel::FLD_COUNT_DATA);
$showList    = $this->viewModel->getTplData(ViewModel::FLD_SHOW_LIST);
$warnMsgs    = $this->viewModel->getTplData(ViewModel::FLD_WARN_MSGS);
$infoMsgs    = $this->viewModel->getTplData(ViewModel::FLD_INFO_MSGS);
$errMsgs     = $this->viewModel->getTplData(ViewModel::FLD_ERR_MSGS);
$succMsgs    = $this->viewModel->getTplData(ViewModel::FLD_SUCC_MSGS);

?>

<div id="manager">

  <?php

  $this->loadTplBlock(
    'Title.tpl',
    [
      'title' => 'Manage All LiteSpeed Cache for WordPress Installations',
      'icon'  => "$iconDir/manageCacheInstallations.svg"
    ]
  );

  ?>

  <div id="display-msgs">

    <?php

    if ( !empty($warnMsgs) ) {
      $this->loadTplBlock(
        'DivMsgBox.tpl',
        [ 'msgs' => $warnMsgs, 'class' => 'msg-warn' ]
      );
    }

    if ( !empty($infoMsgs) ) {
      $this->loadTplBlock(
        'DivMsgBox.tpl',
        [ 'msgs' => $infoMsgs, 'class' => 'msg-info' ]
      );
    }

    $errMsgCnt  = count($errMsgs);
    $succMsgCnt = count($succMsgs);

    ?>

    <button
        class="accordion accordion-error"
        type="button"
        style="display: <?php echo ($errMsgCnt > 0) ? 'initial' : 'none'; ?>"
    >
      Error Messages
      <span id ="errMsgCnt" class="badge errMsg-badge">
        <?php echo $errMsgCnt; ?>
      </span>
    </button>
    <div class="panel panel-error">

      <?php

      $this->loadTplBlock(
        'DivMsgBox.tpl',
        [ 'id' => 'errMsgs', 'msgs' => $errMsgs, 'class' => 'scrollable' ]
      );

      ?>

    </div>

    <button
        class="accordion accordion-success"
        type="button"
        style="display: <?php echo ($succMsgCnt > 0) ? 'initial' : 'none'; ?>"
    >
      Success Messages
      <span id="succMsgCnt" class="badge succMsg-badge">
        <?php echo $succMsgCnt; ?>
      </span>
    </button>
    <div class="panel panel-success">

      <?php

      $this->loadTplBlock(
        'DivMsgBox.tpl',
        [ 'id' => 'succMsgs', 'msgs' => $succMsgs, 'class' => 'scrollable' ]
      );

      ?>

    </div>
  </div>

  <div align="left" >

    <?php

    $classes  = '';
    $addClass = 'lsws-primary-btn';

    $this->loadTplBlock(
      'InputSubmitBtn.tpl',
      [
        'name'    => 're-scan',
        'value'   => $scanBtnName,
        'title'   => 'Scan filesystem for WordPress installations',
        'confirm' => "$scanBtnName will scan your filesystem for WordPress "
          . 'installations. This may take up to a few minutes to complete. '
          . "$scanBtnName now?",
        'class'   => "$classes $addClass"
      ],
      true
    );

    if ( $btnState == 'disabled' ) {
      $addClass = 'disabled-btn';
    }

    $this->loadTplBlock(
      'InputSubmitBtn.tpl',
      [
        'name'    => 'scan_more',
        'value'   => 'Discover New',
        'title'   => 'Discover new WordPress installations since the last scan',
        'confirm' => 'Discover new  WordPress installations since the last '
          . 'scan. This will not update information for existing '
          . 'installations. This may take up to a few minutes to complete. '
          . 'Continue?',
        'state'   => $btnState,
        'class'   => "$classes $addClass",
      ],
      true
    );

    $this->loadTplBlock(
      'InputSubmitBtn.tpl',
      [
        'name'    => 'refresh_status',
        'value'   => 'Refresh Status',
        'title'   => 'Check the cache status for all WordPress installations '
          . 'currently listed',
        'confirm' => 'Refresh Status will check the cache status for all '
          . 'WordPress installations currently listed. If you have many '
          . 'installations, this may take up to a few minutes to complete. '
          . 'Refresh Status now?',
        'state'   => $btnState,
        'class'   => "$classes $addClass",
      ],
      true
    );

    $this->loadTplBlock(
      'InputSubmitBtn.tpl',
      [
        'name'    => 'mass_flag',
        'value'   => 'Flag All',
        'title'   => 'Flag all currently discovered installations',
        'confirm' => 'Flag all currently discovered installations?',
        'state'   => $btnState,
        'class'   => "$classes $addClass",
      ],
      true
    );

    $this->loadTplBlock(
      'InputSubmitBtn.tpl',
      [
        'name'    => 'mass_unflag',
        'value'   => 'Unflag All',
        'title'   => 'Unflag all currently discovered installations',
        'confirm' => 'Unflag all currently discovered installations?',
        'state'   => $btnState,
        'class'   => "$classes $addClass",
      ],
      true
    );

    ?>

  </div>

  <div align="left" class="pad-bottom-small">

    <?php

    $classes = 'lsws-secondary-btn';

    if ( !$activeVer ) {
      $dTitle = '[Feature Disabled] No active LSCWP version set!';
      $dState = 'disabled';
    }
    else {
      $dTitle = 'Enable cache for all selected WordPress installations (Ignores Flag)';
      $dState = $btnState;
    }

    if ( $btnState == 'disabled' ) {
      $classes  = 'disabled-btn';
      $dClasses = $classes;
    }
    else {
      $dClasses = ($dState != 'disabled') ? $classes : 'disabled-btn';
    }

    ob_start();

    ?>

    With Selected:
    <button
        type="button"
        name="enable_sel"
        value="Enable Selected"
        class="<?php echo $dClasses; ?>"
        title="<?php echo $dTitle; ?>"
        onclick="lscwpValidateSelectFormSubmit(this.name, this.value);"
        <?php echo $dState; ?>
    >
      Enable
    </button>
    <button
        type="button"
        name="disable_sel"
        value="Disable Selected"
        class="<?php echo $classes; ?>"
        title="Disable cache for all selected WordPress installations (Ignores Flag)"
        onclick="lscwpValidateSelectFormSubmit(this.name, this.value);"
        <?php echo $btnState; ?>
    >
      Disable
    </button>
    <button
        type="button"
        name="flag_sel"
        value="Flag Selected"
        class="<?php echo $classes; ?>"
        title="Flag all selected WordPress installations"
        onclick="lscwpValidateSelectFormSubmit(this.name, this.value);"
        <?php echo $btnState; ?>
    >
      Flag
    </button>
    <button
        type="button"
        name="unflag_sel"
        value="Unflag Selected"
        class="<?php echo $classes; ?>"
        title="Unflag all selected WordPress installations"
        onclick="lscwpValidateSelectFormSubmit(this.name, this.value);"
        <?php echo $btnState; ?>
    >
      Unflag
    </button>

    <?php

    $btn_row = ob_get_clean();

    echo $btn_row;

    ?>

  </div>

  <table class="plugin-ver">
    <tbody>
      <tr>
        <td align="right">
          LiteSpeed Cache Plugin Version:
          <a href="?do=lscwpVersionManager" title="Go to Version Manager">
            <?php echo ($activeVer) ? htmlspecialchars($activeVer) : 'Not Set'; ?>
          </a>
        </td>
      </tr>
    </tbody>
  </table>
  <br/>
  <div id="mask-container">
    <div id="hover-mask">
      <svg
          version="1.1"
          id="L9"
          xmlns="http://www.w3.org/2000/svg"
          xmlns:xlink="http://www.w3.org/1999/xlink"
          x="0px"
          y="0px"
          viewBox="0 0 100 100"
          enable-background="new 0 0 0 0"
          xml:space="preserve"
      >
        <path
            fill="#fff"
            d="M73,50c0-12.7-10.3-23-23-23S27,37.3,27,50
              M30.9,50c0-10.5,8.5-19.1,19.1-19.1S69.1,39.5,69.1,50"
        >
          <animateTransform
              attributeName="transform"
              attributeType="XML"
              type="rotate"
              dur="1s"
              from="0 50 50"
              to="360 50 50"
              repeatCount="indefinite"
          />
        </path>
      </svg>
    </div>

    <table id="lsws-data-table" class="datatable cachemgr hover">
      <thead>
        <tr>

          <?php

          $discoveredCnt = $countData[ViewModel::COUNT_DATA_INSTALLS];
          $enabledCnt    = $countData[ViewModel::COUNT_DATA_ENABLED];
          $warnCnt       = $countData[ViewModel::COUNT_DATA_WARN];
          $errCnt        = $countData[ViewModel::COUNT_DATA_ERROR];
          $flagCnt       = $countData[ViewModel::COUNT_DATA_FLAGGED];

          ?>

          <th width="20px"></th>
          <th>
            Discovered WordPress Installations
            <span
                id="total-badge"
                class="badge primary-badge"
                data-uk-tooltip
                title="<?php echo $discoveredCnt; ?> installations discovered"
            >
              <?php echo $countData[ViewModel::COUNT_DATA_INSTALLS]; ?>
            </span>
            |
            <span
                id="enabled-badge"
                class="badge"
                data-uk-tooltip
                title="LSCWP is enabled for <?php echo $enabledCnt; ?> installations"
            >
              <?php echo $countData[ViewModel::COUNT_DATA_ENABLED]; ?>
            </span>
            <span
                id="warning-badge"
                class="badge"
                data-uk-tooltip
                title="LSCWP partially enabled for <?php echo $warnCnt; ?> installations"
            >
              <?php echo $countData[ViewModel::COUNT_DATA_WARN]; ?>
            </span>
            <span
                id="error-badge"
                class="badge"
                data-uk-tooltip
                title="<?php echo $errCnt; ?> installations encountered a fatal error"
            >
              <?php echo $countData[ViewModel::COUNT_DATA_ERROR]; ?>
            </span>
          </th>
          <th class="action-th">Actions</th>
          <th>
            Cache Status
          </th>
          <th>
            Flag
            <span
                id="flagged-badge"
                class="badge"
                data-uk-tooltip
                title="<?php echo $flagCnt; ?> installations flagged (excluded from mass operations)"
            >
              <?php echo $countData[ViewModel::COUNT_DATA_FLAGGED]; ?>
            </span>
          </th>
        </tr>
      </thead>
      <tfoot>
        <tr>
          <th></th>
          <th></th>
          <th></th>
          <th></th>
          <th></th>
        </tr>
      </tfoot>
      <tbody>

        <?php

        if ( $showList ) :
          $classes = 'icon-btn';

          foreach ( $listData as $path => $info ):
            $statusData = $info['statusData'];
            $flagData   = $info['flagData'];
            $siteUrl    = $info['siteUrl'];
            $safePath   = htmlspecialchars($path);

        ?>

        <tr>
          <td>
            <input
                type="checkbox"
                name="installations[]"
                value="<?php echo $path; ?>"
                onclick="lscwpManageCheckboxSelect(this);"
            />
          </td>
          <td class="path-box">
            <?php echo htmlspecialchars($siteUrl); ?>
            <br />
            <small class="install-path"><?php echo $safePath; ?></small>
          </td>
          <td align="center">
            <span class="action-btns">
              <button
                  type="button"
                  value="<?php echo $path; ?>"
                  class="<?php echo $classes; ?>"
                  title="<?php echo $statusData['btn_title']; ?>"
                  <?php echo ($statusData['onclick']) ?: ''; ?>
                  <?php echo $statusData['btn_attributes']; ?>
                  <?php echo $statusData['btn_state']; ?>
              >
                <?php echo $statusData['btn_content']; ?>
              </button>
              <button
                  type="button"
                  value="<?php echo $path; ?>"
                  class="<?php echo $classes; ?>"
                  title="Click to refresh status"
                  onclick="lscwpRefreshSingle(this);"
                  data-uk-tooltip
              >
                <span class="refresh_btn"></span>
              </button>
            </span>
          </td>
          <td
              align="center"
              data-search="<?php echo $statusData['sort']; ?>"
              data-sort="<?php echo $statusData['sort']; ?>"
          >
            <?php echo $statusData['state']; ?>
            <a
                class="msg-alert"
                href="#display-msgs"
                data-uk-tooltip
                title="Click to go to messages"
            >
            </a>
          </td>
          <td
              align="center"
              data-search="<?php echo ($flagData['sort'] == 'flagged') ? 'f' : 'u'; ?>"
              data-sort="<?php echo $flagData['sort']; ?>"
          >
            <button
                type="button"
                value="<?php echo $path; ?>"
                class="<?php echo $classes; ?>"
                title="<?php echo $flagData['btn_title']; ?>"
                <?php echo $flagData['onclick']?>
                <?php echo $flagData['btn_attributes']; ?>
            >
              <?php echo $flagData['icon']; ?>
            </button>
          </td>
        </tr>

        <?php

          endforeach;
        endif;

        ?>

      </tbody>
    </table>
  </div>

  <?php echo $btn_row; ?>

  <br /><br />
  <div>
    <small>
      *Flagging an installation will cause it to be excluded from
      Mass Enable/Disable operations.
    </small>
  </div>
  <br />
</div>
<script type="text/javascript">
  lswsInitDropdownBoxes();
  lswsInitDataTable();
</script>

Youez - 2016 - github.com/yon3zu
LinuXploit