caberod Posted April 20, 2017 Share Posted April 20, 2017 Hola, necesitaba saber si existe alguna función que me devuelva si un módulo está activado o no. Lo necesito porque estoy pintando a medida el link a un blog (que es un módulo) y necesitaba ocultar este link si el módulo está inactivo o no existe. Muchas gracias Link to comment Share on other sites More sharing options...
ventura Posted April 20, 2017 Share Posted April 20, 2017 Puedes hacerlo en .php con: if (Module::isInstalled('nombre_del_modulo') && Module::isEnabled('nombre_del_modulo') { ..................... } o en .tpl con {if (Module::isInstalled('nombre_del_modulo') && Module::isEnabled('nombre_del_modulo'))} ........... {/if} Link to comment Share on other sites More sharing options...
caberod Posted May 11, 2017 Author Share Posted May 11, 2017 Ok, muchas gracias ventura. 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