コード例 #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();
 }