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.
31 lines
939 B
31 lines
939 B
1 year ago
|
<?php
|
||
|
|
||
|
namespace Config;
|
||
|
|
||
|
use CodeIgniter\Config\BaseConfig;
|
||
|
|
||
|
/**
|
||
|
* Enable/disable backward compatibility breaking features.
|
||
|
*/
|
||
|
class Feature extends BaseConfig
|
||
|
{
|
||
|
/**
|
||
|
* Enable multiple filters for a route or not.
|
||
|
*
|
||
|
* If you enable this:
|
||
|
* - CodeIgniter\CodeIgniter::handleRequest() uses:
|
||
|
* - CodeIgniter\Filters\Filters::enableFilters(), instead of enableFilter()
|
||
|
* - CodeIgniter\CodeIgniter::tryToRouteIt() uses:
|
||
|
* - CodeIgniter\Router\Router::getFilters(), instead of getFilter()
|
||
|
* - CodeIgniter\Router\Router::handle() uses:
|
||
|
* - property $filtersInfo, instead of $filterInfo
|
||
|
* - CodeIgniter\Router\RouteCollection::getFiltersForRoute(), instead of getFilterForRoute()
|
||
|
*/
|
||
|
public bool $multipleFilters = false;
|
||
|
|
||
|
/**
|
||
|
* Use improved new auto routing instead of the default legacy version.
|
||
|
*/
|
||
|
public bool $autoRoutesImproved = false;
|
||
|
}
|