Horde_Core_Block::_ajaxUpdateUrl PHP Метод

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

Return the URL to use for AJAX update requests.
protected _ajaxUpdateUrl ( ) : Horde_Url
Результат Horde_Url The update URL.
    protected function _ajaxUpdateUrl()
    {
        $ajax_url = $GLOBALS['registry']->getServiceLink('ajax')->add(array('app' => $this->getApp(), 'blockid' => get_class($this)));
        $ajax_url->pathInfo = 'blockUpdate';
        return $ajax_url;
    }