2017 © Pedro PelĂĄez
 

library utilities

Utilities that don't go in any category

image

rocket/utilities

Utilities that don't go in any category

  • Saturday, January 2, 2016
  • by onigoetz
  • Repository
  • 1 Watchers
  • 0 Stars
  • 0 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 2 Versions
  • 0 % Grown

The README.md

Utilities

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)

ParentChildTree

Transform 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)

The Versions

02/01 2016

dev-master

9999999-dev

Utilities that don't go in any category

  Sources   Download

MIT

The Requires

  • php >=5.5.0

 

02/08 2015

dev-entities

dev-entities

Utilities that don't go in any category

  Sources   Download

The Requires

  • php >=5.4.0