33 lines
713 B
PHP
33 lines
713 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
return [
|
||
|
|
|
||
|
|
/*
|
||
|
|
|--------------------------------------------------------------------------
|
||
|
|
| Default Ratio
|
||
|
|
|--------------------------------------------------------------------------
|
||
|
|
|
|
||
|
|
| With this config option you can define default ratio to use.
|
||
|
|
|
|
||
|
|
| Supported ratios are:
|
||
|
|
| - 1x1
|
||
|
|
| - 4x3
|
||
|
|
|
|
||
|
|
*/
|
||
|
|
|
||
|
|
'ratio' => '',
|
||
|
|
|
||
|
|
/*
|
||
|
|
|--------------------------------------------------------------------------
|
||
|
|
| Default Class
|
||
|
|
|--------------------------------------------------------------------------
|
||
|
|
|
|
||
|
|
| This config option allows you to define some classes which
|
||
|
|
| will be applied to all flags by default.
|
||
|
|
|
|
||
|
|
*/
|
||
|
|
|
||
|
|
'class' => '',
|
||
|
|
|
||
|
|
];
|