| Server IP : 194.61.116.167 / Your IP : 216.73.217.84 Web Server : Apache/2 System : Linux nimbus2000.evosiber.com 5.14.0-503.11.1.el9_5.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Nov 12 09:26:13 EST 2024 x86_64 User : evoplastik ( 1130) PHP Version : 8.1.34 Disable Function : exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/evoplastik/public_html/wp-content/plugins/wp-optimize/webp/ |
Upload File : |
<?php
if (!defined('WPO_VERSION')) die('No direct access allowed');
if (!class_exists('WPO_WebP_Convert')) :
class WPO_WebP_Convert {
public $converters = null;
public function __construct() {
$this->converters = WP_Optimize()->get_options()->get_option('webp_converters');
}
/**
* Converts uploaded image to webp format
*
* @param string $source - path of the source file
* @return false|void
*/
public function convert($source) {
if (count($this->converters) < 1) return false;
$destination = $this->get_destination_path($source);
$this->check_converters_and_do_conversion($source, $destination);
}
/**
* Returns the destination full path
*
* @param string $source - path of the source file
*
* @return string $destination - path of destination file
*/
public function get_destination_path($source) {
$path_parts = pathinfo($source);
return $path_parts['dirname'] . '/'. basename($source) . '.webp';
}
/**
* Loop through available converters and do the conversion
*
* @param string $source - path of source file
* @param string $destination - path of destination file
*/
protected function check_converters_and_do_conversion($source, $destination) {
foreach ($this->converters as $converter) {
WPO_WebP_Utils::perform_webp_conversion($converter, $source, $destination);
break;
}
}
}
endif;