Esempio n. 1
0
 /**
  * @return DirEntity
  */
 public function getDir()
 {
     if (!$this->dir) {
         $this->dir = new DirEntity();
         $this->dir->setParent($this->page->getDir());
         $this->dir->setInvisible(TRUE);
         $this->dir->setName(Strings::webalize(get_class($this)) . Strings::random());
     }
     return $this->dir;
 }