Example #1
0
                        <td>
                            <?php 
    if ($row['until'] <= 0) {
        $until = 'Permanent Warning';
    }
    if ($page->settings->show_inactive_bans && !$row['active']) {
        $until .= ' (Expired)';
    }
    echo $until;
    ?>
                        </td>
                        <td>
                            <?php 
    echo $row['warned'] ? "Yes" : "No";
    ?>
                        </td>
                    </tr>
                <?php 
}
?>
            </table>
            <?php 
$page->print_pager("warnings.php", $page->settings->table_warnings);
?>
        </div>
    </div>
    <?php 
$page->print_footer();
?>
</div>
Example #2
0
<?php

namespace litebans;

require_once './includes/page.php';
$page = new Page("index");
$page->print_title();
?>
<div class="container">
    <div class="jumbotron">
        <div style="text-align: center;"><h2>Welcome to <?php 
echo $page->settings->name;
?>
's Ban List.</h2></div>

        <div style="text-align: center;"><p>Here is where all of our punishments are listed.</p></div>
    </div>
</div>
<?php 
$page->print_footer(false);