ILIAS  trunk Revision v12.0_alpha-1541-g23eaa5e013d
Group.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
28
29class Group
30{
31 public function toString(): Transformation
32 {
33 return new ToStringTransformation();
34 }
35
36 public function toSvgQrCode(
37 ErrorCorrectionLevel $error_correction_level = ErrorCorrectionLevel::MEDIUM,
38 int $size_in_px = 400,
40 return new ToSvgQrCodeTransformation($error_correction_level, $size_in_px);
41 }
42
43 public function fromSvg(): Transformation
44 {
45 return new FromSvgTransformation();
46 }
47}
toSvgQrCode(ErrorCorrectionLevel $error_correction_level=ErrorCorrectionLevel::MEDIUM, int $size_in_px=400,)
Definition: Group.php:36
return['delivery_method'=> 'php',]
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
A transformation is a function from one datatype to another.
ErrorCorrectionLevel
Error correction levels as defined by ISO/IEC 18004.