How to create an controller in app folder in cake php?
class AppSessionController extends AppController {
}
I want to create another controller parallely to AppController, then I want to extends it with AppController
The new created controller can be extended to whole application(All controllers in app/controllers).
Is it possible ?
EDIT: In app/controllers
class customController extends AppSessionController {
}