コード例 #1
0
ファイル: list_check_results.php プロジェクト: nagyist/Tattle
<?php 
    $first = TRUE;
    foreach ($check_results as $check_result) {
        $check = new Check($check_result->getCheck_Id());
        ?>
        <tr>
        <td><?php 
        echo $status_array[$check_result->prepareStatus()];
        ?>
</td>
        <td><?php 
        echo $check_result->prepareValue();
        ?>
</td>
        <td><?php 
        echo $check->prepareError();
        ?>
</td>
        <td><?php 
        echo $check->prepareWarn();
        ?>
</td>
        <td><?php 
        echo $check_result->prepareState();
        ?>
</td>
        <td><?php 
        echo $check_result->prepareTimestamp('Y-m-d H:i:s');
        ?>
</td>
        </tr>
コード例 #2
0
    <th>Status</th>
    <th>Value</th>
    <th>Error</th>
    <th>Warn</th>
    <th>State</th>
    <th>Time</th>
       </tr>    
	<?php
	$first = TRUE;
	foreach ($check_results as $check_result) {
        $check = new Check($check_result->getCheck_Id());
		?>
    	<tr>
        <td><?php echo ($check_result->prepareStatus() == 2 ? 'Warning' : 'Error'); ?></td>
        <td><?php echo $check_result->prepareValue() ?></td>
        <td><?php echo $check->prepareError() ?></td>
        <td><?php echo $check->prepareWarn() ?></td>
        <td><?php echo $check_result->prepareState() ?></td>
        <td><?php echo $check_result->prepareTimestamp('Y-m-d H:i:s'); ?></td>
        <?php /*<div id="graphite-event-modal_<?php echo $check_result->getResult_Id(); ?>" class="modal hide fade">
            <div class="modal-header">
              <a href="#" class="close">&times;</a>
              <h3>view Event</h3>
            </div>
            <div class="modal-body">
              Event Details
            </div>
          </div>*/ ?>
        </tr>
    <?php } ?>
    </table></div>
コード例 #3
0
    <th>Status</th>
    <th>Value</th>
    <th>Error</th>
    <th>Warn</th>
    <th>State</th>
    <th>Time</th>
       </tr>    
	<?php
	$first = TRUE;
	foreach ($check_results as $check_result) {
        $check = new Check($check_result->getCheck_Id());
	?>
    	<tr>
        <td><?=($check_result->prepareStatus() == 2 ? 'Warning' : 'Error'); ?></td>
        <td><?=$check_result->prepareValue(); ?></td>
        <td><?=$check->prepareError(); ?></td>
        <td><?=$check->prepareWarn(); ?></td>
        <td><?=$check_result->prepareState(); ?></td>
        <td><?=$check_result->prepareTimestamp('Y-m-d H:i:s'); ?></td>
        </tr>
    <?php } ?>
    </table></div>
    <?
    //check to see if paging is needed
    $total_pages = ceil($check_results->count(TRUE) / $GLOBALS['PAGE_SIZE']);
    if ($total_pages > 1) {
      $prev_class = 'previous';
      $current_link = fURL::get() . "?action=$action&check_id=$check_id";
      $prev_link = $current_link . '&page=' . ($page_num - 1);
      $next_class = 'next';
      $next_link = $current_link . '&page=' . ($page_num + 1);