function theme_registration_link in Entity Registration 8
Same name and namespace in other branches
- 8.2 registration.module \theme_registration_link()
- 7.2 registration.module \theme_registration_link()
- 7 registration.module \theme_registration_link()
Theme handler for registration links.
Parameters
array $variables: Contains the label and path for the link.
File
- ./
registration.module, line 965
Code
function theme_registration_link($variables) {
$output = '';
$registration_label = $variables['label'];
$registration_path = $variables['path'];
// @FIXME
// l() expects a Url object, created from a route name or external URI.
// $output .= l($registration_label, $registration_path);
return $output;
}