Releases for sf 1.2
| Version |
License |
API |
Released |
|
1.2.1stable
|
MIT |
0.0.1stable
|
18/11/2008 |
Releases for sf 1.0
| Version |
License |
API |
Released |
|
0.0.1alpha
|
MIT |
0.0.1alpha
|
18/11/2008 |
| Name |
Channel |
Version |
| sfDoctrinePlugin |
pear.symfony-project.com |
1.0-2.0 |
Changelog for release 1.2.1 - 18/11/2008
- Added a helpful note about using this as a helper
- Updated it to work with symfony 1.2
- Fixing the dependency
Other releases
Release 1.2.1 - 18/11/2008
- Added a helpful note about using this as a helper
- Updated it to work with symfony 1.2
- Fixing the dependency
Release 0.0.1 - 18/11/2008
Adding Stephen.Ostrow as a developer
Symfony Doctrine Nested Set Manager Plugin
Installation
You must enable the module for the nested set manager in your application settings.yml
all:
.settings:
enabled_modules: [default, sfNestedSetManager]
Usage
<?php
// Need to use the helper
use_helper('NestedSetManager');
// Category nested set with 1 root
echo get_nested_set_manager('Category', 'name');
// Comments nested set with multiple roots
// echo get_nested_set_manager('Comment', 'body', 1); // 3rd argument is the root id of the nested set tree
?>