# elementor/3.26.0-dev4/modules/promotions/admin-menu-items/interfaces/promotion-menu-item.php

Elementor Website Builder – more than just a page builder, version 3.26.0-dev4. 22 lines.

- Page: https://pluginprobe.com/plugins/elementor/3.26.0-dev4/code/modules/promotions/admin-menu-items/interfaces/promotion-menu-item.php
- Raw: https://pluginprobe.com/plugins/elementor/3.26.0-dev4/raw/modules/promotions/admin-menu-items/interfaces/promotion-menu-item.php
- Modified: 2023-04-23T11:22:46+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/elementor/3.26.0-dev4/code/modules/promotions/admin-menu-items/interfaces/promotion-menu-item.php#L10-L20`.

```php
<?php

namespace Elementor\Modules\Promotions\AdminMenuItems\Interfaces;

use Elementor\Core\Admin\Menu\Interfaces\Admin_Menu_Item_With_Page;

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly
}

interface Promotion_Menu_Item extends Admin_Menu_Item_With_Page {
	public function get_image_url();

	public function get_promotion_title();

	public function render_promotion_description();

	public function get_cta_text();

	public function get_cta_url();
}

```
