|
@@ 102-105 (lines=4) @@
|
| 99 |
|
|
| 100 |
|
echo '<h3>' . __( 'Custom Events', 'zt-debug-bar-cron' ) . '</h3>'; |
| 101 |
|
|
| 102 |
|
if ( ! is_null( $this->_user_crons ) ) |
| 103 |
|
$this->display_events( $this->_user_crons ); |
| 104 |
|
else |
| 105 |
|
echo '<p>' . __( 'No Custom Events scheduled.', 'zt-debug-bar-cron' ) . '</p>'; |
| 106 |
|
|
| 107 |
|
echo '<h3>' . __( 'Schedules', 'zt-debug-bar-cron' ) . '</h3>'; |
| 108 |
|
|
|
@@ 113-116 (lines=4) @@
|
| 110 |
|
|
| 111 |
|
echo '<h3>' . __( 'Core Events', 'zt-debug-bar-cron' ) . '</h3>'; |
| 112 |
|
|
| 113 |
|
if ( ! is_null( $this->_core_crons ) ) |
| 114 |
|
$this->display_events( $this->_core_crons ); |
| 115 |
|
else |
| 116 |
|
echo '<p>' . __( 'No Core Events scheduled.', 'zt-debug-bar-cron' ) . '</p>'; |
| 117 |
|
|
| 118 |
|
echo '</div>'; |
| 119 |
|
} |