????JFIF??x?x????'
Server IP : 79.136.114.73 / Your IP : 18.217.65.73 Web Server : Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.29 OpenSSL/1.0.1f System : Linux b8009 3.13.0-170-generic #220-Ubuntu SMP Thu May 9 12:40:49 UTC 2019 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/www.astacus.eu/wp-content/plugins/LayerSlider/wp/ |
Upload File : |
<?php function ls_wp_timezone() { return new DateTimeZone( ls_wp_timezone_string() ); } function ls_wp_timezone_string() { $timezone_string = get_option( 'timezone_string' ); if ( $timezone_string ) { return $timezone_string; } $offset = (float) get_option( 'gmt_offset' ); $hours = (int) $offset; $minutes = ( $offset - $hours ); $sign = ( $offset < 0 ) ? '-' : '+'; $abs_hour = abs( $hours ); $abs_mins = abs( $minutes * 60 ); $tz_offset = sprintf( '%s%02d:%02d', $sign, $abs_hour, $abs_mins ); return $tz_offset; } function ls_date($format, $timestamp = null, $timezone = null ) { if( ! $timezone ) { $timezone = ls_wp_timezone(); } if( ! $timestamp ) { $timestamp = time(); } $datetime = date_create( '@' . $timestamp ); $datetime->setTimezone( $timezone ); return $datetime->format( $format ); } function ls_date_create_for_timezone( $dateStr ) { $date = date_create( $dateStr, ls_wp_timezone() ); return $date->format('U'); } function layerslider_convert() { // Get old sliders if any $sliders = get_option('layerslider-slides', array()); $sliders = is_array($sliders) ? $sliders : unserialize($sliders); // Create new storage in DB layerslider_create_db_table(); // Iterate over them if(!empty($sliders) && is_array($sliders)) { foreach($sliders as $key => $slider) { LS_Sliders::add($slider['properties']['title'], $slider); } } // Remove old data and exit delete_option('layerslider-slides'); header('Location: admin.php?page=layerslider'); die(); } function lsSliderById($id) { $args = is_numeric($id) ? (int) $id : array('limit' => 1); $slider = LS_Sliders::find($args); if($slider == null) { return false; } return $slider; } function lsSliders($limit = 50, $desc = true, $withData = false) { $args = array(); $args['limit'] = $limit; $args['order'] = ($desc === true) ? 'DESC' : 'ASC'; $args['data'] = ($withData === true) ? true : false; $sliders = LS_Sliders::find($args); // No results if($sliders == null) { return array(); } return $sliders; } ?>