Skip to content

Instantly share code, notes, and snippets.

@sergiois
Last active December 22, 2015 04:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sergiois/6417400 to your computer and use it in GitHub Desktop.
Save sergiois/6417400 to your computer and use it in GitHub Desktop.
Como cargar los parámetros de un módulo en Joomla! 2.5
<?php
jimport( 'joomla.application.module.helper' );
$module = JModuleHelper::getModule('mymodulename');
$moduleParams = new JRegistry();
$moduleParams->loadString($module->params);
// Ahora podemos llamar al parámetro
$param = $moduleParams->get('paramName', 'defaultValue');
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment