Creating a database-driven hierarchical Structure combined with CMenu and superfish

Comparing #9 with #10

Revision #10 was created by Alex D. Alex D. on Oct 15, 2011, 8:47:10 PM.

correction: $parent = $model->parent; was changed to $parent = $model->getparent;

Content

[...]
Now, in our yii console or in the Application we can use


```php
$model = Hierarchy::model()->findByPk(7);
$parent = $model->
getparent;
echo $parent->title;
// returns 'First Entry'
```

to get the parent element, or
[...]