ad-health-notices.php
1 year ago
checks.php
1 year ago
display-conditions.php
10 months ago
filesystem.php
2 years ago
frontend_checks.php
1 year ago
in-content-injector.php
1 year ago
inline-css.php
1 year ago
utils.php
1 year ago
visitor-conditions.php
1 year ago
inline-css.php
124 lines
| 1 | <?php // phpcs:ignore WordPress.Files.FileName |
| 2 | |
| 3 | use AdvancedAds\Abstracts\Ad; |
| 4 | |
| 5 | /** |
| 6 | * Handles Advanced Ads Inline CSS settings. |
| 7 | */ |
| 8 | class Advanced_Ads_Inline_Css { |
| 9 | /** |
| 10 | * Holds the state if inline css should be output or not. |
| 11 | * |
| 12 | * @var bool |
| 13 | */ |
| 14 | protected $add_inline_css; |
| 15 | |
| 16 | /** |
| 17 | * Initialize the module. |
| 18 | */ |
| 19 | public function __construct() { |
| 20 | |
| 21 | /** |
| 22 | * Filters the state if inline css should be output or not. |
| 23 | * Ajax CB container could have added inline css already. |
| 24 | * |
| 25 | * Set to false if an addon output inline css before the main plugin. |
| 26 | * |
| 27 | * @param bool Contains the state. |
| 28 | */ |
| 29 | $this->add_inline_css = apply_filters( 'advanced-ads-output-inline-css', true ); |
| 30 | if ( ! $this->add_inline_css ) { |
| 31 | return; |
| 32 | } |
| 33 | |
| 34 | // Add inline css to the tcf container. |
| 35 | $this->check_tcf_option(); |
| 36 | } |
| 37 | |
| 38 | /** |
| 39 | * Adds inline css. |
| 40 | * |
| 41 | * @param array $wrapper Add wrapper array. |
| 42 | * @param string $css Custom inline css. |
| 43 | * @param bool|null $global_output Whether this ad is using cache-busting. |
| 44 | * |
| 45 | * @return array |
| 46 | */ |
| 47 | public function add_css( $wrapper, $css, $global_output ) { |
| 48 | $this->add_inline_css = $this->add_inline_css && false !== $global_output; |
| 49 | if ( ! $this->add_inline_css ) { |
| 50 | return $wrapper; |
| 51 | } |
| 52 | |
| 53 | $styles = $this->get_styles_by_string( $css ); |
| 54 | $wrapper['style'] = empty( $wrapper['style'] ) ? $styles : array_merge( $wrapper['style'], $styles ); |
| 55 | $this->add_inline_css = false; |
| 56 | |
| 57 | return $wrapper; |
| 58 | } |
| 59 | |
| 60 | /** |
| 61 | * Extend TCF output with a container containing inline css. |
| 62 | * |
| 63 | * @param string $output The output string. |
| 64 | * @param Ad $ad Ad instance. |
| 65 | * |
| 66 | * @return string |
| 67 | */ |
| 68 | public function add_tcf_container( $output, Ad $ad ) { |
| 69 | $inline_css = $ad->get_prop( 'inline-css' ); |
| 70 | |
| 71 | if ( |
| 72 | ! $ad->get_prop( 'ad_args.global_output' ) |
| 73 | || empty( $inline_css ) |
| 74 | || strpos( $output, '<div class="tcf-container"' ) === 0 |
| 75 | ) { |
| 76 | return $output; |
| 77 | } |
| 78 | |
| 79 | return sprintf( |
| 80 | '<div class="tcf-container" style="' . $inline_css . '">%s</div>', |
| 81 | $output |
| 82 | ); |
| 83 | } |
| 84 | |
| 85 | /** |
| 86 | * Reformat css styles string to array. |
| 87 | * |
| 88 | * @param string $string CSS-Style. |
| 89 | * |
| 90 | * @return array |
| 91 | */ |
| 92 | private function get_styles_by_string( string $string ): array { // phpcs:ignore |
| 93 | $chunks = array_chunk( preg_split( '/[:;]/', $string ), 2 ); |
| 94 | array_walk_recursive( |
| 95 | $chunks, |
| 96 | function ( &$value ) { |
| 97 | $value = trim( $value ); |
| 98 | } |
| 99 | ); |
| 100 | |
| 101 | $keys = array_filter( array_column( $chunks, 0 ) ); |
| 102 | $values = array_filter( array_column( $chunks, 1 ) ); |
| 103 | |
| 104 | $length = min( count( $keys ), count( $values ) ); |
| 105 | |
| 106 | return array_combine( array_slice( $keys, 0, $length ), array_slice( $values, 0, $length ) ); |
| 107 | } |
| 108 | |
| 109 | /** |
| 110 | * If TCF is active, i.e. there is a TCF container, add the options to this container. |
| 111 | */ |
| 112 | private function check_tcf_option() { |
| 113 | static $privacy_options; |
| 114 | if ( null === $privacy_options ) { |
| 115 | $privacy_options = Advanced_Ads_Privacy::get_instance()->options(); |
| 116 | } |
| 117 | |
| 118 | if ( ! empty( $privacy_options['enabled'] ) && 'on' === $privacy_options['enabled'] && 'iab_tcf_20' === $privacy_options['consent-method'] ) { |
| 119 | add_filter( 'advanced-ads-output-final', [ $this, 'add_tcf_container' ], 20, 2 ); |
| 120 | $this->add_inline_css = false; |
| 121 | } |
| 122 | } |
| 123 | } |
| 124 |