Configuraciones

Choose language

new topic 35 posts, 5 escritores, 5 lectores, inició hace 100 meses

publicado hace 96 meses (Thursday, June 30) por kovaldm
#26
kovaldm

publicado hace 96 meses (Thursday, June 30) por kovaldm
#27
kovaldm

publicado hace 96 meses (Thursday, June 30) por kovaldm
#28
kovaldm

publicado hace 96 meses (Thursday, June 30) por kovaldm
#29
kovaldm

publicado hace 96 meses (Thursday, June 30) por kovaldm
#30
kovaldmnewuser

publicado hace 96 meses (Thursday, June 30) por kovaldm
#31
kovaldmnewuser

publicado hace 96 meses (Thursday, June 30) por kovaldm
#32
kovaldm

newuser

publicado hace 96 meses (Thursday, June 30) por kovaldm
#33
kovaldmnewuser

publicado hace 96 meses (Thursday, June 30) por kovaldm
#34
kovaldmnewuser

publicado hace 89 meses (Thursday, February 9) por kovaldm
#35
dmitry-kovalev

publicado hace 89 meses (Thursday, February 9) por kovaldm
#36
qwe-1kovaldmkovaldm
kovaldm

publicado hace 89 meses (Thursday, February 9) por kovaldm
#37
kovaldm

publicado hace 83 meses (Wednesday, July 19), editado hace 83 meses por newuser
#38
When a user requests an action 'XYZ',
CController will do one of the following:
1. Method-based action: call method 'actionXYZ' if it exists;
2. Class-based action: create an instance of class 'XYZ' if the class is found in the action class map (specified via actions(), and execute the action;
3. Call missingAction(), which by default will raise a 404 HTTP exception.
If the user does not specify an action, CController will run the action specified by defaultAction, instead.
CController may be configured to execute filters before and after running actions. Filters preprocess/postprocess the user request/response and may quit executing actions if needed. They are executed in the order they are specified. If during the execution, any of the filters returns true, the rest filters and the action will no longer get executed.