path; if (isset($this->plugin)) { $path = $this->_pluginPath($this->plugin) . $this->name . DS; } return $path; } /** * Base execute method parses some parameters and sets some properties on the bake tasks. * call when overriding execute() * * @return void */ public function execute() { foreach ($this->args as $i => $arg) { if (strpos($arg, '.')) { list($this->params['plugin'], $this->args[$i]) = pluginSplit($arg); break; } } if (isset($this->params['plugin'])) { $this->plugin = $this->params['plugin']; } } }