function og_mail_urls in Organic groups 5.7
Same name and namespace in other branches
- 5 og.module \og_mail_urls()
- 5.2 og.module \og_mail_urls()
1 call to og_mail_urls()
- og_mail_output in ./
og.module
File
- ./
og.module, line 2047
Code
function og_mail_urls($url = 0) {
static $urls = array();
if ($url) {
$urls[] = strpos($url, '://') ? $url : url($url, NULL, NULL, 1);
return count($urls);
}
return $urls;
}