FooTableBreakpointInterface.php in FooTable 8.2
Namespace
Drupal\footable\EntityFile
src/Entity/FooTableBreakpointInterface.phpView 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
Name | Description |
---|---|
FooTableBreakpointInterface | Provides an interface defining a FooTable breakpoint entity. |