You are here

function og_mail_urls in Organic groups 5.2

Same name and namespace in other branches
  1. 5 og.module \og_mail_urls()
  2. 5.7 og.module \og_mail_urls()
1 call to og_mail_urls()
og_mail_output in ./og.module

File

./og.module, line 1764

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;
}