12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- <?php
- /* For licensing terms, see /license.txt */
- /**
- * Search user certificates if them are publics.
- *
- * @author Angel Fernando Quiroz Campos <angel.quiroz@beeznest.com>
- *
- * @package chamilo.gradebook
- */
- $cidReset = true;
- require_once __DIR__.'/../inc/global.inc.php';
- if (api_get_setting('allow_public_certificates') != 'true') {
- api_not_allowed(
- true,
- Display::return_message(get_lang('Certificates are not publicly available'), 'warning')
- );
- }
- $userId = isset($_GET['id']) ? intval($_GET['id']) : 0;
- $userList = $userInfo = $courseList = $sessionList = [];
- $searchForm = new FormValidator('search_form', 'post', null, null);
- $searchForm->addText('firstname', get_lang('First name'));
- $searchForm->addText('lastname', get_lang('Last name'));
- $searchForm->addButtonSearch();
- if ($searchForm->validate()) {
- $firstname = $searchForm->getSubmitValue('firstname');
- $lastname = $searchForm->getSubmitValue('lastname');
- $userList = UserManager::getUsersByName($firstname, $lastname);
- if (empty($userList)) {
- Display::addFlash(
- Display::return_message(get_lang('No results found'), 'warning')
- );
- header('Location: '.api_get_self());
- exit;
- }
- } elseif ($userId > 0) {
- $userInfo = api_get_user_info($userId);
- if (empty($userInfo)) {
- Display::addFlash(
- Display::return_message(get_lang('No user'), 'warning')
- );
- header('Location: '.api_get_self());
- exit;
- }
- $courseList = GradebookUtils::getUserCertificatesInCourses($userId, false);
- $sessionList = GradebookUtils::getUserCertificatesInSessions(
- $userId,
- false
- );
- if (empty($courseList) && empty($sessionList)) {
- Display::addFlash(
- Display::return_message(
- sprintf(
- get_lang('User %s hast not acquired any certificate yet'),
- $userInfo['complete_name']
- ),
- 'warning'
- )
- );
- header('Location: '.api_get_self());
- exit;
- }
- }
- $template = new Template(get_lang('Search certificates'));
- $template->assign('search_form', $searchForm->returnForm());
- $template->assign('user_list', $userList);
- $template->assign('user_info', $userInfo);
- $template->assign('course_list', $courseList);
- $template->assign('session_list', $sessionList);
- $templateName = $template->get_template('gradebook/search.tpl');
- $content = $template->fetch($templateName);
- $template->assign('header', get_lang('Search certificates'));
- $template->assign('content', $content);
- $template->display_one_col_template();
|