Changeset 2019:4f317f4d38fd for admin
- Timestamp:
- 09/22/13 18:51:08 (12 years ago)
- Branch:
- default
- Location:
- admin
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
admin/blog_pref.php
r2014 r2019 64 64 # Status combo 65 65 $status_combo = dcAdminCombos::getBlogStatusescombo(); 66 67 # Date format combo 68 $now = time(); 69 $date_formats = array('%G-%m-%d', '%m/%d/%G', '%d/%m/%G', '%G/%m/%d','%d.%m.%G', '%b %e %G', '%e %b %G', '%G %b %e', 70 '%a, %G-%m-d', '%a, %m/%d/%G', '%a, %d/%m/%G', '%a, %G/%m/%d', '%B %e, %G', '%e %B, %G', '%G, %B %e', '%e. %B %G', 71 '%A, %B %e, %G', '%A, %e %B, %G', '%A, %G, %B %e','%A, %G, %B %e', '%A, %e. %B %G'); 72 $time_formats = array('%H:%M','%I:%M','%l:%M', '%Hh%M', '%Ih%M', '%lh%M'); 73 $date_formats_combo = array('' => ''); 74 foreach ($date_formats as $format) { 75 $date_formats_combo[dt::str($format, $now)] = $format; 76 } 77 $time_formats_combo = array('' => ''); 78 foreach ($time_formats as $format) { 79 $time_formats_combo[dt::str($format, $now)] = $format; 80 } 81 66 82 67 83 # URL scan modes … … 479 495 '<p><label for="date_format">'.__('Date format:').'</label>'. 480 496 form::field('date_format',30,255,html::escapeHTML($blog_settings->system->date_format)). 481 '</p>'. 482 497 form::combo('date_format_select',$date_formats_combo). 498 '</p>'. 499 '<p class="chosen form-note">'.dt::str(html::escapeHTML($blog_settings->system->date_format)).'</p>'. 500 483 501 '<p><label for="time_format">'.__('Time format:').'</label>'. 484 502 form::field('time_format',30,255,html::escapeHTML($blog_settings->system->time_format)). 485 '</p>'. 503 form::combo('time_format_select',$time_formats_combo). 504 '</p>'. 505 '<p class="chosen form-note">'.dt::str(html::escapeHTML($blog_settings->system->time_format)).'</p>'. 486 506 487 507 '<p><label for="use_smilies" class="classic">'. -
admin/js/_blog_pref.js
r2004 r2019 21 21 $('body').on('change','#url_scan',checkQueryString); 22 22 } 23 24 $('#date_format_select,#time_format_select').change(function() { 25 if ($(this).prop('value') == '') { 26 return; 27 } 28 $('#'+$(this).attr('id').replace('_select','')).prop('value', $(this).prop('value')); 29 $(this).parent().next('.chosen').html($(this).find(':selected').prop('label')); 30 }); 23 31 });
Note: See TracChangeset
for help on using the changeset viewer.