AcfBulkEditNotice.php
2 days ago
AcfNotice.php
2 days ago
AcfSortAndFilterNotice.php
2 days ago
EventsCalendarNotice.php
2 days ago
GravityFormsNotice.php
2 days ago
IntegrationNotice.php
2 days ago
IntegrationNoticeRenderer.php
2 days ago
PostEditReferrerAware.php
2 days ago
UsageAwareNotice.php
2 days ago
WooCommerceOrdersFilterNotice.php
2 days ago
WooCommerceOrdersNotice.php
2 days ago
WooCommerceOrdersScreenAware.php
2 days ago
WooCommerceOrdersSearchNotice.php
2 days ago
WooCommerceProductsBulkEditNotice.php
2 days ago
WooCommerceProductsFilterNotice.php
2 days ago
WooCommerceProductsNotice.php
2 days ago
WooCommerceProductsSearchNotice.php
2 days ago
IntegrationNotice.php
36 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 | public function is_active(Screen $screen): bool; |
| 12 | |
| 13 | public function get_slug(): string; |
| 14 | |
| 15 | public function get_integration_slug(): string; |
| 16 | |
| 17 | public function get_eyebrow(): string; |
| 18 | |
| 19 | public function get_title(): string; |
| 20 | |
| 21 | public function get_description(): string; |
| 22 | |
| 23 | public function get_cta_label(): string; |
| 24 | |
| 25 | public function get_cta_url(): string; |
| 26 | |
| 27 | public function get_secondary_label(): string; |
| 28 | |
| 29 | public function get_secondary_url(): string; |
| 30 | |
| 31 | public function get_extra_classes(): string; |
| 32 | |
| 33 | public function get_delay_days(): int; |
| 34 | |
| 35 | } |
| 36 |