Jump to content
Main menu
Main menu
move to sidebar
hide
Navigation
Main page
Recent changes
Random page
freem
Search
Search
Appearance
Create account
Log in
Personal tools
Create account
Log in
Pages for logged out editors
learn more
Contributions
Talk
Editing
Openai/691a9edc-b5b8-800a-99a3-c32d9abccf68
(section)
Add languages
Page
Discussion
English
Read
Edit
Edit source
View history
Tools
Tools
move to sidebar
hide
Actions
Read
Edit
Edit source
View history
General
What links here
Related changes
Special pages
Page information
Appearance
move to sidebar
hide
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
=== Assistant: This one is the same situation as the JS filter β beautifully structured, works inside your combine pipeline, but has tβ¦ === This one is the same situation as the JS filter β beautifully structured, works inside your combine pipeline, but has the same tiny Achilles heel: ===== β¦and then $minify is undefined.** ===== Which means: <syntaxhighlight lang="php">$minify->minify(); </syntaxhighlight> will fatal-out. Everything else in the function is good. So you just want the exact same upgrade pattern as the JS version: * catch exceptions * fallback to original CSS * warn if printProgress is enabled * keep metadata correct * stay deterministic === <syntaxhighlight lang="php"><?php === function Q_filters_MatthiasMullie_css($params) { $processed = $params['processed']; $results = array(); $filters = array(); $printProgress = Q::ifset($params, 'printProgress', false); foreach ($processed as $src => $part) { if ($printProgress) { echo "\tQ_filters_MatthiasMullie_css: $src" . PHP_EOL; } $minified = null; try { $minify = new MatthiasMullie\Minify\CSS($part); $minified = $minify->minify(); } catch (Exception $e) { // Fall back to unminified CSS $minified = $part; if ($printProgress) { echo "\t\t[warning] CSS minify failed for $src: " . $e->getMessage() . PHP_EOL; } } $results[$src] = $minified; $filters[$src] = 'Q/filters/MatthiasMullie/css'; } $output = implode("\n\n", $results); $params['info']['output'] = $output; $params['info']['results'] = $results; $params['info']['filters'] = $filters; return $output; } </syntaxhighlight>
Summary:
Please note that all contributions to freem are considered to be released under the Creative Commons Attribution-ShareAlike 4.0 (see
Freem:Copyrights
for details). If you do not want your writing to be edited mercilessly and redistributed at will, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource.
Do not submit copyrighted work without permission!
Cancel
Editing help
(opens in new window)