You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.2 KiB
45 lines
1.2 KiB
1 year ago
|
<?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 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',
|
||
|
];
|
||
|
|
||
|
// --------------------------------------------------------------------
|
||
|
// Rules
|
||
|
// --------------------------------------------------------------------
|
||
|
}
|