for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @package WPEmerge
* @author Atanas Angelov <[email protected]>
* @copyright 2017-2019 Atanas Angelov
* @license https://www.gnu.org/licenses/gpl-2.0.html GPL-2.0
* @link https://wpemerge.com/
*/
namespace WPEmerge\Routing\Conditions;
use WPEmerge\Requests\RequestInterface;
* Check against the current post's id.
*
* @codeCoverageIgnore
class PostIdCondition implements ConditionInterface, UrlableInterface {
* Post id to check against
* @var integer
protected $post_id = 0;
* Constructor
* @param integer $post_id
public function __construct( $post_id ) {
$this->post_id = (int) $post_id;
}
* {@inheritDoc}
public function isSatisfied( RequestInterface $request ) {
return ( is_singular() && $this->post_id === (int) get_the_ID() );
public function getArguments( RequestInterface $request ) {
return ['post_id' => $this->post_id];
public function toUrl( $arguments = [] ) {
return get_permalink( $this->post_id );