19 declare(strict_types=1);
38 $this->config = new \ilMathJaxConfig(
39 (
bool) ($this->data[
'client_enabled'] ??
false),
40 (
string) ($this->data[
'client_polyfill_url'] ??
''),
41 (
string) ($this->data[
'client_script_url'] ??
''),
42 (
int) ($this->data[
'client_limiter'] ?? 0),
43 (
bool) ($this->data[
'server_enabled'] ??
false),
44 (
string) ($this->data[
'server_address'] ??
''),
45 (
int) ($this->data[
'server_timeout'] ?? 0),
46 (
bool) ($this->data[
'server_for_browser'] ??
false),
47 (
bool) ($this->data[
'server_for_export'] ??
false),
48 (
bool) ($this->data[
'server_for_pdf'] ??
false)
87 return isset($this->data[
'client_enabled']) && $this->config->isClientEnabled() !== $config->
isClientEnabled()
88 || isset($this->data[
'client_polyfill_url']) && $this->config->getClintPolyfillUrl() !== $config->
getClintPolyfillUrl()
89 || isset($this->data[
'client_script_url']) && $this->config->getClientScriptUrl() !== $config->
getClientScriptUrl()
90 || isset($this->data[
'client_limiter']) && $this->config->getClientLimiter() !== $config->
getClientLimiter()
91 || isset($this->data[
'server_enabled']) && $this->config->isServerEnabled() !== $config->
isServerEnabled()
92 || isset($this->data[
'server_address']) && $this->config->getServerAddress() !== $config->
getServerAddress()
93 || isset($this->data[
'server_timeout']) && $this->config->getServerAddress() !== $config->
getServerAddress()
94 || isset($this->data[
'server_for_browser']) && $this->config->isServerForBrowser() !== $config->
isServerForBrowser()
95 || isset($this->data[
'server_for_export']) && $this->config->isServerForExport() !== $config->
isServerForExport()
96 || isset($this->data[
'server_for_pdf']) && $this->config->isServerForPdf() !== $config->
isServerForPdf();
105 if (isset($this->data[
'client_enabled'])) {
108 if (isset($this->data[
'client_polyfill_url'])) {
111 if (isset($this->data[
'client_script_url'])) {
114 if (isset($this->data[
'client_limiter'])) {
117 if (isset($this->data[
'server_enabled'])) {
120 if (isset($this->data[
'server_address'])) {
123 if (isset($this->data[
'server_timeout'])) {
126 if (isset($this->data[
'server_for_browser'])) {
129 if (isset($this->data[
'server_for_export'])) {
132 if (isset($this->data[
'server_for_pdf'])) {
withClientLimiter(int $client_limiter)
Set the type of enclosing limiters for wich the embedded client-side Mathjax is configured.
getDataFromConfig(ilMathJaxConfig $config)
Get a data array from a config.
withServerTimeout(int $server_timeout)
Set the timeout (s) to wait for the result of the rendering server.
isServerForPdf()
Should the server-side rendingeing be used for PDF generation.
getClintPolyfillUrl()
Url of a javascript polyfill (needed by MathJax 3)
isApplicableTo(ilMathJaxConfig $config)
Check if the setup config can be applied to an existing stored config Only the values that are actual...
withClientScriptUrl(string $client_async_url)
Set the url of Mathjax script to be embedded on the page (for MathJax 3)
isServerForExport()
Should the server-side rendingeing be used for HTML exports.
Global Mathjax configuration.
applyTo(ilMathJaxConfig $config)
Apply the setup config to an existing stored config Only the values that are actually defined in the ...
withServerAddress(string $server_address)
Set the url of the Mathjax server.
isServerEnabled()
Is a server side rendering engine configured and enabled.
getServerAddress()
Url of Mathjax server.
withServerForPdf(bool $server_for_pdf)
Enable the server-side rendingeing for PDF generation.
getClientLimiter()
Type of enclosing limiters for wich the embedded client-side Mathjax is configured.
getClientScriptUrl()
Url of Mathjax script to be embedded with script tag on the page.
getConfig()
Get the MathJaxConfig object which is created from the data in config.json.
withClientEnabled(bool $client_enabled)
Enable latex code bing rendered in the browser.
withClientPolyfillUrl(string $client_js_url)
Set the url of a polyfill script neededby MathJax 3.
isClientEnabled()
Should latex code be rendered in the browser.
withServerEnabled(bool $server_enabled)
Enable a server side rendering engine configured and enabled.
withServerForExport(bool $server_for_export)
Enable the server-side rendingeing for HTML exports.
getServerTimeout()
timeout (s) to wait for the result of the rendering server
withServerForBrowser(bool $server_for_browser)
Enable the server-side rendingeing for browser output.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
isServerForBrowser()
Should the server-side rendingeing be used for browser output.
__construct(array $data)
Create the config fron a data array.