ConfigPagesContextInterface.php in Config Pages 8
Same filename and directory in other branches
Namespace
Drupal\config_pagesFile
src/ConfigPagesContextInterface.phpView source
<?php
namespace Drupal\config_pages;
use Drupal\Component\Plugin\PluginInspectionInterface;
interface ConfigPagesContextInterface extends PluginInspectionInterface {
/**
* Return the label of the context.
*
* @return string
*/
public function getLabel();
/**
* Return the value of the context.
*
* @return mixed
*/
public static function getValue();
}
Interfaces
Name | Description |
---|---|
ConfigPagesContextInterface |