• Cheat Sheet - Retrieve parameters from Joomla extensions

    A quick reference for code developers that shows to access the parameters of various Joomla extensions types.

  • Joomla CLIApplication Hints and Tips

    Working on creating my first couple of line command applications using the Joomla Application CLI was an exercise and after lots of reading and breaking things I manged to get two applications up and working so here are a few of the things I learnt along the way.

  • Loading a Langauge file of another extension

    On occasions it is necessary to include the language file(s) from another extension for which you maybe using some of the functionality and to do this you need to include these two lines.

    $lang = Factory::getLanguage();
    $lang->load('com_messageq');