Rev 3 | Rev 5 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 3 | Rev 4 | ||
---|---|---|---|
Line 60... | Line 60... | ||
60 | /* Inform items of ourself so that URNs can be used for links */
|
60 | /* Inform items of ourself so that URNs can be used for links */
|
61 | if (is_array($this->items)) |
61 | if (is_array($this->items)) |
62 | {
|
62 | {
|
63 | foreach ($this->items as &$item) |
63 | foreach ($this->items as &$item) |
64 | {
|
64 | {
|
65 | $item->setList(&$this); |
65 | $item->setList($this); |
66 | }
|
66 | }
|
67 | }
|
67 | }
|
68 | 68 | ||
69 | /* resolve URN references that are URNs */
|
69 | /* resolve URN references that are URNs */
|
70 | if (is_array($this->urns)) |
70 | if (is_array($this->urns)) |
Line 196... | Line 196... | ||
196 | *
|
196 | *
|
197 | * @var FeatureList
|
197 | * @var FeatureList
|
198 | */
|
198 | */
|
199 | protected $list = null; |
199 | protected $list = null; |
200 | 200 | ||
201 | public function setList($oList) |
201 | public function setList(&$oList) |
202 | {
|
202 | {
|
203 | $this->list =& $oList; |
203 | $this->list =& $oList; |
204 | }
|
204 | }
|
205 | 205 | ||
206 | /**
|
206 | /**
|