for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace EventEspresso\core\domain\entities\routing\specifications\admin;
use EventEspresso\core\domain\entities\routing\specifications\RouteMatchSpecification;
/**
* Class EspressoEventEditorEdit
* Returns true when the current request is for the Event Editor admin page for an existing event
*
* @package EventEspresso\core\domain\entities\routing\specifications
* @author Brent Christensen
* @since 4.9.71.p
*/
class EspressoEventEditorEdit extends RouteMatchSpecification
{
* returns true if current request matches specification
* @return boolean
public function isMatchingRoute()
return $this->request->getRequestParam('page') === 'espresso_events'
&& $this->request->getRequestParam('action') === 'edit';
}