You are here

interface JuiceboxXmlInterface in Juicebox HTML5 Responsive Image Galleries 7.2

Interface definition for a Juicebox XML loader.

Hierarchy

Expanded class hierarchy of JuiceboxXmlInterface

All classes that implement JuiceboxXmlInterface

1 string reference to 'JuiceboxXmlInterface'
juicebox_page_xml in ./juicebox.module
Menu callback: generate Juicebox XML.

File

plugins/JuiceboxXmlInterface.inc, line 13
Interface definition for a Juicebox XML loader.

View source
interface JuiceboxXmlInterface {

  /**
   * Check access to the Drupal data that will be used to build the gallery.
   *
   * @return boolean
   *   Returns TRUE if access is allowed for the current user and FALSE if not.
   *   Can also return NULL if access cannot be determined.
   */
  public function access();

  /**
   * Get the XML based on loaded data.
   *
   * @return string
   *   Returns XML data describing a Juicebox gallery.
   */
  public function getXml();

}

Members

Namesort descending Modifiers Type Description Overrides
JuiceboxXmlInterface::access public function Check access to the Drupal data that will be used to build the gallery. 2
JuiceboxXmlInterface::getXml public function Get the XML based on loaded data. 2