19 declare(strict_types=1);
52 return new Result\Ok($value);
74 if (!$this->colorfactory) {
75 $this->colorfactory =
new Color\Factory();
77 return $this->colorfactory->build($value);
85 public function uri(
string $uri_string):
URI 87 return new URI($uri_string);
99 if (is_string($size)) {
101 if (!preg_match(
"/(\d+)\s*([a-zA-Z]+)/", $size, $match)) {
102 throw new \InvalidArgumentException(
"'$size' can't be interpreted as data size.");
104 return $this->
dataSize((
int) $match[1], $match[2]);
107 throw new \InvalidArgumentException(
108 "Expected second argument to be a unit for data, '$unit' is unknown." 112 return new DataSize($size * $unit_size, $unit_size);
122 return new ClientId($clientId);
140 return new Alphanumeric($value);
156 return new Range($start, $length);
162 public function order(
string $subject,
string $direction):
Order 164 return new Order($subject, $direction);
178 return new Link($label, $url);
188 if (!$this->dimensionfactory) {
198 public function dataset(array $dimensions, array $dimension_groups = []):
Chart\Dataset
205 if (
null === $this->html_metadata_factory) {
214 if (
null === $this->open_graph_metadata_factory) {
228 if ($this->text_factory ===
null) {
229 $md_format = new \ILIAS\Refinery\String\MarkdownFormattingToHTML();
230 $this->text_factory = new \ILIAS\Data\Text\Factory(
231 new Text\MarkdownFactory(
232 new Text\Shape\Markdown($md_format),
233 new Text\Shape\SimpleDocumentMarkdown($md_format),
234 new Text\Shape\WordOnlyMarkdown($md_format)
color($value)
Color is a data type representing a color in HTML.
languageTag(string $language_tag)
Color expresses a certain color by giving the mixing ratio in the RGB color space.
Meta Html OpenGraph Factory $open_graph_metadata_factory
static fromString(string $string)
error($e)
Get an error result.
Text Factory $text_factory
This class provides the data size with additional information to remove the work to calculate the siz...
A password is used as part of credentials for authentication.
This class represents a valid language tag that should be used instead of plain strings.
Both the subject and the direction need to be specified when expressing an order. ...
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static array $abbreviations
dataSize($size, ?string $unit=null)
Represents the size of some data.
positiveInteger(int $value)
Meta Html Factory $html_metadata_factory
link(string $label, URI $url)
Dimension Factory $dimensionfactory
Color Factory $colorfactory
uri(string $uri_string)
Object representing an uri valid according to RFC 3986 with restrictions imposed on valid characters ...
clientId(string $clientId)
range(int $start, int $length)
order(string $subject, string $direction)
ok($value)
Get an ok result.
dataset(array $dimensions, array $dimension_groups=[])
A version number that consists of three numbers (major, minor, patch).
A simple class to express a naive range of whole positive numbers.