Devise\Support\Sortable\Filter::__construct PHP Method

__construct() public method

public __construct ( $filterName, $replacementSelector, array $options = [], Framework $Framework )
$filterName
$replacementSelector
$options array
$Framework Devise\Support\Framework
    public function __construct($filterName, $replacementSelector, $options = array(), Framework $Framework)
    {
        $this->filterName = $filterName;
        $this->replacementSelector = $replacementSelector;
        $this->options = $options;
        $this->attributes = $this->getAttributesFromOptions($options);
        $this->View = $Framework->View;
    }