Field_Reference::sortable PHP Method

sortable() public method

public sortable ( $x = UNDEFINED )
    public function sortable($x = UNDEFINED)
    {
        /** @type Field|bool $f */
        $f = $this->owner->hasElement($this->getDereferenced());
        if ($f) {
            $f->sortable($x);
        }
        return parent::sortable($x);
    }