todo.txt 445 B

1234567891011121314151617
  1. - Change config file location.
  2. - UNIT TESTS!!!
  3. - Extend array plugin with stack/collection functions.
  4. - Add unit tests for base and SQL plugin.
  5. X Create plugin for URL rewriting.
  6. - Model plugin
  7. // Model brainstorm:
  8. __model::add_entity('posts', array(
  9. 'id' => 'int',
  10. 'name' => 'string',
  11. 'content' => 'string',
  12. 'position' => 'int'
  13. ));
  14. // Search query
  15. $page = _model('posts', "select * from posts where name like '%[0]%'", $_GET['keywords']);