Changeset 2050:1c54626b3fd8 for plugins/maintenance/index.php
- Timestamp:
- 09/24/13 08:19:14 (12 years ago)
- Branch:
- default
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/maintenance/index.php
r2045 r2050 291 291 292 292 echo 293 '<div id="settings" class="multi-part" title="'.__(' Settings').'">'.294 '<h3>'.__(' Settings').'</h3>'.293 '<div id="settings" class="multi-part" title="'.__('Alert settings').'">'. 294 '<h3>'.__('Alert settings').'</h3>'. 295 295 '<form action="'.$p_url.'" method="post">'. 296 296 … … 305 305 ).'</p>'. 306 306 307 '<h4 class="pretty-title ">'.__('Frequency').'</h4>'.308 309 '<p >'.form::radio(array('settings_recall_type', 'settings_recall_all'), 'all').' '.307 '<h4 class="pretty-title vertical-separator">'.__('Frequency').'</h4>'. 308 309 '<p class="vertical-separator">'.form::radio(array('settings_recall_type', 'settings_recall_all'), 'all').' '. 310 310 '<label class="classic" for="settings_recall_all">'. 311 __('Use one recall time for all tasks').'</label>'.312 313 '<p ><label for="settings_recall_time">'.__('Recall time for all tasks:').'</label>'.311 '<strong>'.__('Use one recall time for all tasks').'</strong></label>'. 312 313 '<p class="field wide vertical-separator"><label for="settings_recall_time">'.__('Recall time for all tasks:').'</label>'. 314 314 form::combo('settings_recall_time', $combo_ts, 'seperate', 'recall-for-all'). 315 315 '</p>'. 316 316 317 '<p >'.form::radio(array('settings_recall_type', 'settings_recall_separate'), 'separate', 1).' '.317 '<p class="vertical-separator">'.form::radio(array('settings_recall_type', 'settings_recall_separate'), 'separate', 1).' '. 318 318 '<label class="classic" for="settings_recall_separate">'. 319 __('Use one recall time per task').'</label>';319 '<strong>'.__('Use one recall time per task').'</strong></label>'; 320 320 321 321 foreach($tasks as $t) … … 324 324 '<div class="two-boxes">'. 325 325 326 '<p ><label for="settings_ts_'.$t->id().'">'.$t->task().'</label>'.326 '<p class="field wide"><label for="settings_ts_'.$t->id().'">'.$t->task().'</label>'. 327 327 form::combo('settings_ts_'.$t->id(), $combo_ts, $t->ts(), 'recall-per-task'). 328 328 '</p>'. … … 332 332 333 333 echo 334 '<p ><input type="submit" value="'.__('Save this settings').'" /> '.334 '<p class="field wide"><input type="submit" value="'.__('Save this settings').'" /> '. 335 335 form::hidden(array('tab'), 'settings'). 336 336 form::hidden(array('settings'), 1).
Note: See TracChangeset
for help on using the changeset viewer.