ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilPreviewSetupConfig.php
Go to the documentation of this file.
1 <?php
2 
19 use ILIAS\Setup;
20 
21 class ilPreviewSetupConfig implements Setup\Config
22 {
23  protected ?string $path_to_ghostscript;
24 
25  public function __construct(
26  ?string $path_to_ghostscript
27  ) {
28  $this->path_to_ghostscript = $this->toLinuxConvention($path_to_ghostscript);
29  }
30 
31  protected function toLinuxConvention(?string $p): ?string
32  {
33  if (!$p) {
34  return null;
35  }
36  return preg_replace("/\\\\/", "/", $p);
37  }
38 
39  public function getPathToGhostscript(): ?string
40  {
42  }
43 }
__construct(?string $path_to_ghostscript)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...