[email protected] Posted October 19, 2015 Share Posted October 19, 2015 (edited) Hello. Developing the admin panel for the module I was meet one strange problem. All child class methods works, but one dosnt.There is a controller class AdminStoresController.php. It when the module is installed there are class AdminStoresController extends AdminStoresControllerCore and there are one method, that do not working public function renderForm() There is nothing extraordinary in the child method, is "public" too and also without arguments.Who has faced similar can tell what could be wrong? Or at least in what side to dig?I would be very grateful for any help. Edited October 19, 2015 by [email protected] (see edit history) Link to comment Share on other sites More sharing options...
MahmutGulerce Posted October 19, 2015 Share Posted October 19, 2015 Hi Did you checked classes\controller/AdminController.php class ? These methods must be available from AdminStoresController Link to comment Share on other sites More sharing options...
[email protected] Posted October 19, 2015 Author Share Posted October 19, 2015 Hi Did you checked classes\controller/AdminController.php class ? These methods must be available from AdminStoresController No i forgot about this! Now this works with return AdminController::renderForm(); instead return parent::renderForm(); thanks for response! Link to comment Share on other sites More sharing options...
MahmutGulerce Posted October 19, 2015 Share Posted October 19, 2015 No i forgot about this! Now this works with return AdminController::renderForm(); instead return parent::renderForm(); thanks for response! Your wellcome. Good luck for your development ! Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now