Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Adding comments about abstract functions
  • Loading branch information
Fabrice Luraine committed Jul 14, 2010
1 parent 6ef4276 commit 229eb3d
Showing 1 changed file with 14 additions and 8 deletions.
22 changes: 14 additions & 8 deletions lib/limonade.php
Expand Up @@ -170,14 +170,20 @@ function render_limonade_file()

## ABSTRACTS ___________________________________________________________________

# function configure(){}
# function autoload_controller(){}
# function before(){}
# function after(){}
# function not_found(){}
# function server_error(){}
# function route_missing(){}
# function before_exit(){}
# Abstract methods that might be redefined by user:
#
# - function configure(){}
# - function autoload_controller($callback){}
# - function before($route){}
# - function after($output, $route){}
# - function not_found($errno, $errstr, $errfile=null, $errline=null){}
# - function server_error($errno, $errstr, $errfile=null, $errline=null){}
# - function route_missing($request_method, $request_uri){}
# - function before_exit(){}
# - function before_render($content_or_func, $layout, $locals, $view_path){}
# - function autorender($route){}
#
# See abstract.php for more details.


## MAIN PUBLIC FUNCTIONS _______________________________________________________
Expand Down

0 comments on commit 229eb3d

Please sign in to comment.