PATH:
home
/
letacommog
/
morandas1
/
wp-content
/
plugins
/
wp-whatsapp-chat
/
includes
<?php function qlwapp_format_phone($phone) { $phone = preg_replace('/[^0-9]/', '', $phone); $phone = ltrim($phone, '0'); return $phone; } function qlwapp_get_timezone_offset($timezone) { if (strpos($timezone, 'UTC') !== false) { $offset = preg_replace('/UTC\+?/', '', $timezone) * 60; } else { $current = timezone_open($timezone); $utc = new \DateTime('now', new \DateTimeZone('UTC')); $offset = $current->getOffset($utc) / 3600 * 60; } return $offset; } function qlwapp_get_current_timezone() { // Get user settings $current_offset = get_option('gmt_offset'); $tzstring = get_option('timezone_string'); $check_zone_info = true; // Remove old Etc mappings. Fallback to gmt_offset. if (false !== strpos($tzstring, 'Etc/GMT')) { $tzstring = ''; } if (empty($tzstring)) { // Create a UTC+- zone if no timezone string exists $check_zone_info = false; if (0 == $current_offset) { $tzstring = 'UTC+0'; } elseif ($current_offset < 0) { $tzstring = 'UTC' . $current_offset; } else { $tzstring = 'UTC+' . $current_offset; } } return $tzstring; }
[+]
..
[-] frontend.php
[edit]
[+]
controllers
[+]
models
[-] notices.php
[edit]
[+]
view
[-] helpers.php
[edit]
[-] qlwapp.php
[edit]
[-] settings.php
[edit]
[-] backend.php
[edit]