Add upstream

This commit is contained in:
root
2019-10-24 00:12:05 +02:00
parent 85d41e4216
commit ac980f592c
3504 changed files with 1049983 additions and 29971 deletions

View File

@@ -0,0 +1,25 @@
<div
class="<?php echo implode( ' ', $classes ); ?>"
data-hide-timeout="<?php echo intval( $instance['hide-timeout'] ); ?>"
data-consent-expiration="<?php echo intval( $instance['consent-expiration'] ); ?>"
id="eu-cookie-law"
>
<form method="post">
<input type="submit" value="<?php echo esc_attr( $instance['button'] ); ?>" class="accept" />
</form>
<?php if ( 'default' == $instance['text'] || empty( $instance['customtext'] ) ) {
echo nl2br( $instance['default-text'] );
} else {
echo nl2br( esc_html( $instance['customtext'] ) );
} ?>
<a href="<?php
$policy_link_text = 'default' === $instance['policy-url'] || empty( $instance['custom-policy-url'] )
? $instance['default-policy-url']
: $instance['custom-policy-url'];
echo esc_url( $policy_link_text );
?>" >
<?php echo esc_html( $instance['policy-link-text'] ); ?>
</a>
</div>