mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-04-16 21:08:59 -04:00
- Merge Config and Core File Changes 4.6.3 > 4.6.4 - Merge Config and Core File Changes 4.6.4 > 4.7.0 - Added app\Config\WorkerMode.php - Merge Config and Core File Changes Not previously merged - Added app\Config\Hostnames.php - Corrected incorrect CSS property used in invoice.php view. - Corrected unknown CSS properties used in register.php view. - Used shorthand CSS in debug.css - Corrected indentation in barcode_sheet.php view. - Corrected indentation in footer.php view. - Corrected indentation in invoice_email.php view. - Replaced obsolete attributes with CSS style attributes in barcode_sheet.php - Replaced obsolete attribute in error_exception.php - Replaced obsolete attribute in invoice_email.php - Replaced obsolete attribute in quote_email.php - Replaced obsolete attributes in work_order_email.php - Fixed indentation in system_info.php - Replaced <strong> tag outside <p> tags, which isn't allowed, with style attributes. - Simplified js return logic and indentation fixes in tax_categories.php - Simplified js return logic in tax_codes.php - Simplified js return logic in tax_jurisdictions.php - Removed unnecessary labels in manage views. - Rewrite JavaScript function and PHP to be more readable in bar.php, hbar.php, line.php and pie.php - Added type declarations, return types and an import to app\Config\Services - Updated Attribute.php parameter type - Updated Receiving_lib.php parameter type - Updated Receivings.php parameter types and updated PHPdocs - Updated tabular_helper.php parameter types and updated PHPdocs - Added type declarations and corrected PHPdocs in url_helper.php - Added return types to functions - Revert $objectSrc value in ContentSecurityPolicy.php - Correct return type in Customer->get_stats() - Correct return type in Item->get_info_by_id_or_number() - Correct misspelling in border-spacing - Added missing css style semicolons - Resolve operator precedence ambiguity. - Resolve column mismatch. - Added missing escaping in view. - Updated requirement for PHP 8.2 - Resolve unresolved conflicts - Added PHP 8.2 requirement to the README.md - Fixed bugs in display of UI - Fixed duplicated `>` in app\Views\Expenses\manage.php - Removed excess whitespace at the end of some lines in table_filter_persistence.php - Added missing `>` in app\Views\Expenses\manage.php - Corrected grammar in PHPdoc in table_filter_persistence.php - Remove bug causing `\` to be injected into the new giftcard value - Fix bug causing DROPDOWN Attribute Values to not save correctly - Added check for null in $normalizedItemId - Removing < PHP 8.2 from linting and tests - Update Linter to not include PHP 8.2 and 8.1 - Remove PHP 8.1 unit test cycle. - Update Bug Report Template - Update Composer files for CodeIgniter 4.7.2 - Updated INSTALL.md to reflect changes. --------- Signed-off-by: objec <objecttothis@gmail.com>
148 lines
5.6 KiB
PHP
148 lines
5.6 KiB
PHP
<?php
|
|
|
|
namespace Config;
|
|
|
|
use CodeIgniter\Config\BaseConfig;
|
|
use CodeIgniter\Debug\Toolbar\Collectors\Database;
|
|
use CodeIgniter\Debug\Toolbar\Collectors\Events;
|
|
use CodeIgniter\Debug\Toolbar\Collectors\Files;
|
|
use CodeIgniter\Debug\Toolbar\Collectors\Logs;
|
|
use CodeIgniter\Debug\Toolbar\Collectors\Routes;
|
|
use CodeIgniter\Debug\Toolbar\Collectors\Timers;
|
|
use CodeIgniter\Debug\Toolbar\Collectors\Views;
|
|
|
|
/**
|
|
* --------------------------------------------------------------------------
|
|
* Debug Toolbar
|
|
* --------------------------------------------------------------------------
|
|
*
|
|
* The Debug Toolbar provides a way to see information about the performance
|
|
* and state of your application during that page display. By default it will
|
|
* NOT be displayed under production environments, and will only display if
|
|
* `CI_DEBUG` is true, since if it's not, there's not much to display anyway.
|
|
*/
|
|
class Toolbar extends BaseConfig
|
|
{
|
|
/**
|
|
* --------------------------------------------------------------------------
|
|
* Toolbar Collectors
|
|
* --------------------------------------------------------------------------
|
|
*
|
|
* List of toolbar collectors that will be called when Debug Toolbar
|
|
* fires up and collects data from.
|
|
*
|
|
* @var list<class-string>
|
|
*/
|
|
public array $collectors = [
|
|
Timers::class,
|
|
Database::class,
|
|
Logs::class,
|
|
Views::class,
|
|
// \CodeIgniter\Debug\Toolbar\Collectors\Cache::class,
|
|
Files::class,
|
|
Routes::class,
|
|
Events::class,
|
|
];
|
|
|
|
/**
|
|
* --------------------------------------------------------------------------
|
|
* Collect Var Data
|
|
* --------------------------------------------------------------------------
|
|
*
|
|
* If set to false var data from the views will not be collected. Useful to
|
|
* avoid high memory usage when there are lots of data passed to the view.
|
|
*/
|
|
public bool $collectVarData = true;
|
|
|
|
/**
|
|
* --------------------------------------------------------------------------
|
|
* Max History
|
|
* --------------------------------------------------------------------------
|
|
*
|
|
* `$maxHistory` sets a limit on the number of past requests that are stored,
|
|
* helping to conserve file space used to store them. You can set it to
|
|
* 0 (zero) to not have any history stored, or -1 for unlimited history.
|
|
*/
|
|
public int $maxHistory = 20;
|
|
|
|
/**
|
|
* --------------------------------------------------------------------------
|
|
* Toolbar Views Path
|
|
* --------------------------------------------------------------------------
|
|
*
|
|
* The full path to the the views that are used by the toolbar.
|
|
* This MUST have a trailing slash.
|
|
*/
|
|
public string $viewsPath = SYSTEMPATH . 'Debug/Toolbar/Views/';
|
|
|
|
/**
|
|
* --------------------------------------------------------------------------
|
|
* Max Queries
|
|
* --------------------------------------------------------------------------
|
|
*
|
|
* If the Database Collector is enabled, it will log every query that the
|
|
* the system generates so they can be displayed on the toolbar's timeline
|
|
* and in the query log. This can lead to memory issues in some instances
|
|
* with hundreds of queries.
|
|
*
|
|
* `$maxQueries` defines the maximum amount of queries that will be stored.
|
|
*/
|
|
public int $maxQueries = 100;
|
|
|
|
/**
|
|
* --------------------------------------------------------------------------
|
|
* Watched Directories
|
|
* --------------------------------------------------------------------------
|
|
*
|
|
* Contains an array of directories that will be watched for changes and
|
|
* used to determine if the hot-reload feature should reload the page or not.
|
|
* We restrict the values to keep performance as high as possible.
|
|
*
|
|
* NOTE: The ROOTPATH will be prepended to all values.
|
|
*
|
|
* @var list<string>
|
|
*/
|
|
public array $watchedDirectories = [
|
|
'app',
|
|
];
|
|
|
|
/**
|
|
* --------------------------------------------------------------------------
|
|
* Watched File Extensions
|
|
* --------------------------------------------------------------------------
|
|
*
|
|
* Contains an array of file extensions that will be watched for changes and
|
|
* used to determine if the hot-reload feature should reload the page or not.
|
|
*
|
|
* @var list<string>
|
|
*/
|
|
public array $watchedExtensions = [
|
|
'php', 'css', 'js', 'html', 'svg', 'json', 'env',
|
|
];
|
|
|
|
/**
|
|
* --------------------------------------------------------------------------
|
|
* Ignored HTTP Headers
|
|
* --------------------------------------------------------------------------
|
|
*
|
|
* CodeIgniter Debug Toolbar normally injects HTML and JavaScript into every
|
|
* HTML response. This is correct for full page loads, but it breaks requests
|
|
* that expect only a clean HTML fragment.
|
|
*
|
|
* Libraries like HTMX, Unpoly, and Hotwire (Turbo) update parts of the page or
|
|
* manage navigation on the client side. Injecting the Debug Toolbar into their
|
|
* responses can cause invalid HTML, duplicated scripts, or JavaScript errors
|
|
* (such as infinite loops or "Maximum call stack size exceeded").
|
|
*
|
|
* Any request containing one of the following headers is treated as a
|
|
* client-managed or partial request, and the Debug Toolbar injection is skipped.
|
|
*
|
|
* @var array<string, string|null>
|
|
*/
|
|
public array $disableOnHeaders = [
|
|
'X-Requested-With' => 'xmlhttprequest', // AJAX requests
|
|
'HX-Request' => 'true', // HTMX requests
|
|
'X-Up-Version' => null, // Unpoly partial requests
|
|
];
|
|
}
|