|
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- <?php
-
- namespace Config;
-
- use CodeIgniter\Config\BaseConfig;
- use CodeIgniter\Format\FormatterInterface;
- use CodeIgniter\Format\JSONFormatter;
- use CodeIgniter\Format\XMLFormatter;
-
- class Format extends BaseConfig
- {
-
-
- public $supportedResponseFormats = [
- 'application/json',
- 'application/xml',
- 'text/xml',
- ];
-
-
-
- public $formatters = [
- 'application/json' => JSONFormatter::class,
- 'application/xml' => XMLFormatter::class,
- 'text/xml' => XMLFormatter::class,
- ];
-
-
-
- public $formatterOptions = [
- 'application/json' => JSON_UNESCAPED_UNICODE | JSON_UNESCAPED_SLASHES,
- 'application/xml' => 0,
- 'text/xml' => 0,
- ];
-
-
-
- public function getFormatter(string $mime)
- {
- return Services::format()->getFormatter($mime);
- }
- }
|