示例#1
0
                <table class="widefat" style="width: auto">
                    <thead>
                        <tr>
                            <th>Name</th>
                            <th>Active since</th>
                        </tr>
                    </thead>

                    <tbody>
                        <tr>
                            <td>
                                Log level
                            </td>
                            <td>
                                <?php 
$controls->log_level('log_level');
?>
                            </td>
                        </tr>
                        <tr>
                            <td>
                                Log folder
                            </td>
                            <td>
                                <?php 
if (!is_dir(NEWSLETTER_LOG_DIR)) {
    echo '<span class="newsletter-error-span">The log folder does not exists, no logging possible!</span>';
} else {
    echo 'The log folder exists.';
}
?>