AnonSec Shell
Server IP : 104.21.14.48  /  Your IP : 3.147.53.229   [ Reverse IP ]
Web Server : Apache
System : Linux b70eb322-3aee-0c53-7c82-0db91281f2c6.secureserver.net 6.1.90-1.el9.elrepo.x86_64 #1 SMP PREEMPT_DYNAMIC Thu May 2 12:09:22 EDT 2024 x86_64
User : root ( 0)
PHP Version : 8.0.30.2
Disable Function : NONE
Domains : 0 Domains
MySQL : ON  |  cURL : ON  |  WGET : ON  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /var/www/wp-content/plugins/wp-all-export/src/Scheduling/Timezone/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME ]     [ BACKUP SHELL ]     [ JUMPING ]     [ MASS DEFACE ]     [ SCAN ROOT ]     [ SYMLINK ]     

Current File : /var/www/wp-content/plugins/wp-all-export/src/Scheduling/Timezone/TimezoneSelect.php
<?php

namespace Wpae\Scheduling\Timezone;


class TimezoneSelect
{

    private $regions = array(
        'Africa' => \DateTimeZone::AFRICA,
        'America' => \DateTimeZone::AMERICA,
        'Antarctica' => \DateTimeZone::ANTARCTICA,
        'Arctic' => \DateTimeZone::ARCTIC,
        'Asia' => \DateTimeZone::ASIA,
        'Atlantic' => \DateTimeZone::ATLANTIC,
        'Australia' => \DateTimeZone::AUSTRALIA,
        'Europe' => \DateTimeZone::EUROPE,
        'Indian' => \DateTimeZone::INDIAN,
        'Pacific' => \DateTimeZone::PACIFIC
    );

    public function getTimezoneSelect($value = false)
    {

        $timezones = array();
        foreach ($this->regions as $name => $mask) {
            $zones = \DateTimeZone::listIdentifiers($mask);

            foreach ($zones as $timezone) {

                $timeZoneObject = new \DateTimeZone($timezone);

                // Lets sample the time there right now
                $time = new \DateTime('now', $timeZoneObject);

                // Us dumb Americans can't handle millitary time
                $ampm = $time->format('H') > 12 ? ' (' . $time->format('g:i a') . ')' : '';
                $offset = $timeZoneObject->getOffset($time)/3600;

                if($offset < 10 && $offset > 0 && is_int($offset)) {
                    $offsetName = '0'.$offset;
                } else if($offset < 0 && $offset >-10 && is_int($offset)){
                    $offsetName = str_replace('- ','-0', $offset);
                }
                else{
                    $offsetName = str_replace('-','-', $offset);
                }

                if($offset > 0) {
                    $offsetName = "+".$offsetName;
                    $offset = "+".$offset;
                }


                $timezones[$name][$timezone]['offset'] = $offset;
                $timezones[$name][$timezone]['timezoneAbbrev'] = $time->format('T');
                // Remove region name and add a sample time
                $timezones[$name][$timezone]['name'] = 'UTC ' . $offsetName.' - '.substr($timezone, strlen($name) + 1) . ' ('.$timezones[$name][$timezone]['timezoneAbbrev'].')';
            }
        }

        $result = '';
        $result .= '<select id="timezone" name="scheduling_timezone">';
        foreach ($timezones as $region => $list) {
            $result .= '<optgroup label="' . $region . '">' . "\n";
            foreach ($list as $timezone => $data) {

                $selected = '';

                if($value) {
                    if($value == $timezone) {
                        $selected = ' selected="selected" ';
                    }
                }

                $keywords = array(
                    "UTC".$data['offset'],
                    "UTC ".$data['offset'],
                    $data['offset'],
                    str_replace("+","+ ", $data['offset']),
                    $data['timezoneAbbrev']
                );

                $keywords = implode(',', $keywords);
                $result .= '<option value="' . $timezone . '" ' . $selected . ' data-keywords="'.$keywords.'" >' . str_replace("_"," ",$data['name']) .'</option>' . "\n";
            }
            $result .= '<optgroup>' . "\n";
        }
        $result .= '</select>';

        return $result;
    }
}

Anon7 - 2022
AnonSec Team