interface ResourceInterface

A resource is something formulae can be loaded from.

@author Kris Wallsmith <kris.wallsmith@gmail.com>

Hierarchy

Expanded class hierarchy of ResourceInterface

All classes that implement ResourceInterface

6 files declare their use of ResourceInterface
BasePhpFormulaLoader.php in drupal/core/vendor/kriswallsmith/assetic/src/Assetic/Factory/Loader/BasePhpFormulaLoader.php
CachedFormulaLoader.php in drupal/core/vendor/kriswallsmith/assetic/src/Assetic/Factory/Loader/CachedFormulaLoader.php
FormulaLoaderInterface.php in drupal/core/vendor/kriswallsmith/assetic/src/Assetic/Factory/Loader/FormulaLoaderInterface.php
LazyAssetManager.php in drupal/core/vendor/kriswallsmith/assetic/src/Assetic/Factory/LazyAssetManager.php
TwigFormulaLoader.php in drupal/core/vendor/kriswallsmith/assetic/src/Assetic/Extension/Twig/TwigFormulaLoader.php

... See full list

File

drupal/core/vendor/kriswallsmith/assetic/src/Assetic/Factory/Resource/ResourceInterface.php, line 19

Namespace

Assetic\Factory\Resource
View source
interface ResourceInterface {

  /**
   * Checks if a timestamp represents the latest resource.
   *
   * @param integer $timestamp A UNIX timestamp
   *
   * @return Boolean True if the timestamp is up to date
   */
  public function isFresh($timestamp);

  /**
   * Returns the content of the resource.
   *
   * @return string The content
   */
  public function getContent();

  /**
   * Returns a unique string for the current resource.
   *
   * @return string A unique string to identity the current resource
   */
  public function __toString();

}

Members

Namesort descending Modifiers Type Description Overrides
ResourceInterface::getContent public function Returns the content of the resource. 4
ResourceInterface::isFresh public function Checks if a timestamp represents the latest resource. 4
ResourceInterface::__toString public function Returns a unique string for the current resource. 4