| @@ -5,10 +5,10 @@ | ||
| 5 | 5 | use Elementor\Controls_Manager; |
| 6 | 6 | use Elementor\Core\Kits\Documents\Tabs\Global_Typography; |
| 7 | 7 | use Elementor\Group_Control_Typography; |
| 8 | 8 | use Elementor\Modules\Shapes\Module as Shapes_Module; |
| 9 | +use Elementor\Utils; | |
| 9 | 10 | use Elementor\Group_Control_Text_Stroke; |
| 10 | -use Elementor\Plugin; | |
| 11 | 11 | use Elementor\Widget_Base; |
| 12 | 12 | |
| 13 | 13 | if ( ! defined( 'ABSPATH' ) ) { |
| 14 | 14 | exit; // Exit if accessed directly. |
| @@ -17,8 +17,9 @@ | ||
| 17 | 17 | /** |
| 18 | 18 | * Elementor WordArt widget. |
| 19 | 19 | * |
| 20 | 20 | * Elementor widget that displays text along SVG path. |
| 21 | + * | |
| 21 | 22 | */ |
| 22 | 23 | class TextPath extends Widget_Base { |
| 23 | 24 | |
| 24 | 25 | const DEFAULT_PATH_FILL = '#E8178A'; |
| @@ -29,17 +30,14 @@ | ||
| 29 | 30 | * Retrieve Text Path widget name. |
| 30 | 31 | * |
| 31 | 32 | * @return string Widget name. |
| 32 | 33 | * @access public |
| 34 | + * | |
| 33 | 35 | */ |
| 34 | 36 | public function get_name() { |
| 35 | 37 | return 'text-path'; |
| 36 | 38 | } |
| 37 | 39 | |
| 38 | - public function get_group_name() { | |
| 39 | - return 'shapes'; | |
| 40 | - } | |
| 41 | - | |
| 42 | 40 | /** |
| 43 | 41 | * Get widget title. |
| 44 | 42 | * |
| 45 | 43 | * Retrieve Text Path widget title. |
| @@ -45,8 +43,9 @@ | ||
| 45 | 43 | * Retrieve Text Path widget title. |
| 46 | 44 | * |
| 47 | 45 | * @return string Widget title. |
| 48 | 46 | * @access public |
| 47 | + * | |
| 49 | 48 | */ |
| 50 | 49 | public function get_title() { |
| 51 | 50 | return esc_html__( 'Text Path', 'elementor' ); |
| 52 | 51 | } |
| @@ -57,8 +56,9 @@ | ||
| 57 | 56 | * Retrieve Text Path widget icon. |
| 58 | 57 | * |
| 59 | 58 | * @return string Widget icon. |
| 60 | 59 | * @access public |
| 60 | + * | |
| 61 | 61 | */ |
| 62 | 62 | public function get_icon() { |
| 63 | 63 | return 'eicon-wordart'; |
| 64 | 64 | } |
| @@ -69,29 +69,12 @@ | ||
| 69 | 69 | * Retrieve the list of keywords the widget belongs to. |
| 70 | 70 | * |
| 71 | 71 | * @return array Widget keywords. |
| 72 | 72 | * @access public |
| 73 | + * | |
| 73 | 74 | */ |
| 74 | 75 | public function get_keywords() { |
| 75 | 76 | return [ 'text path', 'word path', 'text on path', 'wordart', 'word art' ]; |
| 76 | - } | |
| 77 | - | |
| 78 | - /** | |
| 79 | - * Get style dependencies. | |
| 80 | - * | |
| 81 | - * Retrieve the list of style dependencies the widget requires. | |
| 82 | - * | |
| 83 | - * @since 3.24.0 | |
| 84 | - * @access public | |
| 85 | - * | |
| 86 | - * @return array Widget style dependencies. | |
| 87 | - */ | |
| 88 | - public function get_style_depends(): array { | |
| 89 | - return [ 'widget-text-path' ]; | |
| 90 | - } | |
| 91 | - | |
| 92 | - public function has_widget_inner_wrapper(): bool { | |
| 93 | - return ! Plugin::$instance->experiments->is_feature_active( 'e_optimized_markup' ); | |
| 94 | 77 | } |
| 95 | 78 | |
| 96 | 79 | /** |
| 97 | 80 | * Register content controls under content tab. |