How to get all Joomla plugins loaded
Sometimes it would be good to know which Joomla plugins are loaded as they may increase your site's loading and you can turn them off. So here you are, it outputs all the plugins' groups with plugins loaded:
"; print_r( "Plugin group: " . strtoupper( $plulginGroup->folder ) ); echo ""; echo "
"; print_r( "=====================" ); echo ""; $plugins = JPluginHelper::getPlugin($plulginGroup->folder, ''); foreach( $plugins as $plugin ){ echo "
"; print_r($plugin->name); echo ""; } echo "
"; print_r( "" ); echo ""; } ?>