1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- <?php
- /* For licensing terms, see /license.txt */
- use \ChamiloSession as Session;
- /**
- * Search user certificates if them are publics
- * @author Angel Fernando Quiroz Campos <angel.quiroz@beeznest.com>
- * @package chamilo.gradebook
- */
- $cidReset = true;
- if (api_get_setting('course.allow_public_certificates') != 'true') {
- api_not_allowed(
- true,
- Display::return_message(get_lang('CertificatesNotPublic'), '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('FirstName'));
- $searchForm->addText('lastname', get_lang('LastName'));
- $searchForm->addButtonSearch();
- if ($searchForm->validate()) {
- $firstname = $searchForm->getSubmitValue('firstname');
- $lastname = $searchForm->getSubmitValue('lastname');
- $userList = UserManager::getUserByName($firstname, $lastname);
- if (empty($userList)) {
- Display::addFlash(
- Display::return_message(get_lang('NoResults'), '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('NoUser'), '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('TheUserXNotYetAchievedCertificates'), $userInfo['complete_name']),
- 'warning'
- )
- );
- header('Location: '.api_get_self());
- exit;
- }
- }
- //$template = new Template(get_lang('SearchCertificates'));
- $template = \Chamilo\CoreBundle\Framework\Container::getTwig();
- $template->addGlobal('search_form', $searchForm->returnForm());
- $template->addGlobal('user_list', $userList);
- $template->addGlobal('user_info', $userInfo);
- $template->addGlobal('course_list', $courseList);
- $template->addGlobal('session_list', $sessionList);
- $template->addGlobal('header', get_lang('SearchCertificates'));
- echo $template->render('@template_style/gradebook/search.html.twig');
|