statistics.php 582 B

1234567891011121314
  1. <link rel="stylesheet" href="<?php echo $this->pluginDirUrl; ?>styles.css" type="text/css" />
  2. <?php
  3. $params = array(
  4. 'jwt' => $this->jwt(),
  5. );
  6. $adminUrl = is_ssl()? 'https://' : 'http://';
  7. $adminUrl .= $this->shortName . '.' . self::DOMAIN . '/admin/statistics/?' . http_build_query($params, null, '&');
  8. ?>
  9. <div class="wrap">
  10. <?php screen_icon(); ?>
  11. <h2>数据统计
  12. <a class="add-new-h2" target="_blank" href="<?php echo $adminUrl;?>">在新窗口中打开</a></h2>
  13. <iframe id="duoshuo-remote-window" src="<?php echo $adminUrl;?>" style="width:100%;height:920px"></iframe>
  14. </div>