outlayer-8.x-1.4/src/OutlayerManagerInterface.php
src/OutlayerManagerInterface.php
<?php
namespace Drupal\outlayer;
use Drupal\gridstack\GridStackManagerInterface;
/**
* Defines re-usable services and functions for outlayer plugins.
*/
interface OutlayerManagerInterface extends GridStackManagerInterface {
/**
* Extracts grid custom.
*/
public function extractGridCustom(array $settings): array;
/**
* Gets the layout library specific to Isotope layouts.
*/
public function getIsotopeExtraLibrary(array $attach): ?string;
}
