Content Security Policy (CSP)

November 20, 2023

Content Security Policy is delivered via HTTP response header. It defines approved sources of content that the browser may load. It helps to detect and mitigate certain types of attacks, including Cross-Site Scripting (XSS) and data injection attacks.

Read More
Referrer-Policy: Security Header

November 17, 2023

The Referrer-Policy HTTP header controls how much referrer information should be included with requests. Aside from the HTTP header, you can also set this policy in HTML.

Read More
HTTP Request and Response Headers

November 14, 2023

Using the Hypertext Transfer Protocol (HTTP), browsers can communicate with web servers to get information to load web pages. When an HTTP request is made, and an HTTP response is given by a web server, the request or response is usually accompanied by additional information, contained in an HTTP header.

Read More
Integer Field Guide

October 25, 2023

The Integer field provides a dropdown select box with a range of integer values.

Read More
Hidden Field Guide

October 24, 2023

The Hidden field type provides a hidden field for saving a field whose value cannot be altered directly by a user.

Read More
Folder List Field Guide

October 23, 2023

The Folder List field provides a drop down list of folders from a specified directory.

Read More
Introduction to HTML

October 15, 2023

HTML is used to create websites. HTML stands for Hyper Text Markup Language. A markup language is a set of markup tags that describe document content. HTML documents are also called web pages.

Read More
How to Get Form in Front End

September 13, 2023

A form to the site frontend allows users to submit information that can be saved to the database or sent to emails. For example, frontend forms in Joomla are used to create article (com_content), contact form (com_contact), user registration form (com_users).

Read More
Frontend List of Items

September 12, 2023

The concept of displaying the list of items at the frontend is very similar to displaying the list of items at the backend. The View file gets the items from the Model and then the Layout file displays the list of items. You can display in tabular layout or blog layout or any other layout.

Read More
Add a Menu Type to Joomla Site Part

September 11, 2023

After the component is installed, you can create a menu Item to access it. This allows to access the component through a menu rather than having to remember what to type into the address bar. Each view and layout can have its own menu item.

Read More
Add a Model to Joomla Site Part

September 10, 2023

The HtmlView class asks the model for data using the get method. For example, this get method converts the get('Item') call into a getItem() call on the model, which is the method which you have to provide in the model.

Read More
Add a View to Joomla Site Part

September 09, 2023

When no task is given in the request variables, the default task is display. The BaseController class has such a task. When the display is used, the 'view' variable decides what is displayed on the page.

Read More