53 'title_ASC' =>
'cert_sortable_by_title_asc',
54 'title_DESC' =>
'cert_sortable_by_title_desc',
55 'date_ASC' =>
'cert_sortable_by_issue_date_asc',
56 'date_DESC' =>
'cert_sortable_by_issue_date_desc',
85 GuzzleHttp\Psr7\Request
$request = null,
95 $logger = $DIC->logger()->cert();
112 if (
$user === null) {
113 $user = $DIC->user();
158 $this->
language->loadLanguageModule(
'cert');
159 $this->
language->loadLanguageModule(
'cert');
167 return 'listCertificates';
177 $nextClass = $this->controller->getNextClass($this);
178 $cmd = $this->controller->getCmd();
180 if (!$this->certificateSettings->get(
'active')) {
181 $this->controller->returnToParent($this);
184 $this->
template->setTitle($this->
language->txt(
'obj_cert'));
186 switch ($nextClass) {
188 if (!method_exists($this, $cmd)) {
205 if (!$this->certificateSettings->get(
'active')) {
206 $this->controller->redirect($this);
214 $this->
language->txt(
'certificate_no_object_title')
218 $data = $provider->fetchDataSet(
219 $this->
user->getId(),
221 'order_field' => explode(
'_', $sorting)[0],
222 'order_direction' => explode(
'_', $sorting)[1],
223 'language' => $this->
user->getLanguage()
230 if (count(
$data[
'items']) > 0) {
234 foreach ($this->sortationOptions as $fieldAndDirection => $lngVariable) {
238 $sortViewControl = $this->uiFactory
241 ->withLabel($this->
language->txt($this->sortationOptions[$sorting]))
242 ->withTargetURL($this->controller->getLinkTarget($this,
'applySortation'),
'sort_by');
243 $uiComponents[] = $sortViewControl;
245 foreach (
$data[
'items'] as $certificateData) {
246 $thumbnailImagePath = $certificateData[
'thumbnail_image_path'];
248 if ($thumbnailImagePath === null
249 || $thumbnailImagePath ===
'' 250 || !$this->filesystem->has($thumbnailImagePath)
255 $cardImage = $this->uiFactory->image()->standard(
257 $certificateData[
'title']
263 if (strlen($certificateData[
'description']) > 0) {
264 $sections[] = $this->uiFactory->listing()->descriptive([
265 $this->
language->txt(
'cert_description_label') => $certificateData[
'description']
272 $sections[] = $this->uiFactory->listing()->descriptive([
279 $objectTypeIcon = $this->uiFactory
282 ->standard($certificateData[
'obj_type'], $certificateData[
'obj_type'],
'small');
284 $objectTitle = $certificateData[
'title'];
286 if (count($refIds) > 0) {
287 foreach ($refIds as
$refId) {
288 if ($this->access->checkAccess(
'read',
'', $refId)) {
289 $objectTitle = $this->uiRenderer->render(
297 $sections[] = $this->uiFactory->listing()->descriptive([$this->
language->txt(
'cert_object_label') => implode(
'', [
298 $this->uiRenderer->render($objectTypeIcon),
302 $this->controller->setParameter($this,
'certificate_id', $certificateData[
'id']);
303 $downloadHref = $this->controller->getLinkTarget($this,
'download');
304 $this->controller->clearParameters($this);
305 $sections[] = $this->uiFactory->button()->standard(
'Download', $downloadHref);
307 $card = $this->uiFactory
309 ->standard($certificateData[
'title'], $cardImage)
310 ->withSections($sections);
315 $deck = $this->uiFactory->deck($cards)->withNormalCardsSize();
317 $uiComponents[] = $this->uiFactory->divider()->horizontal();
319 $uiComponents[] = $deck;
324 $this->
template->setContent($this->uiRenderer->render($uiComponents));
333 if (!array_key_exists($sorting, $this->sortationOptions)) {
346 if (!array_key_exists($sorting, $this->sortationOptions)) {
361 $user = $DIC->user();
364 $pdfGenerator =
new ilPdfGenerator($this->userCertificateRepository, $this->certificateLogger);
366 $userCertificateId = (int) $this->request->getQueryParams()[
'certificate_id'];
369 $userCertificate = $this->userCertificateRepository->fetchCertificate($userCertificateId);
370 if ((
int) $userCertificate->getUserId() !== (int)
$user->getId()) {
371 throw new ilException(sprintf(
'User "%s" tried to access certificate: "%s"',
$user->getLogin(), $userCertificateId));
374 $this->certificateLogger->warning($exception->getMessage());
381 $this->certificateLogger,
384 $this->
language->txt(
'error_creating_certificate_pdf')
387 $pdfAction->
downloadPdf($userCertificate->getUserId(), $userCertificate->getObjId());
$userCertificateRepository
An entity that renders components to a string output.
Class ilPdfGeneratorConstantsTest.
This class provides processing control methods.
Class ChatMainBarProvider .
static get($a_var)
Get a value.
static set($a_var, $a_val)
Set a value.
static setUseRelativeDates($a_status)
set use relative dates
static formatDate(ilDateTime $date, $a_skip_day=false, $a_include_wd=false, $include_seconds=false)
Format a date public.
static _getAllReferences($a_id)
get all reference ids of object
static useRelativeDates()
check if relative dates are used
Interface ilAccessHandler.
static sendInfo($a_info="", $a_keep=false)
Send Info Message to Screen.
const SORTATION_SESSION_KEY
This is how the factory for UI elements looks.
static getImagePath($img, $module_path="", $mode="output", $offline=false)
get image path (for images located in a template directory)
static signFile($path_to_file)
static sendFailure($a_info="", $a_keep=false)
Send Failure Message to Screen.
__construct(ilTemplate $template=null, ilCtrl $controller=null, ilLanguage $language=null, ilObjUser $user=null, ilUserCertificateRepository $userCertificateRepository=null, GuzzleHttp\Psr7\Request $request=null, ilLogger $certificateLogger=null, ilSetting $certificateSettings=null, Factory $uiFactory=null, Renderer $uiRenderer=null, \ilAccessHandler $access=null, \ILIAS\Filesystem\Filesystem $filesystem=null)
Just a wrapper class to create Unit Test for other classes.
Component logger with individual log levels by component id.
static getWebspaceDir($mode="filesystem")
get webspace directory
static _getLink($a_ref_id, $a_type='', $a_params=array(), $append="")
Class FlySystemFileAccessTest.
downloadPdf(int $userId, int $objectId)