ImportExportPlugin::pluginUrl PHP Метод

pluginUrl() публичный Метод

Generate a URL into the plugin.
См. также: calling conventions at http://www.smarty.net/docsv2/en/api.register.function.tpl
public pluginUrl ( $params, &$smarty ) : string
$params array
$smarty Smarty
Результат string
    function pluginUrl($params, &$smarty)
    {
        $dispatcher = $this->_request->getDispatcher();
        return $dispatcher->url($this->_request, ROUTE_PAGE, null, 'management', 'importexport', array_merge(array('plugin', $this->getName(), isset($params['path']) ? $params['path'] : array())));
    }