class-webp-dir.php
1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<?php
namespace Smush\Core\Webp;
use Smush\Core\Upload_Dir;
class Webp_Dir extends Upload_Dir {
private $webp_path;
private $webp_rel_path;
private $webp_url;
/**
* @return string
*/
public function get_webp_path() {
if ( is_null( $this->webp_path ) ) {
$this->webp_path = $this->prepare_webp_path();
}
return $this->webp_path;
}
/**
* @return string
*/
public function get_webp_rel_path() {
if ( is_null( $this->webp_rel_path ) ) {
$this->webp_rel_path = $this->prepare_webp_rel_path();
}
return $this->webp_rel_path;
}
/**
* @return string
*/
public function get_webp_url() {
if ( is_null( $this->webp_url ) ) {
$this->webp_url = $this->prepare_webp_url();
}
return $this->webp_url;
}
private function prepare_webp_path() {
return dirname( $this->get_upload_path() ) . '/smush-webp';
}
private function prepare_webp_rel_path() {
return dirname( $this->get_upload_rel_path() ) . '/smush-webp';
}
private function prepare_webp_url() {
return dirname( $this->get_upload_url() ) . '/smush-webp';
}
protected function prepare_root_path() {
return apply_filters( 'smush_webp_rules_root_path_base', parent::prepare_root_path() );
}
}