Merged in feature/MAW-846-sharethis (pull request #52)
Feature/MAW-846 sharethis * MAW-846: ShareThis social button plugin * MAW-846: ShareThis social buttons update * Merged develop into feature/MAW-846-sharethis
This commit is contained in:
@@ -0,0 +1,117 @@
|
||||
<?php
|
||||
/**
|
||||
* Configure tool template for gdpr onboarding
|
||||
*
|
||||
* @package ShareThisShareButtons
|
||||
*/
|
||||
|
||||
?>
|
||||
<div class="gdpr-platform platform-config-wrapper">
|
||||
<h2>
|
||||
<?php echo esc_html_e( 'Consent Management Platform', 'sharethis-share-buttons' ); ?>
|
||||
</h2>
|
||||
<?php if ( 'Disabled' === $enabled['gdpr'] ) : ?>
|
||||
<button class="enable-tool" data-button="gdpr-compliance-tool-v2">Enable Tool</button>
|
||||
<?php endif; ?>
|
||||
|
||||
<h4 style="text-align: left; font-size: 15px;">
|
||||
<?php echo esc_html__( 'Configure', 'sharethis-share-buttons' ); ?>
|
||||
</h4>
|
||||
<div class="st-design-message">
|
||||
<?php
|
||||
echo esc_html__(
|
||||
'Use the settings below to configure your GDPR compliance tool popup.',
|
||||
'sharethis-share-buttons'
|
||||
);
|
||||
?>
|
||||
</div>
|
||||
|
||||
<div id="starter-questions">
|
||||
<label>
|
||||
<?php
|
||||
echo esc_html__(
|
||||
'PUBLISHER NAME * (this will be displayed in the consent tool)',
|
||||
'sharethis-share-buttons'
|
||||
);
|
||||
?>
|
||||
</label>
|
||||
|
||||
<input type="text" id="sharethis-publisher-name" placeholder="Enter your company name">
|
||||
|
||||
<label>
|
||||
<?php
|
||||
echo esc_html__(
|
||||
'WHICH USERS SHOULD BE ASKED FOR CONSENT?',
|
||||
'sharethis-share-buttons'
|
||||
);
|
||||
?>
|
||||
</label>
|
||||
|
||||
<select id="sharethis-user-type">
|
||||
<?php foreach ( $user_types as $user_value => $name ) : ?>
|
||||
<option value="<?php echo esc_attr( $user_value ); ?>">
|
||||
<?php echo esc_html( $name ); ?>
|
||||
</option>
|
||||
<?php endforeach; ?>
|
||||
</select>
|
||||
|
||||
<label>
|
||||
<?php echo esc_html__( 'SELECT LANGUAGE', 'sharethis-share-buttons' ); ?>
|
||||
</label>
|
||||
|
||||
<select id="st-language">
|
||||
<?php foreach ( $languages as $language => $code ) : ?>
|
||||
<option value="<?php echo esc_attr( $code ); ?>">
|
||||
<?php echo esc_html( $language ); ?>
|
||||
</option>
|
||||
<?php endforeach; ?>
|
||||
</select>
|
||||
|
||||
<p class="form-color">
|
||||
<label>
|
||||
<?php
|
||||
echo esc_html__(
|
||||
'CHOOSE FORM COLOR',
|
||||
'gdpr-complianc-tool'
|
||||
);
|
||||
?>
|
||||
</label>
|
||||
<div id="sharethis-form-color">
|
||||
<?php foreach ( $colors as $color ) : ?>
|
||||
<div class="color"
|
||||
data-value="<?php echo esc_attr( $color ); ?>"
|
||||
style="max-width: 30px; max-height: 30px; overflow: hidden;">
|
||||
<span style="content: ' '; background-color:<?php echo esc_html( $color ); ?>; padding: 40px;"></span>
|
||||
</div>
|
||||
<?php endforeach; ?>
|
||||
</div>
|
||||
</p>
|
||||
</div>
|
||||
<div class="accor-wrap switch" id="purposes">
|
||||
<div class="accor-tab">
|
||||
<span class="accor-arrow">►</span>
|
||||
<?php echo esc_html__( 'WHY ARE YOU COLLECTING CUSTOMER DATA?', 'sharethis-share-buttons' ); ?>
|
||||
</div>
|
||||
|
||||
<div class="accor-content" id="publisher-purpose" class="switch">
|
||||
<?php require $this->plugin->dir_path . '/templates/general/gdpr/purposes.php'; ?>
|
||||
</div>
|
||||
</div>
|
||||
<?php if ( isset( $vendor_data ) ) : ?>
|
||||
<div class="accor-wrap restrict-vendors">
|
||||
<div class="accor-tab">
|
||||
<span class="accor-arrow">►</span>
|
||||
<?php echo esc_html__( 'VENDOR EXCLUSIONS', 'sharethis-share-buttons' ); ?>
|
||||
</div>
|
||||
<div class="accor-content">
|
||||
<div class="well">
|
||||
<?php include $this->plugin->dir_path . '/templates/general/gdpr/exclusions.php'; ?>
|
||||
</div>
|
||||
</div
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
<?php if ( 'Enabled' === $enabled['gdpr'] ) : ?>
|
||||
<button class="disable-tool" data-button="gdpr-compliance-tool-v2">Disable Tool</button>
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
</div>
|
||||
Reference in New Issue
Block a user