|
|
@@ -6,8 +6,8 @@
|
|
|
</div>
|
|
|
<div class="submenu-search-block">
|
|
|
<form action="/search/" method="get">
|
|
|
- <input type="text" name="q" class="submenu-search-field">
|
|
|
- <input type="submit" value="<?php print __('Search');?>" class="submenu-button" style="width: 96px;">
|
|
|
+ <input type="text" name="q" class="submenu-search-field">
|
|
|
+ <input type="submit" value="<?php print __('Search');?>" class="submenu-button" style="width: 96px;">
|
|
|
</form>
|
|
|
</div>
|
|
|
<div class="submenu-select-block">
|
|
|
@@ -33,10 +33,8 @@
|
|
|
++$i;
|
|
|
if ($data[$key]['SUSPENDED'] == 'yes') {
|
|
|
$status = 'suspended';
|
|
|
- $spnd_action = 'unsuspend' ;
|
|
|
} else {
|
|
|
$status = 'active';
|
|
|
- $spnd_action = 'suspend';
|
|
|
}
|
|
|
?>
|
|
|
|
|
|
@@ -67,81 +65,52 @@
|
|
|
</a>
|
|
|
<table class="data-col2" width="800px">
|
|
|
<tr>
|
|
|
- <td colspan=5 class="cron" style="padding: 0 0 0 4px;">
|
|
|
+ <td colspan=6 class="cron">
|
|
|
<b><?php echo htmlspecialchars($data[$key]['CMD'], ENT_NOQUOTES) ?></b>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
- <td style="vertical-align:top;" width="80px">
|
|
|
- <table>
|
|
|
- <tr>
|
|
|
- <td class="cron-counter-name">
|
|
|
- <?php print __('Min');?>
|
|
|
- </td>
|
|
|
- </tr>
|
|
|
- <tr>
|
|
|
- <td class="cron-counter-value">
|
|
|
- <?php echo $data[$key]['MIN'] ?>
|
|
|
- </td>
|
|
|
- </tr>
|
|
|
- </table>
|
|
|
+ <td style="vertical-align:top; width:80px">
|
|
|
+ <div class="cron-counter-name">
|
|
|
+ <?php print __('Min');?>
|
|
|
+ </div>
|
|
|
+ <div class="cron-counter-value">
|
|
|
+ <?php echo $data[$key]['MIN'] ?>
|
|
|
+ </div>
|
|
|
</td>
|
|
|
- <td style="vertical-align:top;" width="80px">
|
|
|
- <table>
|
|
|
- <tr>
|
|
|
- <td class="cron-counter-name">
|
|
|
- <?php print __('Hour');?>
|
|
|
- </td>
|
|
|
- </tr>
|
|
|
- <tr>
|
|
|
- <td class="cron-counter-value">
|
|
|
- <?php echo $data[$key]['HOUR'] ?>
|
|
|
- </td>
|
|
|
- </tr>
|
|
|
- </table>
|
|
|
+ <td style="vertical-align:top; width:80px">
|
|
|
+ <div class="cron-counter-name">
|
|
|
+ <?php print __('Hour');?>
|
|
|
+ </div>
|
|
|
+ <div class="cron-counter-value">
|
|
|
+ <?php echo $data[$key]['HOUR'] ?>
|
|
|
+ </div>
|
|
|
</td>
|
|
|
- <td style="vertical-align:top;" width="80px">
|
|
|
- <table>
|
|
|
- <tr>
|
|
|
- <td class="cron-counter-name">
|
|
|
- <?php print __('Day');?>
|
|
|
- </td>
|
|
|
- </tr>
|
|
|
- <tr>
|
|
|
- <td class="cron-counter-value">
|
|
|
- <?php echo $data[$key]['DAY'] ?>
|
|
|
- </td>
|
|
|
- </tr>
|
|
|
- </table>
|
|
|
+ <td style="vertical-align:top; width:80px">
|
|
|
+ <div class="cron-counter-name">
|
|
|
+ <?php print __('Day');?>
|
|
|
+ </div>
|
|
|
+ <div class="cron-counter-value">
|
|
|
+ <?php echo $data[$key]['DAY'] ?>
|
|
|
+ </div>
|
|
|
</td>
|
|
|
- <td style="vertical-align:top;" width="80px">
|
|
|
- <table>
|
|
|
- <tr>
|
|
|
- <td class="cron-counter-name">
|
|
|
- <?php print __('Month');?>
|
|
|
- </td>
|
|
|
- </tr>
|
|
|
- <tr>
|
|
|
- <td class="cron-counter-value">
|
|
|
- <?php echo $data[$key]['MONTH'] ?>
|
|
|
- </td>
|
|
|
- </tr>
|
|
|
- </table>
|
|
|
+ <td style="vertical-align:top; width:80px">
|
|
|
+ <div class="cron-counter-name">
|
|
|
+ <?php print __('Month');?>
|
|
|
+ </div>
|
|
|
+ <div class="cron-counter-value">
|
|
|
+ <?php echo $data[$key]['MONTH'] ?>
|
|
|
+ </div>
|
|
|
</td>
|
|
|
- <td style="vertical-align:top;">
|
|
|
- <table>
|
|
|
- <tr>
|
|
|
- <td class="cron-counter-name">
|
|
|
- <?php print __('Day of week');?>
|
|
|
- </td>
|
|
|
- </tr>
|
|
|
- <tr>
|
|
|
- <td class="cron-counter-value">
|
|
|
- <?php echo $data[$key]['WDAY'] ?>
|
|
|
- </td>
|
|
|
- </tr>
|
|
|
- </table>
|
|
|
+ <td style="vertical-align:top; width:180px">
|
|
|
+ <div class="cron-counter-name">
|
|
|
+ <?php print __('Day of week');?>
|
|
|
+ </div>
|
|
|
+ <div class="cron-counter-value">
|
|
|
+ <?php echo $data[$key]['WDAY'] ?>
|
|
|
+ </div>
|
|
|
</td>
|
|
|
+ <td style="vertical-align:top;"></td>
|
|
|
</tr>
|
|
|
</table>
|
|
|
</td>
|
|
|
@@ -155,7 +124,7 @@
|
|
|
|
|
|
<table class="data-count">
|
|
|
<tr>
|
|
|
- <td width="160px"></td>
|
|
|
+ <td width="168px"></td>
|
|
|
<td>
|
|
|
<?php
|
|
|
if ( $i == 1) {
|