update
This commit is contained in:
@@ -0,0 +1,52 @@
|
||||
<?php
|
||||
|
||||
use Elementor\Plugin;
|
||||
|
||||
if ( ! class_exists( 'PPW_Shortcode_Advance_Widget' ) ) {
|
||||
/**
|
||||
* Advance Elementor ShortCode Widget
|
||||
*
|
||||
* @since 1.4.5
|
||||
*
|
||||
* Class PPW_Shortcode_Advance_Widget
|
||||
*/
|
||||
class PPW_Shortcode_Advance_Widget {
|
||||
/**
|
||||
* Register hooks.
|
||||
*/
|
||||
public function init() {
|
||||
add_filter( PPW_Constants::HOOK_SHORTCODE_ELEMENTOR_CONTENT, array( $this, 'handle_elementor_show_content_option' ), 10, 2 );
|
||||
}
|
||||
|
||||
/**
|
||||
* Handle elementor content with the new attribute "Show Content"
|
||||
*
|
||||
* @param string $content The current content.
|
||||
* @param array $settings The setting array includes:
|
||||
* string ppwp_protected_content.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function handle_elementor_show_content_option( $content, $settings ) {
|
||||
if ( ! $this->is_show_content_enabled( $settings ) ) {
|
||||
return $content;
|
||||
}
|
||||
|
||||
return apply_filters( PPW_Constants::HOOK_SHORTCODE_ELEMENTOR_PREVIEW_CONTENT, $settings['ppwp_protected_content'], $content, $settings );
|
||||
}
|
||||
|
||||
/**
|
||||
* Check whether the ppwp_show_content option is enabled.
|
||||
*
|
||||
* @param array $settings The Elementor widget settings (refer to handle_elementor_show_content_option function).
|
||||
*
|
||||
* @return bool True if the value equals to 'yes'.
|
||||
*/
|
||||
private function is_show_content_enabled( $settings ) {
|
||||
if ( ! Plugin::$instance->editor->is_edit_mode() ) {
|
||||
return false;
|
||||
}
|
||||
return isset( $settings['ppwp_show_content'] ) && 'yes' === $settings['ppwp_show_content'];
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,319 @@
|
||||
<?php
|
||||
|
||||
if ( ! class_exists( 'PPW_Shortcode_Widget' ) ) {
|
||||
class PPW_Shortcode_Widget extends \Elementor\Widget_Base {
|
||||
|
||||
/**
|
||||
* Get element name.
|
||||
*
|
||||
* Retrieve the element name.
|
||||
*
|
||||
* @return string The name.
|
||||
* @since 1.4.0
|
||||
* @access public
|
||||
*/
|
||||
public function get_name() {
|
||||
return 'ppwp';
|
||||
}
|
||||
|
||||
/**
|
||||
* Get skin title.
|
||||
*
|
||||
* Retrieve the skin title.
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @access public
|
||||
* @abstract
|
||||
*/
|
||||
public function get_title() {
|
||||
return __( 'Password Protection (PPWP)', 'password-protect-page' );
|
||||
}
|
||||
|
||||
/**
|
||||
* Get widget icon.
|
||||
*
|
||||
* Retrieve the widget icon.
|
||||
*
|
||||
* @return string Widget icon.
|
||||
* @since 1.0.0
|
||||
* @access public
|
||||
*/
|
||||
public function get_icon() {
|
||||
return 'fas fa-shield-alt';
|
||||
}
|
||||
|
||||
/**
|
||||
* Get widget categories.
|
||||
*
|
||||
* Retrieve the widget categories.
|
||||
*
|
||||
* @return array Widget categories.
|
||||
* @since 1.0.10
|
||||
* @access public
|
||||
*/
|
||||
public function get_categories() {
|
||||
return array( 'general' );
|
||||
}
|
||||
|
||||
/**
|
||||
* Add Controls to Widgets
|
||||
*/
|
||||
protected function _register_controls() { //phpcs:ignore -- this is not our function
|
||||
$is_gold_activate = defined( 'PDA_GOLD_V3_VERSION' );
|
||||
$is_ppwp_pro_activate = is_pro_active_and_valid_license();
|
||||
$roles = array();
|
||||
$raw_roles = apply_filters(
|
||||
'ppw_supported_white_list_roles',
|
||||
array(
|
||||
'administrator',
|
||||
'editor',
|
||||
'author',
|
||||
'contributor',
|
||||
'subscriber',
|
||||
)
|
||||
);
|
||||
foreach ( $raw_roles as $value ) {
|
||||
$roles[ $value ] = $value;
|
||||
}
|
||||
$this->start_controls_section(
|
||||
'ppwp_section',
|
||||
array(
|
||||
'label' => __( 'PPWP Shortcode', 'password-protect-page' ),
|
||||
)
|
||||
);
|
||||
|
||||
$controls = array(
|
||||
array(
|
||||
'key' => 'ppwp_protect_options',
|
||||
'value' => array(
|
||||
'label' => __( 'Partial Content Protection', 'password-protect-page' ),
|
||||
'type' => \Elementor\Controls_Manager::HEADING,
|
||||
'separator' => 'before',
|
||||
),
|
||||
),
|
||||
array(
|
||||
'key' => 'ppwp_passwords',
|
||||
'value' => array(
|
||||
'label' => __( 'Passwords', 'password-protect-page' ),
|
||||
'type' => \Elementor\Controls_Manager::TEXT,
|
||||
'placeholder' => __( 'Enter your password, e.g. password1 password2', 'password-protect-page' ),
|
||||
'default' => 'password1 password2',
|
||||
'description' => 'Multiple passwords are separated by space, case-sensitivity, no more than 100 characters and don’t contain [, ], “, ‘',
|
||||
'label_block' => true,
|
||||
),
|
||||
),
|
||||
array(
|
||||
'key' => 'ppwp_whitelisted_roles',
|
||||
'value' => array(
|
||||
'label' => __( 'Whitelisted Roles', 'password-protect-page' ),
|
||||
'type' => \Elementor\Controls_Manager::SELECT2,
|
||||
'placeholder' => __( 'Select whitelisted roles', 'password-protect-page' ),
|
||||
'multiple' => true,
|
||||
'options' => $roles,
|
||||
'description' => 'Select user roles who can access protected area without having to enter passwords',
|
||||
'label_block' => true,
|
||||
),
|
||||
),
|
||||
array(
|
||||
'key' => 'ppwp_protected_content_headline',
|
||||
'value' => array(
|
||||
'label' => __( 'Protected Content', 'password-protect-page' ),
|
||||
'type' => \Elementor\Controls_Manager::HEADING,
|
||||
'separator' => 'before',
|
||||
),
|
||||
),
|
||||
array(
|
||||
'key' => 'ppwp_protected_content',
|
||||
'value' => array(
|
||||
'type' => \Elementor\Controls_Manager::WYSIWYG,
|
||||
'default' => __( 'This is your protected content.', 'password-protect-page' ),
|
||||
),
|
||||
),
|
||||
array(
|
||||
'key' => 'ppwp_show_content',
|
||||
'value' => array(
|
||||
'label' => __( 'Show Content', 'password-protect-page' ),
|
||||
'type' => \Elementor\Controls_Manager::SWITCHER,
|
||||
'default' => 'no',
|
||||
'label_on' => __( 'Show', 'essential-addons-elementor' ),
|
||||
'label_off' => __( 'Hide', 'essential-addons-elementor' ),
|
||||
'return_value' => 'yes',
|
||||
'description' => 'You can force show content in order to style them properly.',
|
||||
),
|
||||
),
|
||||
array(
|
||||
'key' => 'ppwp_protect_instruction',
|
||||
'value' => array(
|
||||
'label' => __( 'Password Form', 'password-protect-page' ),
|
||||
'type' => \Elementor\Controls_Manager::HEADING,
|
||||
'separator' => 'before',
|
||||
),
|
||||
),
|
||||
array(
|
||||
'key' => 'ppwp_headline',
|
||||
'value' => array(
|
||||
'label' => __( 'Headline', 'password-protect-page' ),
|
||||
'type' => \Elementor\Controls_Manager::TEXT,
|
||||
'default' => 'Restricted Content',
|
||||
'label_block' => true,
|
||||
),
|
||||
),
|
||||
array(
|
||||
'key' => 'ppwp_label',
|
||||
'value' => array(
|
||||
'label' => __( 'Label', 'password-protect-page' ),
|
||||
'type' => \Elementor\Controls_Manager::TEXT,
|
||||
'default' => PPW_Constants::DEFAULT_SHORTCODE_LABEL,
|
||||
'label_block' => true,
|
||||
),
|
||||
),
|
||||
array(
|
||||
'key' => 'ppwp_description',
|
||||
'value' => array(
|
||||
'label' => __( 'Description', 'password-protect-page' ),
|
||||
'type' => \Elementor\Controls_Manager::WYSIWYG,
|
||||
'default' => 'To view this protected content, enter the password below:',
|
||||
'label_block' => true,
|
||||
),
|
||||
),
|
||||
array(
|
||||
'key' => 'ppwp_placeholder',
|
||||
'value' => array(
|
||||
'label' => __( 'Placeholder', 'password-protect-page' ),
|
||||
'type' => \Elementor\Controls_Manager::TEXT,
|
||||
'default' => '',
|
||||
'label_block' => true,
|
||||
),
|
||||
),
|
||||
array(
|
||||
'key' => 'ppwp_loading',
|
||||
'value' => array(
|
||||
'label' => __( 'Loading', 'password-protect-page' ),
|
||||
'type' => \Elementor\Controls_Manager::TEXT,
|
||||
'default' => PPW_Constants::DEFAULT_SHORTCODE_LOADING,
|
||||
'label_block' => true,
|
||||
),
|
||||
),
|
||||
array(
|
||||
'key' => 'ppwp_button',
|
||||
'value' => array(
|
||||
'label' => __( 'Button', 'password-protect-page' ),
|
||||
'type' => \Elementor\Controls_Manager::TEXT,
|
||||
'default' => 'Enter',
|
||||
'label_block' => true,
|
||||
),
|
||||
),
|
||||
array(
|
||||
'key' => 'ppwp_error_msg',
|
||||
'value' => array(
|
||||
'label' => __( 'Error message', 'password-protect-page' ),
|
||||
'type' => \Elementor\Controls_Manager::TEXT,
|
||||
'default' => PPW_Constants::DEFAULT_SHORTCODE_ERROR_MSG,
|
||||
'label_block' => true,
|
||||
),
|
||||
),
|
||||
);
|
||||
|
||||
$controls = apply_filters( PPW_Constants::HOOK_SHORTCODE_ELEMENTOR_CONTROLS, $controls );
|
||||
|
||||
|
||||
foreach ( $controls as $control ) {
|
||||
if ( ! isset( $control['is_hide'] ) || true !== $control['is_hide'] ) {
|
||||
$this->add_control( $control['key'], $control['value'] );
|
||||
}
|
||||
}
|
||||
|
||||
$this->end_controls_section();
|
||||
}
|
||||
|
||||
/**
|
||||
* Render content.
|
||||
*/
|
||||
protected function render() {
|
||||
$shortcode = do_shortcode( $this->generate_shortcode() );
|
||||
?>
|
||||
<div class="elementor-shortcode"><?php echo $shortcode; // phpcs:ignores -- we already escape inside the $shortcode.?></div>
|
||||
<?php
|
||||
}
|
||||
|
||||
/**
|
||||
* Render shortcode widget as plain content.
|
||||
*
|
||||
* Override the default behavior by printing the shortcode instead of rendering it.
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @access public
|
||||
*/
|
||||
public function render_plain_content() {
|
||||
// In plain mode, render without shortcode.
|
||||
|
||||
echo $this->generate_shortcode(); // phpcs:ignores -- we already escape inside the $shortcode.
|
||||
}
|
||||
|
||||
/**
|
||||
* Generate PPWP shortcode.
|
||||
*
|
||||
* @return string PPWP Shortcode
|
||||
*/
|
||||
public function generate_shortcode() {
|
||||
$settings = $this->get_settings_for_display();
|
||||
|
||||
$content = apply_filters( PPW_Constants::HOOK_SHORTCODE_ELEMENTOR_CONTENT, '', $settings );
|
||||
if ( ! empty( $content ) ) {
|
||||
return $content;
|
||||
}
|
||||
|
||||
$passwords = isset( $settings['ppwp_passwords'] ) ? $settings['ppwp_passwords'] : '';
|
||||
$whitelisted_roles = $this->transform_whitelisted_roles_to_string( $settings );
|
||||
$download_limit = isset( $settings['ppwp_download_limit'] ) ? $settings['ppwp_download_limit'] : '';
|
||||
$cookie = isset( $settings['ppwp_cookie'] ) ? $settings['ppwp_cookie'] : '';
|
||||
$headline = isset( $settings['ppwp_headline'] ) ? $settings['ppwp_headline'] : '';
|
||||
$description = isset( $settings['ppwp_description'] ) ? $settings['ppwp_description'] : '';
|
||||
$label = isset( $settings['ppwp_label'] ) ? $settings['ppwp_label'] : '';
|
||||
$placeholder = isset( $settings['ppwp_placeholder'] ) ? $settings['ppwp_placeholder'] : '';
|
||||
$button = isset( $settings['ppwp_button'] ) ? $settings['ppwp_button'] : '';
|
||||
$error_msg = isset( $settings['ppwp_error_msg'] ) ? $settings['ppwp_error_msg'] : '';
|
||||
$loading = isset( $settings['ppwp_loading'] ) ? $settings['ppwp_loading'] : '';
|
||||
|
||||
$shortcode = sprintf(
|
||||
'[ppwp id="" class="" passwords="%1$s" cookie="%2$s" download_limit="%3$s" whitelisted_roles="%4$s" headline="%5$s" description="%6$s" placeholder="%7$s" button="%8$s" label="%9$s" error_msg="%10$s" loading="%11$s"',
|
||||
$passwords,
|
||||
$cookie,
|
||||
$download_limit,
|
||||
$whitelisted_roles,
|
||||
esc_html__( $headline ),
|
||||
esc_html__( $description ),
|
||||
esc_html__( $placeholder ),
|
||||
esc_html__( $button ),
|
||||
esc_html__( $label ),
|
||||
esc_html__( $error_msg ),
|
||||
esc_html__( $loading )
|
||||
);
|
||||
|
||||
$shortcode = apply_filters( PPW_Constants::HOOK_SHORTCODE_ELEMENTOR_ATTRIBUTES, $shortcode, $settings );
|
||||
|
||||
$shortcode .= ']';
|
||||
|
||||
return $shortcode . $settings['ppwp_protected_content'] . '[/ppwp]';
|
||||
}
|
||||
|
||||
/**
|
||||
* Get whitelisted roles from Settings.
|
||||
*
|
||||
* @param array $settings The settings.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
private function transform_whitelisted_roles_to_string( $settings ) {
|
||||
if (
|
||||
! isset( $settings['ppwp_whitelisted_roles'] ) ||
|
||||
! is_array( $settings['ppwp_whitelisted_roles'] ) ||
|
||||
count( $settings['ppwp_whitelisted_roles'] ) === 0
|
||||
) {
|
||||
return '';
|
||||
}
|
||||
|
||||
return implode( ',', $settings['ppwp_whitelisted_roles'] );
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user