Created
November 12, 2012 00:54
-
-
Save ridget/4056972 to your computer and use it in GitHub Desktop.
File protected/controllers/user/Foo.php not loading why..?
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class ChangePassword extends CAction { | |
... action code here | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class UserController extends Controller | |
{ | |
public function actions() | |
{ | |
return array( | |
'changePassword'=> 'application.controllers.user.ChangePassword', | |
); | |
} | |
.... | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment