예제 #1
0
 protected function addPath($type, $path)
 {
     // Just force path to array
     settype($path, 'array');
     if (!isset($this->paths[$type])) {
         $this->paths[$type] = array();
     }
     // Loop through the path directories
     foreach ($path as $dir) {
         // No surrounding spaces allowed!
         $dir = rtrim(MPath::check($dir, '/'), '/') . '/';
         // Add to the top of the search dirs
         array_unshift($this->paths[$type], $dir);
     }
     return $this;
 }