You are here

private static function jssor_views_plugins_style::bootstrapClasses in Jssor Slider 7

Includes the needed shim classes to leverage existing D8 classes.

2 calls to jssor_views_plugins_style::bootstrapClasses()
jssor_views_plugins_style::options in ./jssor_views_plugins_style.inc
Set default options
jssor_views_plugins_style::options_form in ./jssor_views_plugins_style.inc
Provide a form to edit options for this plugin.

File

./jssor_views_plugins_style.inc, line 55

Class

jssor_views_plugins_style

Code

private static function bootstrapClasses() {
  $module = 'jssor';
  module_load_include('inc', $module, 'src/shims/Attribute');
  module_load_include('inc', $module, 'src/shims/FormStateInterface');
  module_load_include('inc', $module, 'plugins/views_plugin_style_default');
  module_load_include('inc', $module, 'src/shims/ViewsStylePluginBase');
  module_load_include('php', $module, 'src/Plugin/views/style/Jssor');
  module_load_include('inc', $module, 'src/JssorViewsStylePlugin');
}