You are here

interface ObjectInterface in Openlayers 7.3

Interface openlayers_object_interface.

Hierarchy

  • interface \Drupal\openlayers\Types\ObjectInterface extends \Drupal\Component\Plugin\PluginInspectionInterface

Expanded class hierarchy of ObjectInterface

All classes that implement ObjectInterface

23 files declare their use of ObjectInterface
Base.php in src/Types/Base.php
Class Object.
BlockLayerSwitcher.php in modules/openlayers_library/src/Plugin/Component/BlockLayerSwitcher/BlockLayerSwitcher.php
Component: Block Layer Switcher.
Debug.php in src/Plugin/Component/Debug/Debug.php
Component: Debug.
Fractal.php in modules/openlayers_library/src/Plugin/Component/Fractal/Fractal.php
Component: Fractal.
GeofieldWidget.php in modules/openlayers_geofield/src/Plugin/Component/GeofieldWidget/GeofieldWidget.php
Component: GeofieldWidget.

... See full list

File

src/Types/ObjectInterface.php, line 14
Interface ObjectInterface.

Namespace

Drupal\openlayers\Types
View source
interface ObjectInterface extends PluginInspectionInterface {

  /**
   * Initializes the object.
   */
  public function init();

  /**
   * Initializes the Collection,
   * Import objects from options,
   * Import the current object.
   */
  public function initCollection();

  /**
   * The type of this object.
   *
   * @return string|FALSE
   *   The object type or FALSE on failure.
   */
  public function getType();

  /**
   * Remove an option.
   *
   * @param string|array $parents
   *   The option to remove.
   *   This can be a string or an array of parents keys if the option
   *   is in a multilevel array.
   */
  public function clearOption($parents);

  /**
   * Return the options array.
   *
   * @return array
   *   The array of options.
   */
  public function getOptions();

  /**
   * Set the options array.
   *
   * @param array $options
   *   The options array.
   *
   * @return ObjectInterface
   *   The current object.
   */
  public function setOptions(array $options = array());

  /**
   * Returns an option.
   *
   * @param string|array $parents
   *   TODO Define how this has to look like if it is an array.
   * @param mixed $default_value
   *   The default value to return if the option isn't set. Set to NULL if not
   *   defined.
   *
   * @return mixed
   *   The value of the option or the defined default value.
   */
  public function getOption($parents, $default_value = NULL);

  /**
   * Set an option.
   *
   * @param string|array $parents
   *   TODO: Define how this has to look like if it is an array.
   * @param mixed $value
   *   The value to set.
   *
   * @return ObjectInterface
   *   The current object.
   */
  public function setOption($parents, $value = NULL);

  /**
   * Reset the object's Collection.
   */
  public function resetCollection();

  /**
   * Provides the options form to configure this object.
   *
   * @param array $form
   *   The form array by reference.
   * @param array $form_state
   *   The form_state array by reference.
   */
  public function optionsForm(array &$form, array &$form_state);

  /**
   * Validation callback for the options form.
   *
   * @param array $form
   *   The form array.
   * @param array $form_state
   *   The form_state array by reference.
   */
  public function optionsFormValidate(array $form, array &$form_state);

  /**
   * Submit callback for the options form.
   *
   * @param array $form
   *   The form array.
   * @param array $form_state
   *   The form_state array by reference.
   */
  public function optionsFormSubmit(array $form, array &$form_state);

  /**
   * Returns a list of attachments for building the render array.
   *
   * @return array
   *   The attachments to add.
   */
  public function attached();

  /**
   * Defines dependencies.
   *
   * TODO Define how this has to look like.
   *
   * @return array
   *   The dependencies.
   */
  public function dependencies();

  /**
   * Whether or not this object has to be processed asynchronously.
   *
   * If true the map this object relates to won't be processes right away by
   * Drupals behaviour attach.
   *
   * @return int
   *   Return the number of asynchronous object contained in the parent object.
   */
  public function isAsynchronous();

  /**
   * Invoked before an objects render array is built.
   *
   * Mostly invoked by the map object.
   *
   * @param array $build
   *   The array with the build information.
   * @param \Drupal\openlayers\Types\ObjectInterface $context
   *   The context of the build. Mostly the map object.
   */
  public function preBuild(array &$build, ObjectInterface $context = NULL);

  /**
   * Invoked after an objects render array is built.
   *
   * Mostly invoked by the map object.
   *
   * @param array $build
   *   The array with the build information.
   * @param \Drupal\openlayers\Types\ObjectInterface $context
   *   The context of the build. Mostly the map object.
   */
  public function postBuild(array &$build, ObjectInterface $context = NULL);

  /**
   * Return an object, CTools Exportable.
   *
   * @return \StdClass
   *   The object as CTools exportable.
   */
  public function getExport();

  /**
   * Return the object configuration.
   *
   * @return array
   */
  public function getConfiguration();

  /**
   * Return an array of OL objects indexed by their type.
   *
   * @param string $type
   * @return array
   */
  public function getObjects($type = NULL);

  /**
   * Returns an array with the maps this object is attached on.
   *
   * @return array
   *   An array of map objects this object is attached on. Keyed by the map
   *   machine name.
   */
  public function getParents();

  /**
   * Return the module that provides this plugin.
   *
   * @return string
   *   The module providing the plugin.
   */
  public function getProvider();

  /**
   * Returns the path to the plugin directory.
   *
   * @return string
   *   The path to the plugin directory of the class.
   */
  public function getClassDirectory();

  /**
   * Returns the path to the class file.
   *
   * @return string
   *   The path to the file containing the class definition.
   */
  public function getClassPath();

  /**
   * Return the Collection object linked to the object.
   *
   * @return Collection
   */
  public function getCollection();

  /**
   * Return the JS to insert in the page when building the object.
   *
   * @return array
   */
  public function getJS();

  /**
   * Set the weight of an object.
   *
   * @param int $weight
   *   The weight of the object.
   */
  public function setWeight($weight);

  /**
   * Get the weight of an object.
   *
   * @return int
   *   The weight of the object.
   */
  public function getWeight();

  /**
   * Return a flat array containing Openlayers Objects from the options array.
   *
   * @return ObjectInterface[]
   *   Return a list of objects.
   */
  public function optionsToObjects();

  /**
   * Return the human name of the object.
   *
   * @return string
   */
  public function getName();

  /**
   * Return the unique machine name of the object.
   *
   * @return string
   *   The unique machine name of this object.
   */
  public function getMachineName();

  /**
   * Return the description of the object.
   *
   * @return string
   */
  public function getDescription();

  /**
   * Return the description of the object's plugin.
   *
   * @return string
   */
  public function getPluginDescription();

  /**
   * Refresh string translations.
   */
  public function i18nStringsRefresh();

  /**
   * Set the Factory Service of the object.
   *
   * @param string $factory_service
   *   The object's factory service.
   *
   * @return ObjectInterface
   *   The parent object.
   */
  public function setFactoryService($factory_service);

  /**
   * Return the Factory Service of the object.
   *
   * @return string|FALSE
   *   The factory service otherwise FALSE.
   */
  public function getFactoryService();

  /**
   * Add an object into the collection of the parent object.
   *
   * @param \Drupal\openlayers\Types\ObjectInterface $object
   *   The object to add.
   *
   * @return ObjectInterface
   *   The parent object.
   */
  public function addObject(ObjectInterface $object);

  /**
   * Remove an object from the collection.
   *
   * @param string $object_machine_name
   *   The machine name of the object to remove.
   *
   * @return ObjectInterface
   *   The parent object.
   */
  public function removeObject($object_machine_name);

  /**
   * Return all the dependencies objects of the parent object.
   *
   * @return ObjectInterface[]
   *   The dependencies objects.
   */
  public function getDependencies();

  /**
   * Return the object unique ID.
   *
   * @return string
   *   The object ID.
   */
  public function getId();

  /**
   * Set the object ID.
   *
   * @param string $id
   *   The object ID.
   *
   * @return ObjectInterface
   *   The parent object.
   */
  public function setId($id);

}

Members

Namesort descending Modifiers Type Description Overrides
ObjectInterface::addObject public function Add an object into the collection of the parent object. 1
ObjectInterface::attached public function Returns a list of attachments for building the render array. 1
ObjectInterface::clearOption public function Remove an option. 1
ObjectInterface::dependencies public function Defines dependencies. 1
ObjectInterface::getClassDirectory public function Returns the path to the plugin directory. 1
ObjectInterface::getClassPath public function Returns the path to the class file. 1
ObjectInterface::getCollection public function Return the Collection object linked to the object. 1
ObjectInterface::getConfiguration public function Return the object configuration. 1
ObjectInterface::getDependencies public function Return all the dependencies objects of the parent object. 1
ObjectInterface::getDescription public function Return the description of the object. 1
ObjectInterface::getExport public function Return an object, CTools Exportable. 1
ObjectInterface::getFactoryService public function Return the Factory Service of the object. 1
ObjectInterface::getId public function Return the object unique ID. 2
ObjectInterface::getJS public function Return the JS to insert in the page when building the object. 1
ObjectInterface::getMachineName public function Return the unique machine name of the object. 1
ObjectInterface::getName public function Return the human name of the object. 1
ObjectInterface::getObjects public function Return an array of OL objects indexed by their type. 1
ObjectInterface::getOption public function Returns an option. 1
ObjectInterface::getOptions public function Return the options array. 1
ObjectInterface::getParents public function Returns an array with the maps this object is attached on. 1
ObjectInterface::getPluginDescription public function Return the description of the object's plugin. 1
ObjectInterface::getProvider public function Return the module that provides this plugin. 1
ObjectInterface::getType public function The type of this object. 1
ObjectInterface::getWeight public function Get the weight of an object. 1
ObjectInterface::i18nStringsRefresh public function Refresh string translations. 1
ObjectInterface::init public function Initializes the object. 1
ObjectInterface::initCollection public function Initializes the Collection, Import objects from options, Import the current object. 1
ObjectInterface::isAsynchronous public function Whether or not this object has to be processed asynchronously. 1
ObjectInterface::optionsForm public function Provides the options form to configure this object. 1
ObjectInterface::optionsFormSubmit public function Submit callback for the options form. 1
ObjectInterface::optionsFormValidate public function Validation callback for the options form. 1
ObjectInterface::optionsToObjects public function Return a flat array containing Openlayers Objects from the options array. 1
ObjectInterface::postBuild public function Invoked after an objects render array is built. 1
ObjectInterface::preBuild public function Invoked before an objects render array is built. 1
ObjectInterface::removeObject public function Remove an object from the collection. 1
ObjectInterface::resetCollection public function Reset the object's Collection. 1
ObjectInterface::setFactoryService public function Set the Factory Service of the object. 1
ObjectInterface::setId public function Set the object ID. 1
ObjectInterface::setOption public function Set an option. 1
ObjectInterface::setOptions public function Set the options array. 1
ObjectInterface::setWeight public function Set the weight of an object. 1