Lines Matching defs:stylesheets
57 * @return array with keys 'stylesheets' and 'replacements'
68 $stylesheets = []; // mode, file => base
83 $combined['stylesheets'] = [];
101 if (isset($config['stylesheets']) && is_array($config['stylesheets'])) {
102 foreach ($config['stylesheets'] as $inifile => $mode) {
104 $stylesheets = array_merge(
105 $stylesheets,
106 $this->getValidatedStyles($stylesheets, $inifile, $mode, $incbase, $webbase)
108 $combined['stylesheets'] = array_merge($combined['stylesheets'], $stylesheets);
129 * @param array $stylesheets
136 protected function getValidatedStyles($stylesheets, $file, $mode, $incbase, $webbase)
143 $stylesheets[$mode][$incbase . $basename . '.' . $newExtension] = $webbase;
152 $stylesheets[$mode][fullpath($incbase . $file)] = $webbase;
153 return $stylesheets;