Lines Matching defs:location
157 foreach ($cssData['files'] as $file => $location) {
160 echo css_loadfile($file, $location);
406 * given location prefix
409 * @param string $location
412 function css_loadfile($file, $location = '')
415 return $css_file->load($location);
426 protected $location; // base url location of the CSS/Less file
439 * @param string $location base url for this file
442 public function load($location = '')
447 if (!$location) return $css;
449 $this->location = $location;
483 * to the appropriate dokuwiki root location as described in the code
493 } elseif (str_ends_with($match[3], '.less')) { // a less file import? - requires a file system location
498 $match[3] = $this->location . $match[3];