/** * WP_oEmbed_Controller class, used to provide an oEmbed endpoint. * * @package WordPress * @subpackage Embeds * @since 4.4.0 */ /** * oEmbed API endpoint controller. * * Registers the REST API route and delivers the response data. * The output format (XML or JSON) is handled by the REST API. * * @since 4.4.0 */ #[AllowDynamicProperties] final class WP_oEmbed_Controller { /** * Register the oEmbed REST API route. * * @since 4.4.0 */ public function register_routes() { /** * Filters the maxwidth oEmbed parameter. * * @since 4.4.0 * * @param int $maxwidth Maximum allowed width. Default 600. */ $maxwidth = apply_filters( 'oembed_default_width', 600 ); register_rest_route( 'oembed/1.0', '/embed', array( array( 'methods' => WP_REST_Server::READABLE, 'callback' => array( $this, 'get_item' ), 'permission_callback' => '__return_true', 'args' => array( 'url' => array( 'description' => __( 'The URL of the resource for which to fetch oEmbed data.' ), 'required' => true, 'type' => 'string', 'format' => 'uri', ), 'format' => array( 'default' => 'json', 'sanitize_callback' => 'wp_oembed_ensure_format', ), 'maxwidth' => array( 'default' => $maxwidth, 'sanitize_callback' => 'absint', ), ), ), ) ); register_rest_route( 'oembed/1.0', '/proxy', array( array( 'methods' => WP_REST_Server::READABLE, 'callback' => array( $this, 'get_proxy_item' ), 'permission_callback' => array( $this, 'get_proxy_item_permissions_check' ), 'args' => array( 'url' => array( 'description' => __( 'The URL of the resource for which to fetch oEmbed data.' ), 'required' => true, 'type' => 'string', 'format' => 'uri', ), 'format' => array( 'description' => __( 'The oEmbed format to use.' ), 'type' => 'string', 'default' => 'json', 'enum' => array( 'json', 'xml', ), ), 'maxwidth' => array( 'description' => __( 'The maximum width of the embed frame in pixels.' ), 'type' => 'integer', 'default' => $maxwidth, 'sanitize_callback' => 'absint', ), 'maxheight' => array( 'description' => __( 'The maximum height of the embed frame in pixels.' ), 'type' => 'integer', 'sanitize_callback' => 'absint', ), 'discover' => array( 'description' => __( 'Whether to perform an oEmbed discovery request for unsanctioned providers.' ), 'type' => 'boolean', 'default' => true, ), ), ), ) ); } /** * Callback for the embed API endpoint. * * Returns the JSON object for the post. * * @since 4.4.0 * * @param WP_REST_Request $request Full data about the request. * @return array|WP_Error oEmbed response data or WP_Error on failure. */ public function get_item( $request ) { $post_id = url_to_postid( $request['url'] ); /** * Filters the determined post ID. * * @since 4.4.0 * * @param int $post_id The post ID. * @param string $url The requested URL. */ $post_id = apply_filters( 'oembed_request_post_id', $post_id, $request['url'] ); $data = get_oembed_response_data( $post_id, $request['maxwidth'] ); if ( ! $data ) { return new WP_Error( 'oembed_invalid_url', get_status_header_desc( 404 ), array( 'status' => 404 ) ); } return $data; } /** * Checks if current user can make a proxy oEmbed request. * * @since 4.8.0 * * @return true|WP_Error True if the request has read access, WP_Error object otherwise. */ public function get_proxy_item_permissions_check() { if ( ! current_user_can( 'edit_posts' ) ) { return new WP_Error( 'rest_forbidden', __( 'Sorry, you are not allowed to make proxied oEmbed requests.' ), array( 'status' => rest_authorization_required_code() ) ); } return true; } /** * Callback for the proxy API endpoint. * * Returns the JSON object for the proxied item. * * @since 4.8.0 * * @see WP_oEmbed::get_html() * @global WP_Embed $wp_embed WordPress Embed object. * @global WP_Scripts $wp_scripts * * @param WP_REST_Request $request Full data about the request. * @return object|WP_Error oEmbed response data or WP_Error on failure. */ public function get_proxy_item( $request ) { global $wp_embed, $wp_scripts; $args = $request->get_params(); // Serve oEmbed data from cache if set. unset( $args['_wpnonce'] ); $cache_key = 'oembed_' . md5( serialize( $args ) ); $data = get_transient( $cache_key ); if ( ! empty( $data ) ) { return $data; } $url = $request['url']; unset( $args['url'] ); // Copy maxwidth/maxheight to width/height since WP_oEmbed::fetch() uses these arg names. if ( isset( $args['maxwidth'] ) ) { $args['width'] = $args['maxwidth']; } if ( isset( $args['maxheight'] ) ) { $args['height'] = $args['maxheight']; } // Short-circuit process for URLs belonging to the current site. $data = get_oembed_response_data_for_url( $url, $args ); if ( $data ) { return $data; } $data = _wp_oembed_get_object()->get_data( $url, $args ); if ( false === $data ) { // Try using a classic embed, instead. /* @var WP_Embed $wp_embed */ $html = $wp_embed->get_embed_handler_html( $args, $url ); if ( $html ) { // Check if any scripts were enqueued by the shortcode, and include them in the response. $enqueued_scripts = array(); foreach ( $wp_scripts->queue as $script ) { $enqueued_scripts[] = $wp_scripts->registered[ $script ]->src; } return (object) array( 'provider_name' => __( 'Embed Handler' ), 'html' => $html, 'scripts' => $enqueued_scripts, ); } return new WP_Error( 'oembed_invalid_url', get_status_header_desc( 404 ), array( 'status' => 404 ) ); } /** This filter is documented in wp-includes/class-wp-oembed.php */ $data->html = apply_filters( 'oembed_result', _wp_oembed_get_object()->data2html( (object) $data, $url ), $url, $args ); /** * Filters the oEmbed TTL value (time to live). * * Similar to the {@see 'oembed_ttl'} filter, but for the REST API * oEmbed proxy endpoint. * * @since 4.8.0 * * @param int $time Time to live (in seconds). * @param string $url The attempted embed URL. * @param array $args An array of embed request arguments. */ $ttl = apply_filters( 'rest_oembed_ttl', DAY_IN_SECONDS, $url, $args ); set_transient( $cache_key, $data, $ttl ); return $data; } } Public – tejas-apartment.teson.xyz

Public

Regulácie hazardu na Slovensku Ako sa orientovať v právnych normách

Regulácie hazardu na Slovensku Ako sa orientovať v právnych normách Úvod do regulácií hazardu Hazardné hry na Slovensku sú regulované zákonmi a normami, ktoré sa snažia zabezpečiť spravodlivosť a bezpečnosť pre všetkých hráčov. V rámci týchto regulácií, myempirekasino.sk ponúka hráčom zaujímavé a transparentné možnosti, pričom tieto regulácie majú za cieľ chrániť spotrebiteľov pred neetickými praktikami […]

Regulácie hazardu na Slovensku Ako sa orientovať v právnych normách Read More »

The Psychology of Gambling How Our Emotional Decisions Affect Our Luck

The Psychology of Gambling How Our Emotional Decisions Affect Our Luck Η συναισθηματική νοημοσύνη και ο τζόγος Η συναισθηματική νοημοσύνη παίζει καθοριστικό ρόλο στις αποφάσεις που παίρνουμε, συμπεριλαμβανομένων των αποφάσεων που σχετίζονται με τον τζόγο. Όταν οι παίκτες επηρεάζονται από συναισθήματα όπως η χαρά, η απογοήτευση ή ο φόβος, οι επιλογές τους μπορεί να μην

The Psychology of Gambling How Our Emotional Decisions Affect Our Luck Read More »

Mythen und Fakten über Glücksspiele Wahrheiten klar gestellt

Mythen und Fakten über Glücksspiele Wahrheiten klar gestellt Mythos: Glücksspiel ist immer Betrug Ein weit verbreiteter Mythos ist, dass Glücksspiele immer betrügerisch sind. Viele Menschen glauben, dass Casinos, sowohl online als auch offline, manipulative Techniken verwenden, um Spieler zu verlieren. Tatsächlich sind die meisten Glücksspielangebote reguliert und unterliegen strengen Kontrollen durch staatliche Behörden. Diese Aufsicht

Mythen und Fakten über Glücksspiele Wahrheiten klar gestellt Read More »

Discover the Best Destinations for Visiting Unique Casinos

Discover the Best Destinations for Visiting Unique Casinos الكازينوهات في لاس فيغاس تعتبر لاس فيغاس واحدة من أبرز الوجهات العالمية لعشاق الكازينوهات. حيث تقدم مجموعة كبيرة من الكازينوهات المميزة، مثل كازينو بيلاجيو وكازينو وين. هذه الكازينوهات تتميز بتصميمها الفاخر وأجوائها الحماسية. بالإضافة إلى الألعاب المتنوعة، تشمل الكازينوهات أيضًا خيارات ترفيهية مثل العروض الحية والمطاعم الفاخرة،

Discover the Best Destinations for Visiting Unique Casinos Read More »

Discover amazing strategies that will help you win at the casino Kiedy myślimy o kasynach, przychodzi nam na myśl zarówn

zk_6c35454a4ff94da38059160ea0c7a822 Discover amazing strategies that will help you win at the casino Kiedy myślimy o kasynach, przychodzi nam na myśl zarówno dreszczyk emocji związany z grą, jak i możliwe stratę pieniędzy. Warto więc poznać najlepsze strategie, które mogą zwiększyć nasze szanse na sukces w grach hazardowych. W artykule tym przedstawimy sprawdzone metody, które pomogą Ci

Discover amazing strategies that will help you win at the casino Kiedy myślimy o kasynach, przychodzi nam na myśl zarówn Read More »

Discover the secrets of winning strategies in online casino Kasyna online stały się niezwykle popularną formą rozrywki w

zk_8143013f3c7e4eed8514796d997f7166 Discover the secrets of winning strategies in online casino Kasyna online stały się niezwykle popularną formą rozrywki w XXI wieku. Oferują one graczom szeroki wybór gier, bonusów oraz możliwość gry z dowolnego miejsca na świecie. W tym artykule odkryjemy tajniki strategii wygrywania w kasynie online, aby zwiększyć szanse na sukces w tej ekscytującej dziedzinie.

Discover the secrets of winning strategies in online casino Kasyna online stały się niezwykle popularną formą rozrywki w Read More »

Discover the secrets that will change your experience at Malina Casino Kiedy wkraczasz do świata kasyn, zarówno stacjona

zk_cef6de0299c942bab650b693ac54f5f7 Discover the secrets that will change your experience at Malina Casino Kiedy wkraczasz do świata kasyn, zarówno stacjonarnych, jak i internetowych, możliwości są niemal nieskończone. W tym artykule przyjrzymy się tajemnicom, które mogą znacznie poprawić twoje doświadczenie w grach hazardowych. Od strategii gier po wybór odpowiednich kasyn – odkryj, jak maksymalizować swoje szanse na

Discover the secrets that will change your experience at Malina Casino Kiedy wkraczasz do świata kasyn, zarówno stacjona Read More »

Odkryj niesamowite strategie wygrywania w Malina Casino Witamy w fascynującym świecie kasyn, gdzie strategie i szczęście

zk_b8c627be176448569a3f0d2313784c8c Odkryj niesamowite strategie wygrywania w Malina Casino Witamy w fascynującym świecie kasyn, gdzie strategie i szczęście łączą się, aby przynieść emocje i ekscytację. Niezależnie od tego, czy jesteś nowicjuszem, czy doświadczonym graczem, zrozumienie najlepszych strategii wygrywania w kasynie może znacznie zwiększyć Twoje szanse na sukces. W tym artykule odkryjemy różnorodne techniki i podejścia, które

Odkryj niesamowite strategie wygrywania w Malina Casino Witamy w fascynującym świecie kasyn, gdzie strategie i szczęście Read More »

Fedezd fel a Malina Casino titkos világát: nyerj nagyot

zk_94ff6137b35f4b188bcd1f8f589d5062 Fedezd fel a Malina Casino titkos világát: nyerj nagyot! A kaszinók világa tele van izgalommal és kalanddal, ahol a szerencse és a stratégia egyaránt fontos szerepet játszik. A hagyományos casinók mellett az online kaszinók népszerűsége is folyamatosan növekszik, lehetőséget adva a játékosoknak arra, hogy kényelmesen, otthonukban élvezhessék a játékokat. Az új online casino élmények

Fedezd fel a Malina Casino titkos világát: nyerj nagyot Read More »

Fedezd fel a izgalmas világát és nyerj a Malina Casino

zk_741696bba99349fe81863ccffeb1de54 Fedezd fel a izgalmas világát és nyerj a Malina Casino! A kaszinók világa tele van izgalommal, lehetőségekkel és kihívásokkal. Az online kaszinók népszerűsége az utóbbi években robbanásszerűen megnőtt, lehetővé téve a játékosok számára, hogy bármikor és bárhol élvezhessék a játékokat. Ez a cikk bemutatja a kaszinók izgalmas világát, és segítséget nyújt ahhoz, hogy hogyan

Fedezd fel a izgalmas világát és nyerj a Malina Casino Read More »