Jump to content

Recommended Posts

Posted

I know that I have done this before, I just cant find the project, and cant remember if I used PHP or the API. Basically if a file is an SVG I want to display the code inline and not in an image tag.

Posted

?  @cb2004

Needed the exact same thing recently and read through the docs, trial & error and came up with the same solution. Should have known to search the forum

Posted
// requeire https://processwire.com/modules/file-validator-svg-sanitizer/ and 

$svgSanitizer = $this->wire()->modules->get('FileValidatorSvgSanitizer')->getSvgSanitizer();
$svgSanitizer->minify(true);
$svgSanitizer->removeXMLTag(true);

$data->setArray([
  'inline_svg' => $svgSanitizer->sanitize($this->wire()->files->fileGetContents($category->get('svg')->filename)),
]);

 

  • Like 2

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...