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

__construct() public method

Construct a new link
public __construct ( Framework $Framework, null $field = null, null $label = null, array $options = [], array $defaultOrderBy = [] )
$Framework Devise\Support\Framework
$field null
$label null
$options array
$defaultOrderBy array
    public function __construct(Framework $Framework, $field = null, $label = null, $options = array(), $defaultOrderBy = array())
    {
        $this->field = $field;
        $this->label = $label;
        $this->options = $options;
        $this->defaultOrderBy = $defaultOrderBy;
        $this->Request = $Framework->Request;
        $this->Input = $Framework->Input;
    }