function theme_hosting_site_goto_link in Hosting 6.2
Same name and namespace in other branches
- 7.4 site/hosting_site.module \theme_hosting_site_goto_link()
- 7.3 site/hosting_site.module \theme_hosting_site_goto_link()
Theme function for site link.
1 theme call to theme_hosting_site_goto_link()
- _hosting_site_goto_link in site/
hosting_site.module - Generate a link allowing the user to log into their new site, or simply go to the site front page if the link has expired.
File
- site/
hosting_site.module, line 153
Code
function theme_hosting_site_goto_link($title, $url) {
$options['attributes']['class'] = 'hosting-goto-site-link';
$options['attributes']['target'] = '_blank';
return l($title, $url, $options);
}