monster_menus-9.0.x-dev/src/MMSearchAction/MMSearchActionInterface.php
src/MMSearchAction/MMSearchActionInterface.php
<?php
namespace Drupal\monster_menus\MMSearchAction;
/**
* Provides an interface for an MM Search Results Action plugin.
*/
interface MMSearchActionInterface {
/**
* Return TRUE if this plugin applies to the current search terms.
*
* @return bool
*/
public function applies();
/**
* Return TRUE if the current user is allowed to use this plugin.
*
* @return bool
*/
public function access();
}
