Phalcon\Paginator\Pager\Layout::parseUrlTemplate PHP Метод

parseUrlTemplate() защищенный Метод

protected parseUrlTemplate ( array $options = [] ) : string
$options array
Результат string
    protected function parseUrlTemplate(array $options = [])
    {
        $str = '';
        // If given page is the current active one
        if ($options['page_number'] == $this->pager->getCurrentPage()) {
            $str = $this->parseMaskReplacements($this->selectedTemplate);
        }
        // Possible attempt where Selected == Template
        if ($str == '') {
            $str = $this->parseMaskReplacements($this->template);
        }
        return $str;
    }