2015-08-23 22:38:18 +02:00
< ? php
function pubsites_content ( & $a ) {
require_once ( 'include/dir_fns.php' );
$dirmode = intval ( get_config ( 'system' , 'directory_mode' ));
if (( $dirmode == DIRECTORY_MODE_PRIMARY ) || ( $dirmode == DIRECTORY_MODE_STANDALONE )) {
$url = z_root () . '/dirsearch' ;
}
if ( ! $url ) {
$directory = find_upstream_directory ( $dirmode );
$url = $directory [ 'url' ] . '/dirsearch' ;
}
$url .= '/sites' ;
2016-03-20 08:06:33 +01:00
$o .= '<div class="generic-content-wrapper">' ;
2015-11-15 19:51:39 +01:00
2016-03-20 08:06:33 +01:00
$o .= '<div class="section-title-wrapper"><h2>' . t ( 'Public Hubs' ) . '</h2></div>' ;
2015-08-23 22:38:18 +02:00
2016-03-20 08:06:33 +01:00
$o .= '<div class="section-content-tools-wrapper"><div class="descriptive-text">' .
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 <strong>may</strong> provide additional details.' ) . '</div>' . EOL ;
2015-08-23 22:38:18 +02:00
$ret = z_fetch_url ( $url );
if ( $ret [ 'success' ]) {
$j = json_decode ( $ret [ 'body' ], true );
if ( $j ) {
2016-03-20 08:06:33 +01:00
$o .= '<table class="table table-striped table-hover"><tr><td>' . t ( 'Hub URL' ) . '</td><td>' . t ( 'Access Type' ) . '</td><td>' . t ( 'Registration Policy' ) . '</td><td colspan="2">' . t ( 'Ratings' ) . '</td></tr>' ;
2015-08-23 22:38:18 +02:00
if ( $j [ 'sites' ]) {
foreach ( $j [ 'sites' ] as $jj ) {
2016-03-20 08:06:33 +01:00
if ( $jj [ 'project' ] !== Zotlabs\Project\System :: get_platform_name ())
continue ;
2015-08-23 22:38:18 +02:00
$host = strtolower ( substr ( $jj [ 'url' ], strpos ( $jj [ 'url' ], '://' ) + 3 ));
$rate_links = (( local_channel ()) ? '<td><a href="rate?f=&target=' . $host . '" class="btn-btn-default"><i class="icon-check"></i> ' . t ( 'Rate' ) . '</a></td>' : '' );
2016-03-20 08:06:33 +01:00
$location = '' ;
if ( ! empty ( $jj [ 'location' ])) {
$location = '<p title="' . t ( 'Location' ) . '" style="margin: 5px 5px 0 0; text-align: right"><i class="icon-globe"></i> ' . $jj [ 'location' ] . '</p>' ;
}
else {
$location = '<br /> ' ;
}
$urltext = str_replace ( array ( 'https://' ), '' , $jj [ 'url' ]);
$o .= '<tr><td><a href="' . (( $jj [ 'sellpage' ]) ? $jj [ 'sellpage' ] : $jj [ 'url' ] . '/register' ) . '" ><i class="icon-link"></i> ' . $urltext . '</a>' . $location . '</td><td>' . $jj [ 'access' ] . '</td><td>' . $jj [ 'register' ] . '</td><td><a href="ratings/' . $host . '" class="btn-btn-default"><i class="icon-eye-open"></i> ' . t ( 'View' ) . '</a></td>' . $rate_links . '</tr>' ;
2015-08-23 22:38:18 +02:00
}
}
$o .= '</table>' ;
2015-11-15 19:51:39 +01:00
2016-03-20 08:06:33 +01:00
$o .= '</div></div>' ;
2015-11-15 19:51:39 +01:00
2015-08-23 22:38:18 +02:00
}
}
return $o ;
}