Skip to content

Instantly share code, notes, and snippets.

@manchumahara
Created June 8, 2014 04:12
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 manchumahara/55aae6f711246c5f10df to your computer and use it in GitHub Desktop.
Save manchumahara/55aae6f711246c5f10df to your computer and use it in GitHub Desktop.
//old way
$app = JFactory::getApplication();
$offline = $app->getCfg('offline');
or
$config =& JFactory::getConfig();
echo 'Site name is ' . $config->getValue( 'config.sitename' );
//New way
//use get()
$config = JFactory::getConfig();
$offline = $config->get('offline');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment