link-in-bio.php
31 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Elementor\Modules\LinkInBio\Widgets; |
| 4 | |
| 5 | use Elementor\Modules\LinkInBio\Base\Widget_Link_In_Bio_Base; |
| 6 | use Elementor\Modules\LinkInBio\Classes\Render\Core_Render; |
| 7 | use Elementor\Modules\LinkInBio\Module as ConversionCenterModule; |
| 8 | use Elementor\Plugin; |
| 9 | |
| 10 | if ( ! defined( 'ABSPATH' ) ) { |
| 11 | exit; // Exit if accessed directly |
| 12 | } |
| 13 | |
| 14 | /** |
| 15 | * Elementor Link in Bio widget. |
| 16 | * |
| 17 | * Elementor widget that displays an image, a bio, up to 4 CTA links and up to 5 icons. |
| 18 | * |
| 19 | * @since 3.23.0 |
| 20 | */ |
| 21 | class Link_In_Bio extends Widget_Link_In_Bio_Base { |
| 22 | |
| 23 | public function get_name(): string { |
| 24 | return 'link-in-bio'; |
| 25 | } |
| 26 | |
| 27 | public function get_title(): string { |
| 28 | return esc_html__( 'Minimalist', 'elementor' ); |
| 29 | } |
| 30 | } |
| 31 |