ViewsStylePluginBase.inc in Jssor Slider 7
File
src/shims/ViewsStylePluginBase.inc
View source
<?php
namespace Drupal\views\Plugin\views\style;
use Drupal\Core\Form\FormStateInterface;
class StylePluginBase {
public $options = array();
function __construct($style_plugin = null) {
if ($style_plugin) {
$this->options = $style_plugin->options;
}
}
protected function defineOptions() {
}
function options_form(&$form, &$form_state) {
}
function buildOptionsForm(&$form, FormStateInterface $form_state) {
}
function t($string, $args = array(), $options = array()) {
return t($string, $args, $options);
}
}