How to add a New Format to your Joomla 3 Component Updated on June 7, 2023 by Brad Markle 1 Minutes, 15 Seconds to Read This tutorial series, Joomla 3 component development, is currently in progress… In our last few tutorials about creating components within Joomla 3, we’ve been creating new views. The default format for views is HTML format. However, you can setup your views to return data in other formats too, such as json or xml. Creating a new format Create your new “view format” file: /components/com_helloworld/views/helloworld/view.xml.php In our testing, we are creating an xml format, but you can create other formats too. For example, if you wanted to create a json format, you would create: /components/helloworld/views/helloworld/view.json.php In the file you just created, write the php code that you would like to ultimately create your XML file. Here’s our example code: <?php // No direct access to this file defined('_JEXEC') or die('Restricted access'); // import Joomla view library jimport('joomla.application.component.view'); /** * XML View class for the HelloWorld Component */ class HelloWorldViewHelloWorld extends JViewLegacy { // Overwriting JView display method function display($tpl = null) { echo "<?xml version='1.0' encoding='UTF-8'?> <article> <title>How to create a Joomla Component</title> <alias>create-component</alias> </article>"; } } Testing our new format To test our new format, call it via the URL as in this example: https://example.com/index.php?option=com_helloworld&format=xml If you followed along with this tutorial, your Joomla component should output the following: Share this Article Related Articles How to Create a Slideshow (Carousel) in Joomla 4.0 using Bootstrap How to write a blog post in Joomla 3.1 How to Use the Free Mini Frontpage Extension for Joomla 4.0 How to Change a Joomla 2.5 User’s Email Address How to Configure Joomla 2.5 to Send Email Using SMTP How to Edit a Joomla 3 Template How to install Phoca Gallery for Joomla 2.5 Creating a Menu Item for your Joomla 3 Component Changing Email Settings in Joomla 3.1 Using the Redirect Manager in Joomla 3.1