FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
surecart
/
app
/
src
/
Integrations
/
Elementor
/
Widgets
Edit File: ProductPricing.php
<?php namespace SureCart\Integrations\Elementor\Widgets; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } /** * Product Pricing widget. */ class ProductPricing extends \Elementor\Widget_Base { /** * Get widget name. * * @return string */ public function get_name() { return 'surecart-product-pricing'; } /** * Get widget title. * * @return string */ public function get_title() { return esc_html__( 'Product Pricing', 'surecart' ); } /** * Get widget icon. * * @return string */ public function get_icon() { return 'eicon-product-price'; } /** * Get the widget keywords. * * @return array */ public function get_keywords() { return array( 'surecart', 'price', 'selected', 'amount' ); } /** * Get the widget categories. * * @return array */ public function get_categories() { return array( 'surecart-elementor-elements' ); } /** * Get the style dependencies. * * @return array */ public function get_style_depends() { return array( 'surecart-tag' ); } }
Save
Back