AcfBulkEditNotice.php
3 months ago
AcfNotice.php
3 months ago
AcfSortAndFilterNotice.php
3 months ago
EventsCalendarNotice.php
3 months ago
GravityFormsNotice.php
3 months ago
IntegrationNotice.php
3 months ago
IntegrationNoticeRenderer.php
3 months ago
PostEditReferrerAware.php
3 months ago
UsageAwareNotice.php
3 months ago
WooCommerceOrdersFilterNotice.php
3 months ago
WooCommerceOrdersNotice.php
3 months ago
WooCommerceOrdersScreenAware.php
3 months ago
WooCommerceOrdersSearchNotice.php
3 months ago
WooCommerceProductsBulkEditNotice.php
3 months ago
WooCommerceProductsFilterNotice.php
3 months ago
WooCommerceProductsNotice.php
3 months ago
WooCommerceProductsSearchNotice.php
3 months ago
IntegrationNotice.php
37 lines
| 1 | <?php |
| 2 | |
| 3 | declare(strict_types=1); |
| 4 | |
| 5 | namespace AC\Check\Integration; |
| 6 | |
| 7 | use AC\Screen; |
| 8 | |
| 9 | interface IntegrationNotice |
| 10 | { |
| 11 | |
| 12 | public function is_active(Screen $screen): bool; |
| 13 | |
| 14 | public function get_slug(): string; |
| 15 | |
| 16 | public function get_integration_slug(): string; |
| 17 | |
| 18 | public function get_eyebrow(): string; |
| 19 | |
| 20 | public function get_title(): string; |
| 21 | |
| 22 | public function get_description(): string; |
| 23 | |
| 24 | public function get_cta_label(): string; |
| 25 | |
| 26 | public function get_cta_url(): string; |
| 27 | |
| 28 | public function get_secondary_label(): string; |
| 29 | |
| 30 | public function get_secondary_url(): string; |
| 31 | |
| 32 | public function get_extra_classes(): string; |
| 33 | |
| 34 | public function get_delay_days(): int; |
| 35 | |
| 36 | } |
| 37 |