jetpack
/
jetpack_vendor
/
automattic
/
jetpack-publicize
/
src
/
social-image-generator
/
class-templates.php
jetpack
/
jetpack_vendor
/
automattic
/
jetpack-publicize
/
src
/
social-image-generator
Last commit date
class-post-settings.php
1 month ago
class-rest-settings-controller.php
2 months ago
class-rest-token-controller.php
2 months ago
class-settings.php
3 months ago
class-setup.php
3 weeks ago
class-templates.php
3 years ago
utilities.php
8 months ago
class-templates.php
28 lines
| 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 | } |
| 28 |