Commit 3924b207 authored by Taddeus Kroes's avatar Taddeus Kroes

Updated ToDo list..

parent 18d2f452
...@@ -2,4 +2,16 @@ ...@@ -2,4 +2,16 @@
- UNIT TESTS!!! - UNIT TESTS!!!
- Extend array plugin with stack/collection functions. - Extend array plugin with stack/collection functions.
- Add unit tests for base and SQL plugin. - Add unit tests for base and SQL plugin.
- Create plugin for URL rewriting. X Create plugin for URL rewriting.
- Model plugin
// Model brainstorm:
__model::add_entity('posts', array(
'id' => 'int',
'name' => 'string',
'content' => 'string',
'position' => 'int'
));
// Search query
$page = _model('posts', "select * from posts where name like '%[0]%'", $_GET['keywords']);
\ No newline at end of file
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment