piribipipi Posted September 1, 2015 Share Posted September 1, 2015 (edited) Hola. Cree un modulo y estoy intentando obtener la url de un archivo dentro del modulo pero no funciona bien... Estoy utilizando esta funcion: $url= $this->context->link->getModuleLink('mymodule', 'validation.php', array('pps' => 1), Configuration::get('PS_SSL_ENABLED')); pero el enlace generado es el siguiente: http:/mitienda.com/module/mymodule/validation.php el cual no es correcto, pues deberia de ser: http://mitienda.com/modules/mymodule/validation.php (incluyendo la "s" de modules) alguien sabe por que? o cmo puedo obtener el enlace de otra manera? gracias!! Edited September 1, 2015 by piribipipi (see edit history) Link to comment Share on other sites More sharing options...
joseantgv Posted September 1, 2015 Share Posted September 1, 2015 Hola. Cree un modulo y estoy intentando obtener la url de un archivo dentro del modulo pero no funciona bien... Estoy utilizando esta funcion: $url= $this->context->link->getModuleLink('mymodule', 'validation.php', array('pps' => 1), Configuration::get('PS_SSL_ENABLED')); pero el enlace generado es el siguiente: http:/mitienda.com/module/mymodule/validation.php el cual no es correcto, pues deberia de ser: http://mitienda.com/modules/mymodule/validation.php (incluyendo la "s" de modules) alguien sabe por que? o cmo puedo obtener el enlace de otra manera? gracias!! Prueba con $url= $this->context->link->getModuleLink('mymodule', 'validation', array('pps' => 1), Configuration::get('PS_SSL_ENABLED')); Y te devolverá el link http:/mitienda.com/module/mymodule/validation que es correcto. 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