You are here

FooTableBreakpointInterface.php in FooTable 8.2

File

src/Entity/FooTableBreakpointInterface.php
View source
<?php

namespace Drupal\footable\Entity;

use Drupal\Core\Config\Entity\ConfigEntityInterface;

/**
 * Provides an interface defining a FooTable breakpoint entity.
 */
interface FooTableBreakpointInterface extends ConfigEntityInterface {

  /**
   * Gets the breakpoint.
   *
   * @return int
   *   The breakpoint.
   */
  public function getBreakpoint();

  /**
   * Returns a list of FooTable breakpoints including the default FooTable
   * breakpoint (All).
   *
   * @return static[]
   *   An array of FooTable breakpoint objects indexed by their IDs.
   */
  public static function loadAll();

}

Interfaces

Namesort descending Description
FooTableBreakpointInterface Provides an interface defining a FooTable breakpoint entity.