JoelWebsites Posted February 12, 2015 Share Posted February 12, 2015 Hi the link for a front office controller looks like ..index.php?fc=module&module=testmodule&controller=display Can someone tell me what does the Admin controller look line? Link to comment Share on other sites More sharing options...
abdullacm Posted February 12, 2015 Share Posted February 12, 2015 (edited) Admin controller look likeadminfolder/index.php?controller=AdminDemo&token=<a token value>for this you have to create a controller file underyour-module/controllers/admin/AdminDemoController.php<?phpclass AdminDemoController extends AdminController{ // your functions goes here} Edited February 12, 2015 by Abdulla CM (see edit history) Link to comment Share on other sites More sharing options...
JoelWebsites Posted February 12, 2015 Author Share Posted February 12, 2015 Yes And can you tell me how to make a simple admin controller? Link to comment Share on other sites More sharing options...
abdullacm Posted February 12, 2015 Share Posted February 12, 2015 you can check presta core admin controllers, you will get idea how its working, if need help, what are the forms you want to show in admin? Link to comment Share on other sites More sharing options...
JoelWebsites Posted February 12, 2015 Author Share Posted February 12, 2015 I wanted to make a admin module controller to have simple code like this <?php if (!defined('_PS_VERSION_')) exit; Class AdminAllProductsController extends ModuleAdminController { public function init() { $this->display_column_left = false; $this->display_column_right = false; $this->page_name = 'allproducts'; // page_name and body id parent::init(); $this->setTemplate('allproducts.tpl'); } } It shows controller not found 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