mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-23 01:01:20 +00:00

- update .devcontainer settings: remove auto-formatting for php + set intelephense as default formatter - remove prettier php plugin as it lacks php 8 support - add captain hook action for checking style pre-commit - fix style with ecs on all files except views
38 lines
1.3 KiB
PHP
38 lines
1.3 KiB
PHP
<?php
|
|
|
|
namespace Config;
|
|
|
|
use CodeIgniter\Config\View as BaseView;
|
|
|
|
class View extends BaseView
|
|
{
|
|
/**
|
|
* When false, the view method will clear the data between each call. This keeps your data safe and ensures there is
|
|
* no accidental leaking between calls, so you would need to explicitly pass the data to each view. You might prefer
|
|
* to have the data stick around between calls so that it is available to all views. If that is the case, set
|
|
* $saveData to true.
|
|
*
|
|
* @var boolean
|
|
*/
|
|
public $saveData = true;
|
|
|
|
/**
|
|
* Parser Filters map a filter name with any PHP callable. When the Parser prepares a variable for display, it will
|
|
* chain it through the filters in the order defined, inserting any parameters. To prevent potential abuse, all
|
|
* filters MUST be defined here in order for them to be available for use within the Parser.
|
|
*
|
|
* Examples: { title|esc(js) } { created_on|date(Y-m-d)|esc(attr) }
|
|
*
|
|
* @var string[]
|
|
*/
|
|
public $filters = [];
|
|
|
|
/**
|
|
* Parser Plugins provide a way to extend the functionality provided by the core Parser by creating aliases that
|
|
* will be replaced with any callable. Can be single or tag pair.
|
|
*
|
|
* @var string[]
|
|
*/
|
|
public $plugins = [];
|
|
}
|