You are here

function Salvattore::defineOptions in Salvattore (CSS driven Masonry) 8

Set default options

Overrides StylePluginBase::defineOptions

File

src/Plugin/views/style/Salvattore.php, line 25

Class

Salvattore
Masonry views style based on Salvattore.

Namespace

Drupal\salvattore\Plugin\views\style\Salvattore

Code

function defineOptions() {
  $options = parent::defineOptions();
  $options['class'] = array(
    'default' => '',
  );
  return $options;
}