dding__sm="30px 29px 30px 17px" padding__md="30px 30px 30px 20px" rotate="-5" animate="fadeInLeft" position_x="0" position_x__sm="50" position_x__md="30" position_y="100" position_y__md="100" text_align="left" text_depth="5" bg="rgba(121, 121, 121, 0.59)" depth="5" border="3px 13px 2px 2px" border_margin="2px 0px 2px 0px" border_radius="0" border_color="rgba(0, 0, 0, 0.58)"] [block id="adblock-3"] [button text="Mehr Info" color="alert" style="gloss" depth="4" expand="true" icon="icon-angle-right" icon_pos="left" link="/3d-design"] [/text_box] [/ux_banner] [ux_banner height="450px" height__sm="373px" bg="3547" bg_color="rgb(255, 255, 255)" bg_pos="63% 0%" border="0px 0px 5px 0px" border_radius="0" border_color="rgba(81, 81, 81, 0.81)" video_visibility="visible"] [text_box text_color="dark" width="20" width__sm="40" width__md="24" margin__sm="0px 0px 0px -83px" margin__md="57px 0px -10px -170px" padding="30px 40px 30px 35px" padding__sm="30px 29px 30px 17px" padding__md="30px 30px 30px 20px" rotate="-5" animate="fadeInLeft" position_x="0" position_x__sm="50" position_x__md="30" position_y="100" position_y__md="100" text_align="left" text_depth="5" bg="rgba(121, 121, 121, 0.59)" depth="5" border="3px 13px 2px 2px" border_margin="2px 0px 2px 0px" border_radius="0" border_color="rgba(0, 0, 0, 0.58)"] [block id="adblock-4"] [button text="Mehr Beispiele" color="alert" style="gloss" depth="4" expand="true" icon="icon-angle-right" icon_pos="left" link="/logo-design"] [/text_box] [/ux_banner] [ux_banner height="450px" height__sm="373px" bg="3033" bg_color="rgb(255, 255, 255)" bg_pos="44% 0%" border="0px 0px 5px 0px" border_radius="0" border_color="rgba(81, 81, 81, 0.81)" video_visibility="visible"] [text_box text_color="dark" width="25" width__sm="48" width__md="31" margin__sm="0px 0px 0px -83px" margin__md="57px 0px -10px -170px" padding="30px 40px 30px 35px" padding__sm="30px 29px 30px 17px" padding__md="30px 30px 30px 20px" rotate="-5" animate="fadeInLeft" position_x="0" position_x__sm="50" position_x__md="30" position_y="100" position_y__md="100" text_align="left" text_depth="5" bg="rgba(121, 121, 121, 0.59)" depth="5" border="3px 13px 2px 2px" border_margin="2px 0px 2px 0px" border_radius="0" border_color="rgba(0, 0, 0, 0.58)"] [block id="adblock-5"] [button text="Mehr Beispiele" color="alert" style="gloss" depth="4" expand="true" icon="icon-angle-right" icon_pos="left" link="/flyer-design"] [/text_box] [/ux_banner] [ux_banner height="450px" height__sm="373px" bg="3009" bg_color="rgb(255, 255, 255)" bg_pos="17% 100%" border="0px 0px 5px 0px" border_radius="0" border_color="rgba(81, 81, 81, 0.81)" video_visibility="visible"] [text_box text_color="dark" width="30" width__sm="48" width__md="31" margin__sm="0px 0px 0px -83px" margin__md="57px 0px -10px -170px" padding="30px 40px 30px 35px" padding__sm="30px 29px 30px 17px" padding__md="30px 30px 30px 20px" rotate="-5" animate="fadeInLeft" position_x="0" position_x__sm="50" position_x__md="30" position_y="100" position_y__md="100" text_align="left" text_depth="5" bg="rgba(121, 121, 121, 0.59)" depth="5" border="3px 13px 2px 2px" border_margin="2px 0px 2px 0px" border_radius="0" border_color="rgba(0, 0, 0, 0.58)"] [block id="ablock-6"] [button text="Mehr Beispiele" color="alert" style="gloss" depth="4" expand="true" icon="icon-angle-right" icon_pos="left" link="/banner-design"] [/text_box] [/ux_banner] [ux_banner height="450px" height__sm="373px" bg="4333" bg_color="rgb(255, 255, 255)" bg_pos="51% 0%" border="0px 0px 5px 0px" border_radius="0" border_color="rgba(81, 81, 81, 0.81)" link="/visitenkarte-design" video_visibility="visible"] [text_box text_color="dark" width="33" width__sm="92" width__md="43" margin__sm="0px 0px 0px -83px" margin__md="57px 0px -10px -170px" padding="30px 40px 30px 35px" padding__sm="30px 29px 30px 96px" padding__md="30px 30px 30px 20px" rotate="-5" animate="fadeInLeft" position_x="0" position_x__sm="50" position_x__md="30" position_y="100" position_y__md="100" text_align="left" text_depth="5" bg="rgba(121, 121, 121, 0.59)" depth="5" btion is_incentive_dismissed( string $incentive_id, string $suggestion_id, string $context = '' ): bool { $provider = $this->get_incentive_instance( $suggestion_id ); if ( null === $provider ) { return false; } return $provider->is_dismissed( $incentive_id, $context ); } /** * Get the dismissals (contexts) for an incentive. * * @param string $incentive_id The incentive ID. * @param string $suggestion_id The suggestion ID. * * @return string[] The contexts in which the incentive has been dismissed. */ public function get_incentive_dismissals( string $incentive_id, string $suggestion_id ): array { $provider = $this->get_incentive_instance( $suggestion_id ); if ( null === $provider ) { return array(); } return $provider->get_dismissals( $incentive_id ); } /** * Dismiss an incentive for a specific payment extension suggestion. * * @param string $incentive_id The incentive ID. * @param string $suggestion_id The suggestion ID. * @param string $context Optional. The context ID for which the incentive should be dismissed. * If not provided, the incentive will be dismissed for all contexts. * * @return bool True if the incentive was not previously dismissed and now it is. False otherwise. * @throws \Exception If no incentives provider is available for the suggestion. */ public function dismiss_incentive( string $incentive_id, string $suggestion_id, string $context = 'all' ): bool { $provider = $this->get_incentive_instance( $suggestion_id ); if ( null === $provider ) { throw new \Exception( 'No incentives provider for the suggestion.' ); } return $provider->dismiss( $incentive_id, $context ); } /** * Get the incentive provider instance for a specific payment extension suggestion. * * @param string $suggestion_id The suggestion ID. * * @return ?Incentive The incentives provider instance for the suggestion. * Returns null if no provider is available for the suggestion. */ public function get_incentive_instance( string $suggestion_id ): ?Incentive { if ( isset( $this->instances[ $suggestion_id ] ) ) { return $this->instances[ $suggestion_id ]; } // If the suggestion ID is not mapped to an incentives provider class, return null. if ( ! isset( $this->suggestion_incentives_class_map[ $suggestion_id ] ) ) { $this->instances[ $suggestion_id ] = null; return null; } // Create an instance of the incentives provider class. $provider_class = $this->suggestion_incentives_class_map[ $suggestion_id ]; $this->instances[ $suggestion_id ] = new $provider_class( $suggestion_id ); return $this->instances[ $suggestion_id ]; } /** * Check if a specific payment extension suggestion has an incentive provider registered. * * @param string $suggestion_id The suggestion ID. * * @return bool Whether the suggestion has an incentive provider registered. */ public function has_incentive_provider( string $suggestion_id ): bool { return null !== $this->get_incentive_instance( $suggestion_id ); } }