Total Complexity | 6 |
Total Lines | 41 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
19 | class PostTemplateCondition implements ConditionInterface { |
||
20 | /** |
||
21 | * Post template to check against |
||
22 | * |
||
23 | * @var string |
||
24 | */ |
||
25 | protected $post_template = ''; |
||
26 | |||
27 | /** |
||
28 | * Post types to check against |
||
29 | * |
||
30 | * @var string[] |
||
31 | */ |
||
32 | protected $post_types = []; |
||
33 | |||
34 | /** |
||
35 | * Constructor |
||
36 | * |
||
37 | * @codeCoverageIgnore |
||
38 | * @param string $post_template |
||
39 | * @param string|string[] $post_types |
||
40 | */ |
||
41 | public function __construct( $post_template, $post_types = [] ) { |
||
44 | } |
||
45 | |||
46 | /** |
||
47 | * {@inheritDoc} |
||
48 | */ |
||
49 | public function isSatisfied( RequestInterface $request ) { |
||
50 | $template = get_post_meta( (int) get_the_ID(), '_wp_page_template', true ); |
||
51 | $template = $template ? $template : 'default'; |
||
52 | return ( is_singular( $this->post_types ) && $this->post_template === $template ); |
||
53 | } |
||
54 | |||
55 | /** |
||
56 | * {@inheritDoc} |
||
57 | */ |
||
58 | public function getArguments( RequestInterface $request ) { |
||
60 | } |
||
61 | } |
||
62 |