Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
plugins
/
easy-timer
/
includes
:
timezone.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php if (!defined('ABSPATH')) { exit(); } $atts = array_map('kleor_do_shortcode_in_attribute', (array) $atts); extract(shortcode_atts(array('filter' => '', 'offset' => ''), $atts)); $offset = strtolower($offset); switch ($offset) { case '': $offset = 1*get_option('gmt_offset'); break; case 'local': break; default: $offset = round((float) str_replace(',', '.', $offset), 2); } if (is_numeric($offset)) { if ($offset == 0) { $timezone = 'UTC'; } elseif ($offset > 0) { $timezone = 'UTC+'.$offset; } elseif ($offset < 0) { $timezone = 'UTC'.$offset; } $timezone = easy_timer_filter_data($filter, $timezone); } else { if (easy_timer_data('javascript_enabled') == 'yes') { add_action('wp_footer', 'easy_timer_js'); } $timezone = '<span class="localtimezone">UTC</span>'; }