Horde_Core_Block::_ajaxUpdateUrl PHP Méthode

_ajaxUpdateUrl() protected méthode

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