_filesystemName = $this->_moduleName = $this->_resource->getAttribute('moduleName'); parent::init(); return $this; } /** * getName() * * @return string */ public function getName() { return 'ModuleDirectory'; } /** * getPersistentAttributes * * @return array */ public function getPersistentAttributes() { return array( 'moduleName' => $this->getModuleName() ); } /** * getModuleName() * * @return string */ public function getModuleName() { return $this->_moduleName; } }