You are here

protected function Registration::defaultUri in Entity Registration 7.2

Same name and namespace in other branches
  1. 8.2 lib/registration.entity.inc \Registration::defaultUri()
  2. 7 lib/registration.entity.inc \Registration::defaultUri()

Specify URI.

Overrides Entity::defaultUri

File

lib/registration.entity.inc, line 191
Entity hooks and callbacks for registrations.

Class

Registration
Main class for Registration entities.

Code

protected function defaultUri() {
  return array(
    'path' => 'registration/' . $this
      ->internalIdentifier(),
  );
}