You are here

public function EventHandler::getUrl in Services Client 7.2

Get path prefixed with event specific URL.

Parameters

string $path: Path that should be appended to URL, i.e.

Return value

string Full path prefixed with event URL.

2 calls to EventHandler::getUrl()
EntitySaveHandler::configForm in include/event.inc
Configuration form.
EventHandler::configForm in include/event.inc
Configuration form.

File

include/event.inc, line 413

Class

EventHandler
Event handler plugin.

Code

public function getUrl($path = '') {
  return $this
    ->getBaseUrl() . (!empty($path) ? '/' . $path : '');
}