コード例 #1
0
ファイル: MemoryView.php プロジェクト: ColinWaddell/CurrantPi
<?php

namespace CurrantPi;

include 'content/memory/MemoryData.php';
$memory = new MemoryData();
$memory_data = $memory->getData();
?>

<h4><i class="demo-icon icon-sliders"></i> Memory</h4>

<table class="table table-striped table-hover">
  <tbody>
    <tr>
      <td colspan="4">
        <div class="row row-memory">
          <div class="col-xs-9">
            <div class="progress">
              <div class="progress-bar progress-bar-used"
                role="progressbar"
                aria-valuenow="<?php 
echo $memory_data->used->actual;
?>
"
                aria-valuemin="0"
                aria-valuemax="<?php 
echo $memory_data->total->actual;
?>
"
                style="width: <?php 
echo $memory_data->used->percentage;