You are here

Foundation5.php in GridStack 8.2

File

src/Plugin/gridstack/engine/Foundation5.php
View source
<?php

namespace Drupal\gridstack\Plugin\gridstack\engine;


/**
 * Provides a GridStack Foundation5 layout engine.
 *
 * @GridStackEngine(
 *   id = "foundation5",
 *   group = "foundation",
 *   hidden = "false",
 *   version = "5",
 *   label = @Translation("Foundation 5")
 * )
 */
class Foundation5 extends FoundationBase {

  /**
   * {@inheritdoc}
   */
  protected $colClass = 'columns';

  /**
   * {@inheritdoc}
   */
  protected $containerClasses = [
    'row',
  ];

  /**
   * {@inheritdoc}
   */
  protected $nestedContainerClasses = [
    'row',
  ];

}

Classes

Namesort descending Description
Foundation5 Provides a GridStack Foundation5 layout engine.