1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <?php
- namespace Config;
- use CodeIgniter\Config\BaseConfig;
- use CodeIgniter\Validation\StrictRules\CreditCardRules;
- use CodeIgniter\Validation\StrictRules\FileRules;
- use CodeIgniter\Validation\StrictRules\FormatRules;
- use CodeIgniter\Validation\StrictRules\Rules;
- class Validation extends BaseConfig
- {
- // --------------------------------------------------------------------
- // Setup
- // --------------------------------------------------------------------
- /**
- * Stores the classes that contain the
- * rules that are available.
- *
- * @var list<string>
- */
- public array $ruleSets = [
- Rules::class,
- FormatRules::class,
- FileRules::class,
- CreditCardRules::class,
- ];
- /**
- * Specifies the views that are used to display the
- * errors.
- *
- * @var array<string, string>
- */
- public array $templates = [
- 'list' => 'CodeIgniter\Validation\Views\list',
- 'single' => 'CodeIgniter\Validation\Views\single',
- 'field' => 'templates/validations/field',
- 'group' => 'templates/validations/group',
- ];
- // --------------------------------------------------------------------
- // Rules
- // --------------------------------------------------------------------
- }
|