PMunoz92 Posted November 15, 2018 Share Posted November 15, 2018 Is there a way for create URL when the module is being installed? I meant, with PHP Code Link to comment Share on other sites More sharing options...
idnovate.com Posted November 15, 2018 Share Posted November 15, 2018 1 hour ago, PMunoz92 said: Is there a way for create URL when the module is being installed? I meant, with PHP Code You can create a URL at "SEO & URLs" that redirects to your module controller. Link to comment Share on other sites More sharing options...
PMunoz92 Posted November 15, 2018 Author Share Posted November 15, 2018 2 minutes ago, idnovate.com said: You can create a URL at "SEO & URLs" that redirects to your module controller. Yes, I know, I want to do the same but with PHP when install the module. Link to comment Share on other sites More sharing options...
idnovate.com Posted November 15, 2018 Share Posted November 15, 2018 (edited) You can use this code: $meta = new Meta(); $meta->page = 'module-modulename-modulecontroller'; //Edit with your information $languages = Language::getLanguages(false); foreach ($languages as $lang) { //Information for each lang $meta->title[$lang['id_lang']] = $title[$lang['id_lang']]; $meta->url_rewrite[$lang['id_lang']] = $url_rewrite[$lang['id_lang']]; } $meta->save(); Edited November 15, 2018 by idnovate.com (see edit history) Link to comment Share on other sites More sharing options...
PMunoz92 Posted November 15, 2018 Author Share Posted November 15, 2018 2 minutes ago, idnovate.com said: You can use this code: $meta = new Meta(); $meta->page = 'module-modulename-modulecontroller'; //Edit with your information $languages = Language::getLanguages(false); foreach ($languages as $lang) { //Information for each lang $meta->title[$lang['id_lang']] = $title[$lang['id_lang']]; $meta->url_rewrite[$lang['id_lang']] = $url_rewrite[$lang['id_lang']]; } $meta->save(); Tyvm, I'll try 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