You are here

class FieldPreload in Lightgallery 8

Field pre load.

Hierarchy

Expanded class hierarchy of FieldPreload

1 file declares its use of FieldPreload
LightgalleryManager.php in src/Manager/LightgalleryManager.php

File

src/Field/FieldPreload.php, line 10

Namespace

Drupal\lightgallery\Field
View source
class FieldPreload extends FieldBase {

  /**
   * {@inheritdoc}
   */
  protected function setDefaultValue() {
    return NULL;
  }

  /**
   * {@inheritdoc}
   */
  protected function setOptions() {
    return [
      'Drupal\\lightgallery\\Manager\\LightgalleryManager',
      'getPreloadOptions',
    ];
  }

  /**
   * {@inheritdoc}
   */
  protected function setName() {
    return 'preload';
  }

  /**
   * {@inheritdoc}
   */
  protected function setTitle() {
    return 'Preload';
  }

  /**
   * {@inheritdoc}
   */
  protected function setType() {
    return FieldTypesEnum::SELECT;
  }

  /**
   * {@inheritdoc}
   */
  protected function setDescription() {
    return 'number of preload slides. will exicute only after the current slide is fully loaded. ' . 'ex:// you clicked on 4th image and if preload = 1 then 3rd slide and 5th slide will be loaded in the background after the 4th slide is fully loaded. ' . 'If preload is 2 then 2nd 3rd 5th 6th slides will be preloaded.';
  }

  /**
   * {@inheritdoc}
   */
  protected function setGroup() {
    return new GroupLightgalleryCore();
  }

}

Members

Namesort descending Modifiers Type Description Overrides
FieldBase::$defaultValue protected property
FieldBase::$description protected property
FieldBase::$group protected property
FieldBase::$isRequired protected property
FieldBase::$name protected property
FieldBase::$options protected property
FieldBase::$title protected property
FieldBase::$type protected property
FieldBase::appliesToFieldFormatter public function Returns where the field has to be rendered in field formatter settings. Overrides FieldInterface::appliesToFieldFormatter 3
FieldBase::appliesToViews public function Returns where the field has to be rendered in view settings. Overrides FieldInterface::appliesToViews 3
FieldBase::getDefaultValue public function Returns field default value. Overrides FieldInterface::getDefaultValue
FieldBase::getDescription public function Returns field description. Overrides FieldInterface::getDescription
FieldBase::getGroup public function Returns field group (parent). Overrides FieldInterface::getGroup
FieldBase::getName public function Returns field name. Overrides FieldInterface::getName
FieldBase::getOptions public function Returns field options callback. Overrides FieldInterface::getOptions
FieldBase::getTitle public function Returns field title. Overrides FieldInterface::getTitle
FieldBase::getType public function Returns field type. Overrides FieldInterface::getType
FieldBase::isRequired public function Returns if field is required. Overrides FieldInterface::isRequired
FieldBase::setIsRequired protected function Sets required flag. 2
FieldBase::__construct public function
FieldPreload::setDefaultValue protected function Sets default value. Overrides FieldBase::setDefaultValue
FieldPreload::setDescription protected function Sets description. Overrides FieldBase::setDescription
FieldPreload::setGroup protected function Sets group. Overrides FieldBase::setGroup
FieldPreload::setName protected function Sets name. Overrides FieldBase::setName
FieldPreload::setOptions protected function Sets options. Overrides FieldBase::setOptions
FieldPreload::setTitle protected function Sets title. Overrides FieldBase::setTitle
FieldPreload::setType protected function Sets type. Overrides FieldBase::setType