resolveURL() публичный статический Метод

Устаревший: This method will be removed in SSP 2.0. Please use SimpleSAML\Utils\HTTP::resolveURL() instead.
public static resolveURL ( $url, $base = null )
function showEntry($t, $metadata, $favourite = FALSE)
{
    $basequerystring = '?' . 'entityID=' . urlencode($t->data['entityID']) . '&' . 'return=' . urlencode($t->data['return']) . '&' . 'returnIDParam=' . urlencode($t->data['returnIDParam']) . '&idpentityid=';
    $extra = $favourite ? ' favourite' : '';
    $html = '<a class="metaentry' . $extra . '" href="' . $basequerystring . urlencode($metadata['entityid']) . '">';
    $html .= '' . htmlspecialchars(getTranslatedName($t, $metadata)) . '';
    #print_r($metadata['scopes']);
    // if (!empty($idpentry['description'])) {
    // 	$html .= '	<p>' . htmlspecialchars($t->t('idpdesc_' . $metadata['entityid'])) . '<br />';
    // }
    if (array_key_exists('icon', $metadata) && $metadata['icon'] !== NULL) {
        $iconUrl = SimpleSAML_Utilities::resolveURL($metadata['icon']);
        $html .= '<img alt="Icon for identity provider" class="entryicon" src="' . htmlspecialchars($iconUrl) . '" />';
    }
    // $html .= '<input id="preferredidp" type="submit" name="idp_' .
    // 	htmlspecialchars($metadata['entityid']) . '" value="' .
    // 	$t->t('select') . '" /></p>';
    $html .= '</a>';
    return $html;
}
Пример #2
0
 /**
  * Normalizes a URL to an absolute URL and validate it.
  *
  * In addition to resolving the URL, this function makes sure that it is
  * a link to a http or https site.
  *
  * @param string $url  The relative URL.
  * @return string  An absolute URL for the given relative URL.
  */
 public static function normalizeURL($url)
 {
     assert('is_string($url)');
     $url = SimpleSAML_Utilities::resolveURL($url, SimpleSAML_Utilities::selfURL());
     /* Verify that the URL is to a http or https site. */
     if (!preg_match('@^https?://@i', $url)) {
         throw new SimpleSAML_Error_Exception('Invalid URL: ' . $url);
     }
     return $url;
 }
Пример #3
0
    echo '<div class="preferredidp">';
    echo '	<img src="/' . $this->data['baseurlpath'] . 'resources/icons/experience/gtk-about.64x64.png" style="float: right" alt="' . $this->t('icon_prefered_idp') . '" />';
    if (array_key_exists('icon', $idpentry) && $idpentry['icon'] !== NULL) {
        $iconUrl = SimpleSAML_Utilities::resolveURL($idpentry['icon']);
        echo '<img style="float: left; margin: 1em; padding: 3px; border: 1px solid #999" src="' . htmlspecialchars($iconUrl) . '" />';
    }
    echo "\n" . '	<h3 style="margin-top: 8px">' . htmlspecialchars($this->t('idpname_' . $idpentry['entityid'])) . '</h3>';
    if (!empty($idpentry['description'])) {
        echo '	<p>' . htmlspecialchars($this->t('idpdesc_' . $idpentry['entityid'])) . '<br />';
    }
    echo '<input id="preferredidp" type="submit" name="idp_' . htmlspecialchars($idpentry['entityid']) . '" value="' . $this->t('select') . '" /></p>';
    echo '</div>';
}
foreach ($this->data['idplist'] as $idpentry) {
    if ($idpentry['entityid'] != $this->data['preferredidp']) {
        if (array_key_exists('icon', $idpentry) && $idpentry['icon'] !== NULL) {
            $iconUrl = SimpleSAML_Utilities::resolveURL($idpentry['icon']);
            echo '<img style="clear: both; float: left; margin: 1em; padding: 3px; border: 1px solid #999" src="' . htmlspecialchars($iconUrl) . '" />';
        }
        echo "\n" . '	<h3 style="margin-top: 8px">' . htmlspecialchars($this->t('idpname_' . $idpentry['entityid'])) . '</h3>';
        if (!empty($idpentry['description'])) {
            echo '	<p>' . htmlspecialchars($this->t('idpdesc_' . $idpentry['entityid'])) . '<br />';
        }
        echo '<input type="submit" name="idp_' . htmlspecialchars($idpentry['entityid']) . '" value="' . $this->t('select') . '" /></p>';
    }
}
?>
		</form>
		
<?php 
$this->includeAtTemplateBase('includes/footer.php');