Server IP : 170.150.155.74 / Your IP : 18.223.102.148 Web Server : Apache/2.4.53 (Debian) System : Linux b22bf132354b 5.4.0-162-generic #179-Ubuntu SMP Mon Aug 14 08:51:31 UTC 2023 x86_64 User : www-data ( 33) PHP Version : 7.4.29 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/html/wp-content/themes/neve/inc/customizer/controls/ |
Upload File : |
<?php /** * Simple upsell control. * * @package Neve */ namespace Neve\Customizer\Controls; /** * Simple Upsell Control. * * @since 2.8.3 * @access public */ class Simple_Upsell extends \WP_Customize_Control { /** * The type of customize control being rendered. * * @since 2.8.3 * @var string */ public $type = 'nv_simple_upsell'; /** * Button text. * * @since 2.8.3 * @var string */ public $button_text = ''; /** * Button link. * * @since 2.8.3 * @var string */ public $link = ''; /** * List of features. * * @since 2.8.3 * @var string */ public $text = ''; /** * Render Method * * @return void */ public function render_content() { ?> <div class="nv-simple-upsell"> <?php if ( ! empty( $this->text ) ) { ?> <p><?php echo esc_html( $this->text ); ?></p> <?php } ?> <?php if ( ! empty( $this->link ) && ! empty( $this->button_text ) ) { ?> <a target="_blank" rel="external noreferrer noopener" href="<?php echo esc_url( $this->link ); ?>" class='button button-secondary'> <?php echo esc_html( $this->button_text ); ?> <span class="components-visually-hidden"><?php echo esc_html__( '(opens in a new tab)', 'neve' ); ?></span> </a> <?php } ?> </div> <?php } }