File "view-debug-box.php"

Full Path: /home/vantageo/public_html/cache/cache/cache/cache/cache/cache/cache/.wp-cli/wp-content/plugins/resmushit-image-optimizer/build/shortpixel/log/src/view-debug-box.php
File size: 954 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
// Debug Box to load Log File
namespace Resmush\ShortPixelLogger;
wp_enqueue_script( 'jquery-ui-draggable' );

?>

<style>
  .sp_debug_wrap
  {
    position: relative;
    clear: both;
  }
  .sp_debug_box
  {
    position: absolute;
    right: 0px;
    top: 50px;
    background-color: #fff;
    width: 150px;
    z-index: 1000000;
    border: 1px solid #000;

  }
  .sp_debug_box .header
  {
    min-height: 10px;
    background: #000;
    color: #fff;
    padding: 8px
  }
  .sp_debug_box .content_box
  {
    background: #ccc;
  }
  .content_box
  {
    padding: 8px;
  }
</style>

<script language='javascript'>
  jQuery(document).ready(function($)
  {
     $( ".sp_debug_box" ).draggable();

  });
</script>


<div class='sp_debug_box'>
     <div class='header'><?php echo esc_html($view->namespace) ?> Debug Box </div>
     <a target="_blank" href='<?php echo $view->logLink ?>'>Logfile</a>
     <div class='content_box'>

     </div>
</div>