Skip to content
Snippets Groups Projects
crons.php 923 B
Newer Older
Eric Laufer's avatar
1.1
Eric Laufer committed
<?php head("Crons (Übersicht und manuell Start)");?>
isaack's avatar
isaack committed
<table class="table table-striped">
<tr>
    <th align="center">Cron</th>
    <th align="center">Laufzeit</th>
    <th align="center">URL</th>
Eric Laufer's avatar
1.1
Eric Laufer committed
</tr>
<?php
$crons = db_query("SELECT * FROM " . $db_prefix . "_crons");
while ($crontabelle = mysqli_fetch_array($crons)) {
    $i++;
    $row = ($i % 2 == 0) ? 0 : 1;

    echo '
isaack's avatar
isaack committed
<tr>
Eric Laufer's avatar
1.1
Eric Laufer committed
    <td valign="middle"><b>' . $crontabelle['bezeichnung'] . '</b><br>
        <i>ID: ' . $crontabelle['id'] . '</i>
    </td>

    <td align="center" valign="middle">
    <font color="#000080">' . date("d.m.Y - H:i:s", $crontabelle['laufzeit']) . '</font>
    </td>

    <td align="center" valign="middle">
    <a href="../cron.php?id=' . $crontabelle['id'] . '&amp;pw=' . $cron_pw . '" target="_blank"><img src="images/gruen.gif" width="15" height="15" border="0" alt="Ausführen"></a>
    </td>

</tr>
';
}

?>
</table>
<?php foot(); ?>