2023-04-26 17:39:43 +02:00
|
|
|
<?php
|
|
|
|
|
/**
|
|
|
|
|
* Constants for the subscriptions Block.
|
|
|
|
|
*
|
|
|
|
|
* @package automattic/jetpack
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
namespace Automattic\Jetpack\Extensions\Subscriptions;
|
|
|
|
|
|
|
|
|
|
const FEATURE_NAME = 'subscriptions';
|
|
|
|
|
const BLOCK_NAME = 'jetpack/' . FEATURE_NAME;
|
2023-09-26 10:24:36 +02:00
|
|
|
const NEWSLETTER_COLUMN_ID = 'newsletter_access';
|
2023-04-26 17:39:43 +02:00
|
|
|
const META_NAME_FOR_POST_LEVEL_ACCESS_SETTINGS = '_jetpack_newsletter_access';
|
2023-09-26 10:24:36 +02:00
|
|
|
const META_NAME_FOR_POST_TIER_ID_SETTINGS = '_jetpack_newsletter_tier_id';
|