Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
| Templates | n/a |
0 / 0 |
n/a |
0 / 0 |
0 | n/a |
0 / 0 |
|||
| 1 | <?php |
| 2 | /** |
| 3 | * Templates class. |
| 4 | * |
| 5 | * @package automattic/jetpack-publicize |
| 6 | */ |
| 7 | |
| 8 | namespace Automattic\Jetpack\Publicize\Social_Image_Generator; |
| 9 | |
| 10 | /** |
| 11 | * This class is used to get information about templates. |
| 12 | */ |
| 13 | class Templates { |
| 14 | /** |
| 15 | * Available templates. |
| 16 | * |
| 17 | * @var array |
| 18 | */ |
| 19 | const TEMPLATES = array( 'highway', 'dois', 'fullscreen', 'edge' ); |
| 20 | |
| 21 | /** |
| 22 | * Default template for new posts. |
| 23 | * |
| 24 | * @var string |
| 25 | */ |
| 26 | const DEFAULT_TEMPLATE = 'highway'; |
| 27 | } |