ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
SVGDummyMachine.php
Go to the documentation of this file.
1 <?php
2 
20 
26 
31 {
32  public function __construct()
33  {
34  $this->load(
35  'svg_color_changing_machine',
36  'svg_color_changing'
37  );
38  }
39 
40 
41  #[\Override]
42  public function processStream(
43  FileInformation $information,
44  FileStream $stream,
45  FlavourDefinition $for_definition
46  ): \Generator {
47  $content = (string) $stream;
48 
49  $from_color = ':' . $for_definition->getColor() . ';';
50  $to_color = ':' . $for_definition->getToColor() . ';';
51  $content = str_replace($from_color, $to_color, $content);
52 
53  yield new Result(
54  $for_definition,
55  Streams::ofString($content)
56  );
57  }
58 }
processStream(FileInformation $information, FileStream $stream, FlavourDefinition $for_definition)
__construct()
FlavourMachines must be able to be created without further dependencies.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static ofString(string $string)
Creates a new stream with an initial value.
Definition: Streams.php:41
load(string $id, ?string $can_handle_definition_id=null, string $depends_on_engine=NoEngine::class)
The base interface for all filesystem streams.
Definition: FileStream.php:31