You are here

public static function SlickBase::loadMultiple in Slick Carousel 7.3

Fetches all optionsets from the storage.

Parameters

bool $reset: If TRUE, the static cache of all objects will be flushed prior to loading all. This can be important on listing pages where items might have changed on the page load.

Return value

array The associative array of all optionsets.

Overrides SlickBaseInterface::loadMultiple

File

src/Entity/SlickBase.php, line 92

Class

SlickBase
Defines the Slick configuration entity.

Namespace

Drupal\slick\Entity

Code

public static function loadMultiple($reset = FALSE) {
  ctools_include('export');
  return ctools_export_crud_load_all(static::TABLE, $reset);
}