當前位置: 首頁>>代碼示例>>PHP>>正文


PHP HTTP::resolveURL方法代碼示例

本文整理匯總了PHP中SimpleSAML\Utils\HTTP::resolveURL方法的典型用法代碼示例。如果您正苦於以下問題:PHP HTTP::resolveURL方法的具體用法?PHP HTTP::resolveURL怎麽用?PHP HTTP::resolveURL使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在SimpleSAML\Utils\HTTP的用法示例。


在下文中一共展示了HTTP::resolveURL方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: showEntry

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)) . '';
    if (array_key_exists('icon', $metadata) && $metadata['icon'] !== NULL) {
        $iconUrl = \SimpleSAML\Utils\HTTP::resolveURL($metadata['icon']);
        $html .= '<img alt="Icon for identity provider" class="entryicon" src="' . htmlspecialchars($iconUrl) . '" />';
    }
    $html .= '</a>';
    return $html;
}
開發者ID:SysBind,項目名稱:simplesamlphp,代碼行數:13,代碼來源:disco-tpl.php

示例2: resolveURL

 /**
  * @deprecated This method will be removed in SSP 2.0. Please use SimpleSAML\Utils\HTTP::resolveURL() instead.
  */
 public static function resolveURL($url, $base = NULL)
 {
     return \SimpleSAML\Utils\HTTP::resolveURL($url, $base);
 }
開發者ID:jstormes,項目名稱:simplesamlphp,代碼行數:7,代碼來源:Utilities.php

示例3: htmlspecialchars

    echo '<div class="preferredidp">';
    echo '	<img src="/' . $this->data['baseurlpath'] . 'resources/icons/experience/gtk-about.64x64.png" class="float-r" alt="' . $this->t('icon_prefered_idp') . '" />';
    if (array_key_exists('icon', $idpentry) && $idpentry['icon'] !== NULL) {
        $iconUrl = \SimpleSAML\Utils\HTTP::resolveURL($idpentry['icon']);
        echo '<img class="float-l" style="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\Utils\HTTP::resolveURL($idpentry['icon']);
            echo '<img class="float-l" style="clear: both; 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');
開發者ID:tractorcow,項目名稱:simplesamlphp,代碼行數:31,代碼來源:selectidp-links.php


注:本文中的SimpleSAML\Utils\HTTP::resolveURL方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。