Exemple #1
0
echo Options::get('log_path');
?>
">
                                    <span class="info">Ex: /Users/Andrew/AppData/Roaming/.purple/logs/</span>
                                </p>
                                <p><label for="pagination">Items per Page</label>
                                    <input type="text" class="text" name="pagination" id="pagination" value="<?php 
echo Options::get('pagination');
?>
">
                                    <span class="info">Ex: 20</span>
                                </p>
                                <p><label for="timezone">Timezone</label>
                                    <select id="timezone" name="timezone">
                                    <?php 
foreach (Logbox::getTimezones() as $timezone) {
    ?>
                                        <option <?php 
    if (Options::get('timezone') == $timezone) {
        ?>
 selected="selected"<?php 
    }
    ?>
><?php 
    echo $timezone;
    ?>
</option>
                                    <?php 
}
?>
                                    </select>