![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /proc/self/cwd/wp-content/plugins/bdthemes-element-pack/modules/price-table/skins/ |
<?php namespace ElementPack\Modules\PriceTable\Skins; use Elementor\Controls_Manager; use Elementor\Group_Control_Image_Size; use Elementor\Skin_Base as Elementor_Skin_Base; if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly class Skin_Partait extends Elementor_Skin_Base { public function get_id() { return 'bdt-partait'; } public function get_title() { return __( 'Partait', 'bdthemes-element-pack' ); } public function register_partait_style_controls() { $this->start_controls_section( 'section_style_partait', [ 'label' => __( 'Partait', 'bdthemes-element-pack' ), 'tab' => Controls_Manager::TAB_STYLE, ] ); $this->end_controls_section(); } public function render() { $settings = $this->parent->get_settings(); ?> <div class="bdt-price-table skin-partait"> <div class="bdt-grid bdt-grid-collapse bdt-child-width-1-2@m" data-bdt-grid data-bdt-height-match="target: > div > .bdt-pricing-column"> <div> <div class="bdt-pricing-column"> <?php $this->parent->render_header(); $this->parent->render_price(); $this->parent->render_footer(); ?> </div> </div> <div> <div class="bdt-pricing-column bdt-price-table-features-list-wrap bdt-flex bdt-flex-middle bdt-price-table-features-list-wrap"> <?php $this->parent->render_features_list(); ?> </div> </div> </div> <?php $this->parent->render_ribbon(); ?> </div> <?php } }