/**
  * Get destination path for generated file.
  *
  * @return string
  */
 public function getPath()
 {
     return $this->getBasePath() . '/' . parent::getConfigGeneratorClassPath($this->getPathConfigNode(), true) . '/' . $this->getControllerName() . 'Controller.php';
 }
 /**
  * Get root namespace.
  *
  * @return string
  */
 public function getRootNamespace()
 {
     return parent::getRootNamespace() . parent::getConfigGeneratorClassPath($this->getPathConfigNode());
 }
 /**
  * Get destination path for generated file.
  *
  * @return string
  */
 public function getPath()
 {
     return $this->getBasePath() . '/Domains/' . ($this->getName() ? $this->getName() . '/' : '') . parent::getConfigGeneratorClassPath($this->getPathConfigNode(), true) . '/' . $this->getName() . 'Service.php';
     //return $this->getBasePath() . '/' . parent::getConfigGeneratorClassPath($this->getPathConfigNode(), true) . '/' . $this->getClass() . 'Service.php';
 }
 /**
  * Get destination path for generated file.
  *
  * @return string
  */
 public function getPath()
 {
     return $this->getBasePath() . DIRECTORY_SEPARATOR . parent::getConfigGeneratorClassPath($this->getPathConfigNode(), true) . DIRECTORY_SEPARATOR . $this->getName() . DIRECTORY_SEPARATOR . $this->getManagerName() . '.php';
 }