You are here

public static function Slick::defaultProperties in Slick Carousel 7.3

Returns default database field property values.

Return value

mixed[] An array of property values, keyed by property name.

Overrides SlickBase::defaultProperties

1 call to Slick::defaultProperties()
slick_slick_optionsets in ./slick.slick_optionset.inc
Implements hook_slick_optionsets().

File

src/Entity/Slick.php, line 160

Class

Slick
Defines the Slick configuration entity.

Namespace

Drupal\slick\Entity

Code

public static function defaultProperties() {
  return parent::defaultProperties() + [
    'breakpoints' => 0,
    'collection' => '',
    'optimized' => 0,
    'skin' => '',
  ];
}