You are here

GlobalVariableInterface.php in More Global Variables 8

Namespace

Drupal\mgv\Plugin

File

src/Plugin/GlobalVariableInterface.php
View source
<?php

namespace Drupal\mgv\Plugin;


/**
 * Interface GlobalVariableInterface.
 *
 * @package Drupal\mgv\Plugin
 */
interface GlobalVariableInterface {

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

}

Interfaces

Namesort descending Description
GlobalVariableInterface Interface GlobalVariableInterface.