| 1 | <?php |
||
| 15 | class UcrAndBgInfo |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * Preserve under color removal and black generation arguments |
||
| 19 | */ |
||
| 20 | const PRESERVE = 'Preserve'; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * Ignore under color removal and black generation arguments |
||
| 24 | */ |
||
| 25 | const REMOVE = 'Remove'; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * Available UCR and BG info values |
||
| 29 | * |
||
| 30 | * @var string[] |
||
| 31 | */ |
||
| 32 | private static $values = [ |
||
| 33 | self::PRESERVE, |
||
| 34 | self::REMOVE |
||
| 35 | ]; |
||
| 36 | |||
| 37 | /** |
||
| 38 | * Get available UCR and BG info values |
||
| 39 | * |
||
| 40 | * @return string[] |
||
| 41 | */ |
||
| 42 | public static function values() |
||
| 46 | } |
||
| 47 |