ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilMathJaxFactory.php
Go to the documentation of this file.
1 <?php
2 
20 
25 {
27 
31  public function __construct()
32  {
33  global $DIC;
34  $this->template = $DIC->ui()->mainTemplate();
35  }
36 
41  {
42  return new ilMathJaxServer($config);
43  }
44 
48  public function image(string $a_tex, string $a_type, int $a_dpi): ilMathJaxImage
49  {
50  return new ilMathJaxImage($a_tex, $a_type, $a_dpi);
51  }
52 
56  public function template(): ilGlobalTemplateInterface
57  {
58  return $this->template;
59  }
60 }
Rendered MathJax image Supports image types SVG or PNG Files are stored in the web file system of ili...
Factory for objects used by ilMathJax.
if(!array_key_exists('PATH_INFO', $_SERVER)) $config
Definition: metadata.php:85
ilGlobalTemplateInterface $template
Global Mathjax configuration.
server(ilMathJaxConfig $config)
Create an ilMathJaxServer object.
image(string $a_tex, string $a_type, int $a_dpi)
Create an ilMathJaxImage object.
global $DIC
Definition: feed.php:28
__construct()
Constructor.
Class for calling theMathJax server The server calls use cURL, if the extension is loaded...