Beispiel #1
0
<table>
<?php 
if (!empty($list)) {
    echo "<table><tr><th>Name</th><th>Type</th><th>Size</th><th>Posted</th></tr>";
    $stopHtml = "<input name='paginationdiv__document_stop' id='paginationdiv__document_stop' type='hidden' value='1' />";
    $listCount = count($list);
    $i = 0;
    foreach ($list as $row) {
        $i++;
        echo "<tr>\n\t\t\t\t<td class='" . document_class($row['url']) . "-icon-row'><a href='" . base_url() . "pages/download/file/" . $row['url'] . "'>" . htmlentities($row['name'], ENT_QUOTES) . "</a></td>\n\t\t\t\t<td>" . ucwords(str_replace('_', ' ', $row['category'])) . "</td>\n\t\t\t\t<td>" . format_number($row['size'], 3) . "B</td>\n\t\t\t\t<td>" . date(SHORT_DATE_FORMAT, strtotime($row['date_entered']));
        if ($i == $listCount && (!empty($n) && $listCount < $n || empty($n) && $listCount < NUM_OF_ROWS_PER_PAGE)) {
            echo $stopHtml;
        }
        echo "</td>\n\t\t\t\t</tr>";
    }
} else {
    echo "<tr><td>" . format_notice($this, 'WARNING: There are no ' . ($listtype == 'standard' ? 'standards' : 'documents') . ' in this list.') . "</td></tr>";
}
?>
</table>
      
Beispiel #2
0
</a></span>
  </td>
</tr>
<?php 
                                    }
                                }
                                ?>

<?php 
                            } else {
                                if ($type == 'standards') {
                                    if (isset($standardList)) {
                                        foreach ($standardList as $list) {
                                            ?>
<tr><td class=<?php 
                                            echo document_class($list['url']) . '-icon-row';
                                            ?>
><span class='bold'><a href="<?php 
                                            echo base_url() . 'pages/download/file/' . $list['url'];
                                            ?>
"><?php 
                                            echo $list['name'];
                                            ?>
</a></span>
<br><span class='grey-box'><?php 
                                            echo $list['category'];
                                            ?>
</span></td>
<td class='dark-grey' style="width:1%;white-space:nowrap;">Posted: <?php 
                                            echo date(SHORT_DATE_FORMAT, strtotime($list['date_entered']));
                                            ?>
$stopHtml = "<input name='paginationdiv__document_stop' id='paginationdiv__document_stop' type='hidden' value='1' />";
$listCount = count($list);
$i = 0;
echo "<table>";
if (!empty($list)) {
    echo "<tr><th style='width:1%;'>&nbsp;</th><th>Name</th><th>Type</th><th>Size</th><th>Description</th>";
    if ($this->native_session->get('__user_type') != 'provider') {
        echo "<th>Entered By</th><th>From Organization</th>";
    }
    if ($this->native_session->get('__user_type') == 'admin') {
        echo "<th>Status</th>";
    }
    echo "<th>Posted</th></tr>";
    foreach ($list as $row) {
        $i++;
        echo "<tr> \n\t\t<td>" . ($this->native_session->get('__user_type') != 'provider' && $row['is_removable'] == 'Y' ? "<input id='select_" . $row['document_id'] . "' name='selectall[]' type='checkbox' value='" . $row['document_id'] . "' class='bigcheckbox'><label for='select_" . $row['document_id'] . "'></label>" : '&nbsp;') . "</td>\n\t\t<td class='" . document_class($row['url']) . "-icon-row'><a href='" . base_url() . "pages/download/file/" . $row['url'] . "'>" . htmlentities($row['name'], ENT_QUOTES) . "</a></td>\n\t\t<td>" . ucwords(str_replace('_', ' ', $row['category'])) . "</td>\n\t\t<td>" . format_number($row['size'], 3) . "B</td>\n\t\t<td>" . (!empty($row['description']) ? "<a href='" . base_url() . "documents/description/d/" . $row['document_id'] . "' class='shadowbox closable'>View Description</a>" : 'NONE') . "</td>";
        if ($this->native_session->get('__user_type') != 'provider') {
            echo "<td>" . htmlentities($row['entered_by'], ENT_QUOTES) . "</td>\n\t\t\t\t<td>" . htmlentities($row['entered_by_organization'], ENT_QUOTES) . "</td>";
        }
        if ($this->native_session->get('__user_type') == 'admin') {
            echo "<td>" . strtoupper($row['status']) . "</td>";
        }
        echo "<td>" . date(SHORT_DATE_FORMAT, strtotime($row['date_entered']));
        # Check whether you need to stop the loading of the next pages
        if ($i == $listCount && (!empty($n) && $listCount < $n || empty($n) && $listCount < NUM_OF_ROWS_PER_PAGE)) {
            echo $stopHtml;
        }
        echo "</td>\n\t\t</tr>";
    }
} else {
    echo "<tr><td>" . format_notice($this, 'WARNING: There are no documents in this list.') . $stopHtml . "</td></tr>";