Files
szkoleniauryzaj.pl/wp-content/plugins/password-protect-page/includes/services/class-ppw-customizer-upsell.php
2026-04-26 23:47:49 +02:00

64 lines
1.8 KiB
PHP

<?php
if ( ! class_exists( 'PPW_Customizer_Upsell' ) ) {
/**
* Register PPW_Customizer_Upsell Configurations.
*/
class PPW_Customizer_Upsell {
/**
* Register upsell section for customize
*
* @var PPW_Customizer_Upsell
*/
protected static $instance = null;
/**
* Constructor for PPW_Customizer_Upsell
*/
public function __construct() {
add_action( 'customize_register', array( $this, 'customize_register' ) );
add_action( 'customize_controls_enqueue_scripts', array( $this, 'enqueue' ) );
}
/**
* Get instance of PPW_Customizer_Upsell
*
* @return PPW_Customizer_Upsell
*/
public static function get_instance() {
if ( is_null( self::$instance ) ) {
self::$instance = new static();
}
return self::$instance;
}
public function customize_register( $wp_customize ) {
include PPW_DIR_PATH . 'includes/customizers/class-ppw-customize-link-section.php';
$wp_customize->register_section_type( 'PPW_Customize_Link_Section' );
$wp_customize->add_section(
new PPW_Customize_Link_Section( $wp_customize, 'ppwp_upsell',
array(
'ppwp_text' => __( 'More options available in PPWP Pro', 'password-protect-page' ),
'ppwp_url' => esc_url( 'https://passwordprotectwp.com/features/lite-vs-pro-version/?utm_source=user-website&utm_medium=wp-customizer&utm_campaign=ppwp-free#sitewide-customizer' ),
'capability' => 'edit_theme_options',
'priority' => 9999,
'type' => 'ppwp-upsell-section',
)
)
);
}
public function enqueue() {
wp_enqueue_script( 'ppw-upsell-section-scripts', PPW_DIR_URL . 'includes/customizers/assets/ppw-upsell-section.js', array( 'jquery' ), PPW_VERSION, true );
}
}
}