Skip to content

Latest commit

 

History

History
66 lines (54 loc) · 1.54 KB

INSTALLATION.md

File metadata and controls

66 lines (54 loc) · 1.54 KB

Docs

Installation

Requirement

Installation

Installation can be done via composer

composer require nfaiz/pdoifx

Setup

Add properties below to app/Config/Toolbar.php;

/**
 * -------------------------------------------------------------
 * Enable/Disable PdoIfx Event Collector
 * -------------------------------------------------------------
 *
 * @var boolean
 */
public bool $pdoIfxCollector = true;

/**
 * -------------------------------------------------------------
 * PDO Informix Tab Title
 * -------------------------------------------------------------
 *
 * Note: Use different title from other debug toolbar tab
 *
 * 
 * @var boolean
 */
public string $pdoIfxTitle = 'Informix';

/**
 * -------------------------------------------------------------
 * DbToolbar View
 * -------------------------------------------------------------
 * 
 * To override DbToolbar query Highlighter view.
 *
 * @var array
 */
public string $dbToolbarTpl = 'Nfaiz\PdoIfx\Views\queries.tpl';

/**
 * -------------------------------------------------------------
 * Disable DbToolbar query Highlighter
 * -------------------------------------------------------------
 * 
 * To disable DbToolbar query highlighter, change value to true
 *
 * @var boolean
 */
public bool $dbToolbarDisable = true;

Please refer here for more query styling configurations.