'; $o .= '

' . t('Public Hubs') . '

'; $o .= '
' . t('The listed hubs allow public registration for the $Projectname network. All hubs in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some hubs may require subscription or provide tiered service plans. The hub itself may provide additional details.') . '
' . EOL; $ret = z_fetch_url($url); if($ret['success']) { $j = json_decode($ret['body'],true); if($j) { $o .= ''; if($j['sites']) { foreach($j['sites'] as $jj) { if($jj['project'] !== Zotlabs\Project\System::get_platform_name()) continue; $host = strtolower(substr($jj['url'],strpos($jj['url'],'://')+3)); $rate_links = ((local_channel()) ? '' : ''); $location = ''; if(!empty($jj['location'])) { $location = '

' . $jj['location'] . '

'; } else { $location = '
 '; } $urltext = str_replace(array('https://'), '', $jj['url']); $o .= '' . $rate_links . ''; } } $o .= '
' . t('Hub URL') . '' . t('Access Type') . '' . t('Registration Policy') . '' . t('Ratings') . '
' . t('Rate') . '
' . $urltext . '' . $location . '' . $jj['access'] . '' . $jj['register'] . ' ' . t('View') . '
'; $o .= '
'; } } return $o; }