Joomla HtmlView: It is a base class for a Joomla View. It is a class holding methods for displaying presentation data.
The function executes and displays a template script.
Continue ReadingThe function loads a template file. It first looks in the templates folder for an override.
Continue ReadingThe function sets the document title according to global configuration options.
Continue ReadingIt is a method to add a model to the view. Joomla supports a multiple-model single view system by which models are referenced by classname. A caveat to the classname referencing is that any classname prepended by \JModel will be referenced by the name without \JModel. For example, \JModelCategory is just Category.
Continue ReadingThe function escapes a value for output in a view script. The ENT_COMPAT flag will be replaced by ENT_QUOTES in Joomla 4.0 to also escape single quotes.
Continue ReadingIt is a method to get data from a registered model or a property of the view.
Continue ReadingIt is a method to get the view name. The model name by default parsed using the classname, or it can be set by passing a $config['name'] in the class constructor.
Continue Reading