コード例 #1
0
ファイル: ResourceId.php プロジェクト: sourcefabric/newscoop
 /**
  * Provides the full id of the resource, this id will be full path of the requesting layer components
  * separated by ':'.
  *
  * @return string
  *		The full id of the resource.
  */
 public function getFullId()
 {
     if ($this->parent != NULL) {
         return $this->parent->getFullId() . ':' . $this->id;
     }
     return $this->id;
 }