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


PHP UrlManager::get_access_url_from_session方法代碼示例

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


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

示例1: get_lang

        }
        if (!empty($_GET['user'])) {
            SessionManager::unsubscribe_user_from_session($sessionId, $_GET['user']);
        }
        break;
}
$sessionHeader = Display::page_header(Display::return_icon('session.png', get_lang('Session')) . ' ' . $sessionInfo['name'], null, 'h3');
$url = Display::url(Display::return_icon('edit.png', get_lang('Edit'), array(), ICON_SIZE_SMALL), "session_edit.php?page=resume_session.php&id={$sessionId}");
$sessionTitle = Display::page_subheader(get_lang('GeneralProperties') . $url);
$generalCoach = api_get_user_info($sessionInfo['id_coach']);
$sessionField = new ExtraField('session');
$extraFieldData = $sessionField->getDataAndFormattedValues($sessionId);
$multiple_url_is_on = api_get_multiple_access_url();
$urlList = [];
if ($multiple_url_is_on) {
    $urlList = UrlManager::get_access_url_from_session($sessionId);
}
$url = Display::url(Display::return_icon('edit.png', get_lang('Edit'), array(), ICON_SIZE_SMALL), "add_courses_to_session.php?page=resume_session.php&id_session={$sessionId}");
$courseListToShow = Display::page_subheader(get_lang('CourseList') . $url);
$courseListToShow .= '<table id="session-list-course" class="data_table">
<tr>
  <th width="35%">' . get_lang('CourseTitle') . '</th>
  <th width="30%">' . get_lang('CourseCoach') . '</th>
  <th width="10%">' . get_lang('UsersNumber') . '</th>
  <th width="25%">' . get_lang('Actions') . '</th>
</tr>';
if ($sessionInfo['nbr_courses'] == 0) {
    $courseListToShow .= '<tr>
			<td colspan="4">' . get_lang('NoCoursesForThisSession') . '</td>
		</tr>';
} else {
開發者ID:jloguercio,項目名稱:chamilo-lms,代碼行數:31,代碼來源:resume_session.php

示例2: elseif

 } elseif ($session['visibility'] == 2) {
     echo get_lang('Visible');
 } elseif ($session['visibility'] == 3) {
     echo api_ucfirst(get_lang('Invisible'));
 }
 ?>
 	</td>
 </tr>
 <?php 
 $multiple_url_is_on = api_get_multiple_access_url();
 if ($multiple_url_is_on) {
     echo '<tr><td>';
     echo 'URL';
     echo '</td>';
     echo '<td>';
     $url_list = UrlManager::get_access_url_from_session($id_session);
     foreach ($url_list as $url_data) {
         echo $url_data['url'] . '<br />';
     }
     echo '</td></tr>';
 }
 ?>
 </table>
 <br />
 <?php 
 echo Display::page_subheader(get_lang('CourseList') . $url);
 ?>
 <!--List of courses -->
 <table class="data_table">
 <tr>
   <th width="35%"><?php 
開發者ID:secuencia24,項目名稱:chamilo-lms,代碼行數:31,代碼來源:resume_session.php


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