| 1 |
<?php |
| 2 |
|
| 3 |
namespace Elementor\Modules\Promotions\AdminMenuItems\Interfaces; |
| 4 |
|
| 5 |
use Elementor\Core\Admin\Menu\Interfaces\Admin_Menu_Item_With_Page; |
| 6 |
|
| 7 |
if ( ! defined( 'ABSPATH' ) ) { |
| 8 |
exit; // Exit if accessed directly. |
| 9 |
} |
| 10 |
|
| 11 |
interface Promotion_Menu_Item extends Admin_Menu_Item_With_Page { |
| 12 |
public function get_image_url(); |
| 13 |
|
| 14 |
public function get_promotion_title(); |
| 15 |
|
| 16 |
public function get_promotion_description(); |
| 17 |
|
| 18 |
public function get_cta_text(); |
| 19 |
|
| 20 |
public function get_cta_url(); |
| 21 |
} |
| 22 |
|