예제 #1
0
파일: Context.php 프로젝트: zingular/forms
 /**
  * @return string
  */
 public function getFullId()
 {
     if (is_null($this->parent)) {
         return $this->id;
     }
     return $this->parent->getFullId() . '/' . $this->getId();
 }