Ejemplo n.º 1
0
 /**
  * Show the Session Catalogue with filtered session by a query term
  * @param array $limit
  */
 public function sessionListBySearch(array $limit)
 {
     $q = isset($_REQUEST['q']) ? Security::remove_XSS($_REQUEST['q']) : null;
     $hiddenLinks = isset($_GET['hidden_links']) ? intval($_GET['hidden_links']) == 1 : false;
     $courseUrl = CourseCategory::getCourseCategoryUrl(1, $limit['length'], null, 0, 'subscribe');
     $searchDate = isset($_POST['date']) ? $_POST['date'] : date('Y-m-d');
     $sessions = $this->model->browseSessionsBySearch($q, $limit);
     $sessionsBlocks = $this->getFormatedSessionsBlock($sessions);
     echo Container::getTemplating()->render('@temaplte_style/auth/session_catalog.html.twig', ['show_courses' => CoursesAndSessionsCatalog::showCourses(), 'show_sessions' => CoursesAndSessionsCatalog::showSessions(), 'show_tutor' => api_get_setting('session.show_session_coach') === 'true' ? true : false, 'course_url' => $courseUrl, 'already_subscribed_label' => $this->getAlreadyRegisteredInSessionLabel(), 'hidden_links' => $hiddenLinks, 'search_token' => Security::get_token(), 'search_date' => Security::remove_XSS($searchDate), 'search_tag' => Security::remove_XSS($q), 'sessions' => $sessionsBlocks]);
 }
Ejemplo n.º 2
0
    $form .= '</div>';
    $form .= '</form>';
    echo $form;
    ?>
    </div>
    </div>
<?php 
    if ($showSessions) {
        ?>
        <div class="col-md-4">
            <h5><?php 
        echo get_lang('Sessions');
        ?>
</h5>
            <a class="btn btn-default btn-block" href="<?php 
        echo CourseCategory::getCourseCategoryUrl(1, $pageLength, null, 0, 'display_sessions');
        ?>
">
                <?php 
        echo get_lang('SessionList');
        ?>
            </a>
        </div>
    <?php 
    }
    ?>
</div>
 <?php 
}
?>
<div class="row">