文件操作 - widget.php
返回文件管理
返回主菜单
删除本文件
文件: /root/Desktop/OLD/plugin-wordpress/happy-elementor-addons/widgets/calendly/widget.php
编辑文件内容
<?php /** * Calendly widget class * * @package Happy_Addons */ namespace Happy_Addons\Elementor\Widget; use Elementor\Controls_Manager; defined( 'ABSPATH' ) || die(); class Calendly extends Base { /** * Get widget title. * * @return string Widget title. * @since 1.0.0 * @access public * */ public function get_title() { return __( 'Calendly', 'happy-elementor-addons' ); } public function get_custom_help_url() { return 'https://happyaddons.com/docs/happy-addons-for-elementor/widgets/calendly/'; } /** * Get widget icon. * * @return string Widget icon. * @since 1.0.0 * @access public * */ public function get_icon() { return 'hm hm-calendar'; } public function get_keywords() { return [ 'info', 'blurb', 'box', 'text', 'content' ]; } /** * Register content related controls */ protected function register_content_controls() { $this->start_controls_section( '_section_calendly', [ 'label' => __( 'Calendly', 'happy-elementor-addons' ), 'tab' => Controls_Manager::TAB_CONTENT, ] ); $this->add_control( 'calendly_username', [ 'label' => __( 'Username', 'happy-elementor-addons' ), 'type' => Controls_Manager::TEXT, 'default' => __( '', 'happy-elementor-addons' ), 'placeholder' => __( 'Type calendly username here', 'happy-elementor-addons' ), ] ); $this->add_control( 'calendly_time', [ 'label' => __( 'Time Slot', 'happy-elementor-addons' ), 'type' => Controls_Manager::SELECT, 'options' => [ '15min' => __( '15 Minutes', 'happy-elementor-addons' ), '30min' => __( '30 Minutes', 'happy-elementor-addons' ), '60min' => __( '60 Minutes', 'happy-elementor-addons' ), '' => __( 'All', 'happy-elementor-addons' ), ], 'default' => '15min' ] ); $this->add_control( 'event_type_details', [ 'label' => __( 'Hide Event Type Details', 'happy-elementor-addons' ), 'type' => Controls_Manager::SWITCHER, 'label_on' => __( 'yes', 'happy-elementor-addons' ), 'label_off' => __( 'no', 'happy-elementor-addons' ), 'return_value' => 'yes', 'default' => '', ] ); $this->add_responsive_control( 'height', [ 'label' => __( 'Height', 'happy-elementor-addons' ), 'type' => Controls_Manager::SLIDER, 'size_units' => [ 'px', '%' ], 'range' => [ 'px' => [ 'min' => 10, 'max' => 1000, 'step' => 5, ], '%' => [ 'min' => 5, 'max' => 100, ], ], 'default' => [ 'unit' => 'px', 'size' => '630', ], 'selectors' => [ '{{WRAPPER}} .calendly-inline-widget' => 'height: {{SIZE}}{{UNIT}};', '{{WRAPPER}} .calendly-wrapper' => 'height: {{SIZE}}{{UNIT}};', ], ] ); $this->end_controls_section(); } /** * Register styles related controls */ protected function register_style_controls() { $this->start_controls_section( '_section_style_calendly', [ 'label' => __( 'Calendly', 'happy-elementor-addons' ), 'tab' => Controls_Manager::TAB_STYLE, ] ); $this->add_control( 'text_color', [ 'label' => __( 'Text Color', 'happy-elementor-addons' ), 'type' => Controls_Manager::COLOR, 'alpha' => false, ] ); $this->add_control( 'button_link_color', [ 'label' => __( 'Button & Link Color', 'happy-elementor-addons' ), 'type' => Controls_Manager::COLOR, ] ); $this->add_control( 'background_color', [ 'label' => __( 'Background Color', 'happy-elementor-addons' ), 'type' => Controls_Manager::COLOR, ] ); $this->end_controls_section(); } protected function render() { $settings = $this->get_settings_for_display(); $calendly_time = $settings['calendly_time']!=''?"/{$settings['calendly_time']}":''; ?> <?php if ( $settings['calendly_username'] ): ?> <div class="calendly-inline-widget" data-url="https://calendly.com/<?php echo esc_attr( $settings['calendly_username'] ); ?><?php echo esc_attr( $calendly_time ); ?>/?<?php if ( 'yes' === $settings['event_type_details'] ): echo 'hide_event_type_details=1'; endif; ?><?php if ( $settings['text_color'] ): echo "&text_color=" . str_replace( '#', '', $settings['text_color'] ); endif; ?><?php if ( $settings['button_link_color'] ): echo "&primary_color=" . str_replace( '#', '', $settings['button_link_color'] ); endif; ?><?php if ( $settings['background_color'] ): echo "&background_color=" . str_replace( '#', '', $settings['background_color'] ); endif; ?>" style="min-width:320px;"></div> <script type="text/javascript" src="https://assets.calendly.com/assets/external/widget.js"></script> <?php if ( \Elementor\Plugin::$instance->editor->is_edit_mode() ) : ?> <div class="calendly-wrapper" style="width:100%; position:absolute; top:0; left:0; z-index:100;"></div> <?php endif; ?> <?php endif; ?> <?php } }
修改文件时间
将文件时间修改为当前时间的前一年
删除文件