Jump to content

Saber si un módulo está activado


Recommended Posts

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

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

  • 3 weeks later...

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...