Horde_Core_Block::_ajaxUpdateUrl PHP Method

_ajaxUpdateUrl() protected method

Return the URL to use for AJAX update requests.
protected _ajaxUpdateUrl ( ) : Horde_Url
return 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;
    }