You are here

ConfigPagesContextInterface.php in Config Pages 8

File

src/ConfigPagesContextInterface.php
View 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