for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Carbon_Fields\Container\Condition;
/**
* Check for a specific post id
*/
class Post_ID_Condition extends Condition {
* Check if the condition is fulfilled
*
* @param array $environment
* @return bool
public function is_fulfilled( $environment ) {
$post_id = $environment['post_id'];
return $this->compare(
$post_id,
$this->get_comparison_operator(),
$this->get_value()
);
}