ILIAS  release_8 Revision v8.23
class.ilCertificateXlstProcess.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
25 {
26  public function process(array $args, array $params): string
27  {
28  $xh = xslt_create();
29 
30  $output = xslt_process(
31  $xh,
32  "arg:/_xml",
33  "arg:/_xsl",
34  null,
35  $args,
36  $params
37  );
38 
39  xslt_error($xh);
40  xslt_free($xh);
41 
42  return $output;
43  }
44 }
xslt_create()
if(! $DIC->user() ->getId()||!ilLTIConsumerAccess::hasCustomProviderCreationAccess()) $params
Definition: ltiregstart.php:33
xslt_free(&$proc)
xslt_error(&$proc)
process(array $args, array $params)