Paramètres

Choose language

new topic 35 posts, 5 écrivains, 5 lecteurs, débuté il y a 100 mois

posté il y a 96 mois (Thursday, June 30) par kovaldm
#26
kovaldm

posté il y a 96 mois (Thursday, June 30) par kovaldm
#27
kovaldm

posté il y a 96 mois (Thursday, June 30) par kovaldm
#28
kovaldm

posté il y a 96 mois (Thursday, June 30) par kovaldm
#29
kovaldm

posté il y a 96 mois (Thursday, June 30) par kovaldm
#30
kovaldmnewuser

posté il y a 96 mois (Thursday, June 30) par kovaldm
#31
kovaldmnewuser

posté il y a 96 mois (Thursday, June 30) par kovaldm
#32
kovaldm

newuser

posté il y a 96 mois (Thursday, June 30) par kovaldm
#33
kovaldmnewuser

posté il y a 96 mois (Thursday, June 30) par kovaldm
#34
kovaldmnewuser

posté il y a 89 mois (Thursday, February 9) par kovaldm
#35
dmitry-kovalev

posté il y a 89 mois (Thursday, February 9) par kovaldm
#36
qwe-1kovaldmkovaldm
kovaldm

posté il y a 89 mois (Thursday, February 9) par kovaldm
#37
kovaldm

posté il y a 83 mois (Wednesday, July 19), édité il y a 83 mois par 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.