class-tiny-config.php
14 lines
| 1 | <?php |
| 2 | |
| 3 | if ( ! defined( 'TINY_DEBUG' ) ) { |
| 4 | define( 'TINY_DEBUG', null ); |
| 5 | } |
| 6 | |
| 7 | class Tiny_Config { |
| 8 | /* URL is only used by fopen driver. */ |
| 9 | const SHRINK_URL = 'https://api.tinify.com/shrink'; |
| 10 | const KEYS_URL = 'https://api.tinify.com/keys'; |
| 11 | const MONTHLY_FREE_COMPRESSIONS = 500; |
| 12 | const META_KEY = 'tiny_compress_images'; |
| 13 | } |
| 14 |