eZ\Publish\Core\FieldType\RichText\Converter\Xslt::getSortedCustomStylesheets PHP Method

getSortedCustomStylesheets() protected method

The order is from the lowest priority to the highest since in case of a conflict, the last loaded XSL template always wins.
protected getSortedCustomStylesheets ( ) : array
return array
    protected function getSortedCustomStylesheets()
    {
        $sortedStylesheets = array();
        ksort($this->customStylesheets);
        foreach ($this->customStylesheets as $stylesheets) {
            $sortedStylesheets = array_merge($sortedStylesheets, $stylesheets);
        }
        return $sortedStylesheets;
    }