cb2004 Posted October 6, 2021 Share Posted October 6, 2021 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. Link to comment Share on other sites More sharing options...
cb2004 Posted October 6, 2021 Author Share Posted October 6, 2021 Answer here: Link to comment Share on other sites More sharing options...
psy Posted October 7, 2021 Share Posted October 7, 2021 ? @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 Link to comment Share on other sites More sharing options...
Zeka Posted October 7, 2021 Share Posted October 7, 2021 // 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)), ]); 2 Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now