public function onDisplay{$page}TableTH( JView $viewarray $config ) : array

Fires while displaying the table head of a specific entity.


Description

This hook is triggered within the list pages of certain sections of the plugin. It is possible to use this hook to include additional columns with list tables.

DO NOT include a th tag because it is automatically added by the system. Lean on data-id attribute for individual styling.

The dynamic portion of the hook name, $page, refers to the name of the page calling the hook. This means that, for example, the restaurant reservations page will trigger an hook called onDisplayReservationsTableTH.

IMPORTANT NOTE: not all the pages trigger this hook. Before to start coding a plugin, you should make sure that the page supports that hook, by checking whether the onDisplayTableColumns() method is used. This can be done by accessing the page at the path:

/administrator/components/com_vikrestaurants/views/{$page}/tmpl/default.php
(back-end pages)

Parameters

$page

(JView)  The page instance holding the record details.

$config

(array)  An associative array of options.

Return Value

Array. An associative array containing the new columns to include. The key of the array should be a unique identifier to correctly pair the head with the body. The value of the array should be the legend to display.


Example

The example below displays the stay time of the reservations under the related list.

/**
 * Trigger hook to allow the plugins to include custom <TH> within the table. 
 * The hook must return an associative array where the key is the identifier
 * of the column and the value is the HTML to use.
 *
 * @param   mixed  $view    The current page instance.
 * @param   array  $config  A configuration array.
 *
 * @return  array  An associative array of columns.
 */
public function onDisplayReservationsTableTH($view, $config)
{
    $head = [];

    // include "Stay Time" column within the table head
    $head['staytime'] = 'Stay Time';

    return $head;
}

Changelog

Version Description
1.9 Introduced.
Last Update: 2023-12-29 14:15
Helpful?