dev-master
9999999-devUtilities that don't go in any category
MIT
The Requires
- php >=5.5.0
dev-entities
dev-entitiesUtilities that don't go in any category
The Requires
- php >=5.4.0
Wallogit.com
2017 © Pedro PelĂĄez
Utilities that don't go in any category
This is a subtree split of RocketPropelledTortoise CMS - Core. Don't send pull requests here, (*1)
Work In Progress, do not use in production, (*2)
This repository contains all classes for RocketPropelledTortoise CMS that are not directly tied to a specific component., (*3)
ParentChildTreeTransform a flat representation of a tree to a nested array, (*4)
From, (*5)
array(
['id' => 1, 'text' => 'parent'],
['id' => 2, 'text' => 'child', 'parent_id' => 1]
);
To, (*6)
```php array( ['id' => 0, 'childs' => array( ['id' => 1, 'text' => 'parent', 'childs' => array( ['id' => 2, 'text' => 'child', 'parent_id' => 1] )], ) ); ``, (*7)
Utilities that don't go in any category
MIT
Utilities that don't go in any category