- updated release notes panel

- improved /admin login page
- UI fixes
This commit is contained in:
Exodus4D
2017-06-10 12:28:55 +02:00
parent a3d89b9d77
commit a95f25524a
24 changed files with 242 additions and 149 deletions

View File

@@ -8,6 +8,7 @@
namespace data\mapper;
use Lib\Util;
class AbstractIterator extends \RecursiveArrayIterator {
@@ -40,6 +41,15 @@ class AbstractIterator extends \RecursiveArrayIterator {
return iterator_to_array($this, true);
}
/**
* convert array keys to camelCase
* @param $array
* @return array
*/
protected function camelCaseKeys($array){
return Util::arrayChangeKeys($array, [\Base::instance(), 'camelcase']);
}
/**
* recursive iterator function called on every node
* @param $iterator