Skip to content

Instantly share code, notes, and snippets.

@zooks
Created February 10, 2017 17:39
Show Gist options
  • Save zooks/f169b361257bb226967a8d4e6110b360 to your computer and use it in GitHub Desktop.
Save zooks/f169b361257bb226967a8d4e6110b360 to your computer and use it in GitHub Desktop.
inline CSS snippet for MODX Revolution
<?php
// [[!inline?&file=`css/critical.css`]]
$assetsPath = $modx->getOption('assets_path');
$file = !empty($file) ? $file : $modx->getOption('file', $scriptProperties, '');
$myfile = fopen($assetsPath . $file, "r");
if (!$myfile){ return "";}
$inlneCSS = "";
while(!feof($myfile)) {
$inlneCSS .= fgets($myfile);
}
fclose($myfile);
return $inlneCSS;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment