示例#1
0
 /**
  * Gets the path for output. Checks the plugin property
  * and returns the correct path.
  *
  * @return string Path to output.
  */
 public function getPath()
 {
     $path = parent::getPath();
     if (!empty($this->params['prefix'])) {
         $path .= $this->_camelize($this->params['prefix']) . DS;
     }
     return $path;
 }