예제 #1
0
                    </tr>
                    <tr valign="top">
                        <th>Delete bounces on Mandrill</th>
                        <td>
                            <?php 
echo $controls->yesno('bounce_delete');
?>
                            <p class="description">Not recommended if you want to keep Mandrill check emails
                                potentially sent to bounced addresses may be by other service you connected to Mandrill.</p>
                        </td>
                    </tr>                    
                    <tr valign="top">
                        <th>Bounce checking last run</th>
                        <td>
                            <?php 
echo $controls->print_date($module->get_last_run());
?>
                            <?php 
$controls->button('trigger', 'Check now');
?>
                        </td>
                    </tr>
                    <tr valign="top">
                        <th>Bounce checking next run</th>
                        <td>
                            <?php 
echo $controls->print_date(wp_next_scheduled($module->prefix . '_bounce'));
?>
                        </td>
                    </tr>
                </table>
예제 #2
0
파일: index.php 프로젝트: kfwebdev/wp-atd
                                    <tr><th>Field name</th><th>Field value</th>
                                </thead>
                                <tbody>
                                <?php 
foreach ($data as $field => $value) {
    ?>
                                <tr>
                                    <td>
                                        <?php 
    echo htmlspecialchars($field);
    ?>
                                    </td>
                                    <td>
                                        <?php 
    if ($field == 'time') {
        echo $controls->print_date($value);
    } else {
        echo htmlspecialchars($value);
    }
    ?>
                                    </td>
                                </tr>
                                <?php 
}
?>
                                </tbody>
                            </table>
                  
            </div>
            
            <div id="tabs-rules">