constants.php
13 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Constants for the subscriptions Block. |
| 4 | * |
| 5 | * @package automattic/jetpack |
| 6 | */ |
| 7 | |
| 8 | namespace Automattic\Jetpack\Extensions\Subscriptions; |
| 9 | |
| 10 | const FEATURE_NAME = 'subscriptions'; |
| 11 | const BLOCK_NAME = 'jetpack/' . FEATURE_NAME; |
| 12 | const META_NAME_FOR_POST_LEVEL_ACCESS_SETTINGS = '_jetpack_newsletter_access'; |
| 13 |