You are here

interface GlobalVariableInterface in More Global Variables 8

Interface GlobalVariableInterface.

@package Drupal\mgv\Plugin

Hierarchy

Expanded class hierarchy of GlobalVariableInterface

All classes that implement GlobalVariableInterface

2 files declare their use of GlobalVariableInterface
MgvPluginManager.php in src/MgvPluginManager.php
MgvPluginManagerInterface.php in src/MgvPluginManagerInterface.php

File

src/Plugin/GlobalVariableInterface.php, line 10

Namespace

Drupal\mgv\Plugin
View source
interface GlobalVariableInterface {

  /**
   * Method that implement generating value of global variable.
   *
   * @return mixed
   *   Return value of declared variable.
   */
  public function getValue();

}

Members

Namesort descending Modifiers Type Description Overrides
GlobalVariableInterface::getValue public function Method that implement generating value of global variable. 15