Aurora icon indicating copy to clipboard operation
Aurora copied to clipboard

Kohana module for manual data mapping, JSON and REST

Results 9 Aurora issues
Sort by recently updated
recently updated
newest added

Currently we have the following hooks: | Main API | Interface | Method | | --- | --- | --- | | Loading | Interface_Aurora_Hook_Before_Load | `before_load(&$params)` | | Loading...

Test `map_retrieve` and `map_persist`

todo

Let's say we have a model that has lots of properties public function db_retrieve($model, array $row) { /* @var $model Model_Article */ $tbl = Au::db()->table($this); $model->set_id($row[$tbl . '.id']); $model->set_name($row[$tbl ....

enhancement

To enhance the protected find_mode function, and be consistent of whether to return model or collection. I think it is always good to return a collection, unless of very specific...

enhancement

If you know you want a model to load via Aurora, you would do: $model = Model::factory('Feed_Item'); Au::load($model, array('email' => '[email protected]')); // load a model from first row returned However,...

enhancement

Getting a blank screen HTTP Error 500 when the auto-loader does not find Aurora or Collection classes.

bug

Currently the RESTful API should start with `api/` as url prefix. This should be configurable.

enhancement

I am opening the caching issue [that was raised in Kohana Forum](http://forum.kohanaframework.org/discussion/comment/79874#Comment_79874) to redirect the discussion here, as I don't want to hijack the Kohana forum with Aurora discussions. Aurora...

enhancement