gridstack-8.x-2.5/src/GridStackSkinInterface.php
src/GridStackSkinInterface.php
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | <?php namespace Drupal\gridstack; @trigger_error( 'The ' . __NAMESPACE__ . '\GridStackSkinInterface is deprecated in gridstack:8.x-2.0 and is removed from gridstack:8.x-2.5. Use \Drupal\gridstack\GridStackSkinPluginBase instead. See https://www.drupal.org/node/3107311' , E_USER_DEPRECATED); /** * Provides an interface defining GridStack skins. * * The hook_hook_info() is deprecated, and no resolution by 1/16/16: * #2233261: Deprecate hook_hook_info() * Postponed till D9 * * @todo remove from gridstack:8.x-2.5. */ interface GridStackSkinInterface {} |