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 slug.
*
* @codeCoverageIgnore
class PostSlugCondition implements ConditionInterface {
* Post slug to check against
* @var string
protected $post_slug = '';
* Constructor
* @param string $post_slug
public function __construct( $post_slug ) {
$this->post_slug = $post_slug;
}
* {@inheritDoc}
public function isSatisfied( RequestInterface $request ) {
$post = get_post();
return ( is_singular() && $post && $this->post_slug === $post->post_name );
public function getArguments( RequestInterface $request ) {
return ['post_slug' => $this->post_slug];