You are here

public function Profile::url in Profile 2 7.2

Same name and namespace in other branches
  1. 7 profile2.module \Profile::url()

Returns the full url() for the profile.

File

./profile2.module, line 1203
Support for configurable user profiles.

Class

Profile
The class used for profile entities.

Code

public function url() {
  $uri = $this
    ->uri();
  return url($uri['path'], $uri);
}