(0vKB^UwA^UvP0vKB^UwA^Uvx0vKB^UwA^Uhv0vKB^UwA^U0v0vKB^UwA^Uvfeedback@1vKB^UwA^UvD!w _feedback1v KB^UwA^Uvcp google_map1v KB^UwA^UPv^c _google_map2v KB^UwA^Uv02v KB^UwA^UvX2v KB^UwA^Uv2vKB^UwA^Upv2vKB^UwA^U8v2vKB^UwA^Uv2vKB^UwA^Uv 3vKB^UwA^Uvp3vKB^UwA^UXv%T _thumbnail_id3vKB^UwA^U v%T _thumbnail_id4vKB^UwA^Uv%T _thumbnail_id`4vKB^UwA^Uv%T _thumbnail_id4vKB^UwA^Uxv%T _thumbnail_id5vKB^UwA^U@v%T _thumbnail_idP5vKB^UwA^Uv%T _thumbnail_id5vKB^UwA^Uv%T _thumbnail_id5vKB^UwA^Uv%T _thumbnail_id@6vKB^UwA^U(v%T _thumbnail_id6vKB^UwA^Uv%T _thumbnail_id6vKB^UwA^Uv%T _thumbnail_id07vKB^UwA^Uv%T _thumbnail_id7v KB^UwA^UHv%T _thumbnail_id7v!KB^UwA^Uv%T _thumbnail_id 8v"KB^UwA^Uv%T _thumbnail_idp8v#KB^UwA^Uv%T _thumbnail_id8v$KB^UwA^Uhv%T _thumbnail_id9v%KB^UwA^U0v%T _thumbnail_id`9v&KB^UwA^Uv%T _thumbnail_id9v'KB^UwA^Uv%T _thumbnail_id:v(KB^UwA^Uv%T _thumbnail_idP:v)KB^UwA^UPv%T _thumbnail_id:v*KB^UwA^Uv%T _thumbnail_id:v+KB^UwA^Uv%T _thumbnail_id@;v,KB^UwA^Uv%T _thumbnail_id;v-KB^UwA^Upv%T _thumbnail_id;v.KB^UwA^U8v%T _thumbnail_id0v5KB^UwA^U~v%T _thumbnail_id`>v6KB^UwA^Up~v%T _thumbnail_id>v7KB^UwA^U8~v%T _thumbnail_id?v8KB^UwA^U~v%T _thumbnail_idP?v9KB^UwA^U}v%T _thumbnail_id?v:KB^UwA^U}v%T _thumbnail_idv;KB^UwA^UX}v%T _thumbnail_id* * Send an HTTP request. * * @param array $options Request options to apply to the given * request and to the transfer. See \GuzzleHttp\RequestOptions. * * @throws GuzzleException */ public function send(\YoastSEO_Vendor\Psr\Http\Message\RequestInterface $request, array $options = []) : \YoastSEO_Vendor\Psr\Http\Message\ResponseInterface { $options[\YoastSEO_Vendor\GuzzleHttp\RequestOptions::SYNCHRONOUS] = \true; return $this->sendAsync($request, $options)->wait(); } /** * The HttpClient PSR (PSR-18) specify this method. * * {@inheritDoc} */ public function sendRequest(\YoastSEO_Vendor\Psr\Http\Message\RequestInterface $request) : \YoastSEO_Vendor\Psr\Http\Message\ResponseInterface { $options[\YoastSEO_Vendor\GuzzleHttp\RequestOptions::SYNCHRONOUS] = \true; $options[\YoastSEO_Vendor\GuzzleHttp\RequestOptions::ALLOW_REDIRECTS] = \false; $options[\YoastSEO_Vendor\GuzzleHttp\RequestOptions::HTTP_ERRORS] = \false; return $this->sendAsync($request, $options)->wait(); } /** * Create and send an asynchronous HTTP request. * * Use an absolute path to override the base path of the client, or a * relative path to append to the base path of the client. The URL can * contain the query string as well. Use an array to provide a URL * template and additional variables to use in the URL template expansion. * * @param string $method HTTP method * @param string|UriInterface $uri URI object or string. * @param array $options Request options to apply. See \GuzzleHttp\RequestOptions. */ public function requestAsync(string $method, $uri = '', array $options = []) : \YoastSEO_Vendor\GuzzleHttp\Promise\PromiseInterface { $options = $this->prepareDefaults($options); // Remove request modifying parameter because it can be done up-front. $headers = $options['headers'] ?? []; $body = $options['body'] ?? null; $version = $options['version'] ?? '1.1'; // Merge the URI into the base URI. $uri = $this->buildUri(\YoastSEO_Vendor\GuzzleHttp\Psr7\Utils::uriFor($uri), $options); if (\is_array($body)) { throw $this->invalidBody(); } $request = new \YoastSEO_Vendor\GuzzleHttp\Psr7\Request($method, $uri, $headers, $body, $version); // Remove the option so that they are not doubly-applied. unset($options['headers'], $options['body'], $options['version']); return $this->transfer($request, $options); } /** * Create and send an HTTP request. * * Use an absolute path to override the base path of the client, or a * relative path to append to the base path of the client. The URL can * contain the query string as well. * * @param string $method HTTP method. * @param string|UriInterface $uri URI object or string. * @param array $options Request options to apply. See \GuzzleHttp\RequestOptions. * * @throws GuzzleException */ public function request(string $method, $uri = '', array $options = []) : \YoastSEO_Vendor\Psr\Http\Message\ResponseInterface { $options[\YoastSEO_Vendor\GuzzleHttp\RequestOptions::SYNCHRONOUS] = \true; return $this->requestAsync($method, $uri, $options)->wait(); } /** * Get a client configuration option. * * These options include default request options of the client, a "handler" * (if utilized by the concrete client), and a "base_uri" if utilized by * the concrete client. * * @param string|null $option The config option to retrieve. * * @return mixed * * @deprecated Client::getConfig will be removed in guzzlehttp/guzzle:8.0. */ public function getConfig(string $option = null) { return $option === null ? $this->config : $this->config[$option] ?? null; } private function buildUri(\YoastSEO_Vendor\Psr\Http\Message\UriInterface $uri, array $config) : \YoastSEO_Vendor\Psr\Http\Message\UriInterface { if (isset($config['base_uri'])) { $uri = \YoastSEO_Vendor\GuzzleHttp\Psr7\UriResolver::resolve(\YoastSEO_Vendor\GuzzleHttp\Psr7\Utils::uriFor($config['base_uri']), $uri); } if (isset($config['idn_conversion']) && $config['idn_conversion'] !== \false) { $idnOptions = $config['idn_conversion'] === \true ? \IDNA_DEFAULT : $config['idn_conversion']; $uri = \YoastSEO_Vendor\GuzzleHttp\Utils::idnUriConvert($uri, $idnOptions); } return $uri->getScheme() === '' && $uri->getHost() !== '' ? $uri->withScheme('http') : $uri; } /** * Configures the default options for a client. */ private function configureDefaults(array $config) : void { $defaults = ['allow_redirects' => \YoastSEO_Vendor\GuzzleHttp\RedirectMiddleware::$defaultSettings, 'http_errors' => \true, 'decode_content' => \true, 'verify' => \true, 'cookies' => \false, 'idn_conversion' => \false]; // Use the standard Linux HTTP_PROXY and HTTPS_PROXY if set. // We can only trust the HTTP_PROXY environment variable in a CLI // process due to the fact that PHP has no reliable mechanism to // get environment variables that start with "HTTP_". if (\PHP_SAPI === 'cli' && ($proxy = \YoastSEO_Vendor\GuzzleHttp\Utils::getenv('HTTP_PROXY'))) { $defaults['proxy']['http'] = $proxy; } if ($proxy = \YoastSEO_Vendor\GuzzleHttp\Utils::getenv('HTTPS_PROXY')) { $defaults['proxy']['https'] = $proxy; } if ($noProxy = \YoastSEO_Vendor\GuzzleHttp\Utils::getenv('NO_PROXY')) { $cleanedNoProxy = \str_replace(' ', '', $noProxy); $defaults['proxy']['no'] = \explode(',', $cleanedNoProxy); } $this->config = $config + $defaults; if (!empty($config['cookies']) && $config['cookies'] === \true) { $this->config['cookies'] = new \YoastSEO_Vendor\GuzzleHttp\Cookie\CookieJar(); } // Add the default user-agent header. if (!isset($this->config['headers'])) { $this->config['headers'] = ['User-Agent' => \YoastSEO_Vendor\GuzzleHttp\Utils::defaultUserAgent()]; } else { // Add the User-Agent header if one was not already set. foreach (\array_keys($this->config['headers']) as $name) { if (\strtolower($name) === 'user-agent') { return; } } $this->config['headers']['User-Agent'] = \YoastSEO_Vendor\GuzzleHttp\Utils::defaultUserAgent(); } } /** * Merges default options into the array. * * @param array $options Options to modify by reference */ private function prepareDefaults(array $options) : array { $defaults = $this->config; if (!empty($defaults['headers'])) { // Default headers are only added if they are not present. $defaults['_conditional'] = $defaults['headers']; unset($defaults['headers']); } // Special handling for headers is required as they are added as // conditional headers and as headers passed to a request ctor. if (\array_key_exists('headers', $options)) { // Allows default headers to be unset. if ($options['headers'] === null) { $defaults['_conditional'] = []; unset($options['headers']); } elseif (!\is_array($options['headers'])) { throw new \YoastSEO_Vendor\GuzzleHttp\Exception\InvalidArgumentException('headers must be an array'); } } // Shallow merge defaults underneath options. $result = $options + $defaults; // Remove null values. foreach ($result as $k => $v) { if ($v === null) { unset($result[$k]); } } return $result; } /** * Transfers the given request and applies request options. * * The URI of the request is not modified and the request options are used * as-is without merging in default options. * * @param array $options See \GuzzleHttp\RequestOptions. */ private function transfer(\YoastSEO_Vendor\Psr\Http\Message\RequestInterface $request, array $options) : \YoastSEO_Vendor\GuzzleHttp\Promise\PromiseInterface { $request = $this->applyOptions($request, $options); /** @var HandlerStack $handler */ $handler = $options['handler']; try { return \YoastSEO_Vendor\GuzzleHttp\Promise\Create::promiseFor($handler($request, $options)); } catch (\Exception $e) { return \YoastSEO_Vendor\GuzzleHttp\Promise\Create::rejectionFor($e); } } /** * Applies the array of request options to a request. */ private function applyOptions(\YoastSEO_Vendor\Psr\Http\Message\RequestInterface $request, array &$options) : \YoastSEO_Vendor\Psr\Http\Message\RequestInterface { $modify = ['set_headers' => []]; if (isset($options['headers'])) { if (\array_keys($options['headers']) === \range(0, \count($options['headers']) - 1)) { throw new \YoastSEO_Vendor\GuzzleHttp\Exception\InvalidArgumentException('The headers array must have header name as keys.'); } $modify['set_headers'] = $options['headers']; unset($options['headers']); } if (isset($options['form_params'])) { if (isset($options['multipart'])) { throw new \YoastSEO_Vendor\GuzzleHttp\Exception\InvalidArgumentException('You cannot use ' . 'form_params and multipart at the same time. Use the ' . 'form_params option if you want to send application/' . 'x-www-form-urlencoded requests, and the multipart ' . 'option to send multipart/form-data requests.'); } $options['body'] = \http_build_query($options['form_params'], '', '&'); unset($options['form_params']); // Ensure that we don't have the header in different case and set the new value. $options['_conditional'] = \YoastSEO_Vendor\GuzzleHttp\Psr7\Utils::caselessRemove(['Content-Type'], $options['_conditional']); $options['_conditional']['Content-Type'] = 'application/x-www-form-urlencoded'; } if (isset($options['multipart'])) { $options['body'] = new \YoastSEO_Vendor\GuzzleHttp\Psr7\MultipartStream($options['multipart']); unset($options['multipart']); } if (isset($options['json'])) { $options['body'] = \YoastSEO_Vendor\GuzzleHttp\Utils::jsonEncode($options['json']); unset($options['json']); // Ensure that we don't have the header in different case and set the new value. $options['_conditional'] = \YoastSEO_Vendor\GuzzleHttp\Psr7\Utils::caselessRemove(['Content-Type'], $options['_conditional']); $options['_conditional']['Content-Type'] = 'application/json'; } if (!empty($options['decode_content']) && $options['decode_content'] !== \true) { // Ensure that we don't have the header in different case and set the new value. $options['_conditional'] = \YoastSEO_Vendor\GuzzleHttp\Psr7\Utils::caselessRemove(['Accept-Encoding'], $options['_conditional']); $modify['set_headers']['Accept-Encoding'] = $options['decode_content']; } if (isset($options['body'])) { if (\is_array($options['body'])) { throw $this->invalidBody(); } $modify['body'] = \YoastSEO_Vendor\GuzzleHttp\Psr7\Utils::streamFor($options['body']); unset($options['body']); } if (!empty($options['auth']) && \is_array($options['auth'])) { $value = $options['auth']; $type = isset($value[2]) ? \strtolower($value[2]) : 'basic'; switch ($type) { case 'basic': // Ensure that we don't have the header in different case and set the new value. $modify['set_headers'] = \YoastSEO_Vendor\GuzzleHttp\Psr7\Utils::caselessRemove(['Authorization'], $modify['set_headers']); $modify['set_headers']['Authorization'] = 'Basic ' . \base64_encode("{$value[0]}:{$value[1]}"); break; case 'digest': // @todo: Do not rely on curl $options['curl'][\CURLOPT_HTTPAUTH] = \CURLAUTH_DIGEST; $options['curl'][\CURLOPT_USERPWD] = "{$value[0]}:{$value[1]}"; break; case 'ntlm': $options['curl'][\CURLOPT_HTTPAUTH] = \CURLAUTH_NTLM; $options['curl'][\CURLOPT_USERPWD] = "{$value[0]}:{$value[1]}"; break; } } if (isset($options['query'])) { $value = $options['query']; if (\is_array($value)) { $value = \http_build_query($value, '', '&', \PHP_QUERY_RFC3986); } if (!\is_string($value)) { throw new \YoastSEO_Vendor\GuzzleHttp\Exception\InvalidArgumentException('query must be a string or array'); } $modify['query'] = $value; unset($options['query']); } // Ensure that sink is not an invalid value. if (isset($options['sink'])) { // TODO: Add more sink validation? if (\is_bool($options['sink'])) { throw new \YoastSEO_Vendor\GuzzleHttp\Exception\InvalidArgumentException('sink must not be a boolean'); } } if (isset($options['version'])) { $modify['version'] = $options['version']; } $request = \YoastSEO_Vendor\GuzzleHttp\Psr7\Utils::modifyRequest($request, $modify); if ($request->getBody() instanceof \YoastSEO_Vendor\GuzzleHttp\Psr7\MultipartStream) { // Use a multipart/form-data POST if a Content-Type is not set. // Ensure that we don't have the header in different case and set the new value. $options['_conditional'] = \YoastSEO_Vendor\GuzzleHttp\Psr7\Utils::caselessRemove(['Content-Type'], $options['_conditional']); $options['_conditional']['Content-Type'] = 'multipart/form-data; boundary=' . $request->getBody()->getBoundary(); } // Merge in conditional headers if they are not present. if (isset($options['_conditional'])) { // Build up the changes so it's in a single clone of the message. $modify = []; foreach ($options['_conditional'] as $k => $v) { if (!$request->hasHeader($k)) { $modify['set_headers'][$k] = $v; } } $request = \YoastSEO_Vendor\GuzzleHttp\Psr7\Utils::modifyRequest($request, $modify); // Don't pass this internal value along to middleware/handlers. unset($options['_conditional']); } return $request; } /** * Return an InvalidArgumentException with pre-set message. */ private function invalidBody() : \YoastSEO_Vendor\GuzzleHttp\Exception\InvalidArgumentException { return new \YoastSEO_Vendor\GuzzleHttp\Exception\InvalidArgumentException('Passing in the "body" request ' . 'option as an array to send a request is not supported. ' . 'Please use the "form_params" request option to send a ' . 'application/x-www-form-urlencoded request, or the "multipart" ' . 'request option to send a multipart/form-data request.'); } } {"id":5,"count":7,"description":"Bei der Gestaltung von umfangreichen Magazinen und Brosch\u00fcren steht die Balance zwischen dem \u00fcbergreifenden Raster und der individuellen Seite im Vordergrund. Ruhe und Dynamik stehen im harmonischen Spannungsfeld. ","link":"https:\/\/pmzwei.de\/thema\/magazin\/","name":"Magazin","slug":"magazin","taxonomy":"post_tag","meta":[],"yoast_head":"\nMagazin | Projekte von PMzwei Print Media<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/pmzwei.de\/thema\/magazin\/\" \/>\n<meta property=\"og:locale\" content=\"de_DE\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Magazin | Projekte von PMzwei Print Media\" \/>\n<meta property=\"og:description\" content=\"Bei der Gestaltung von umfangreichen Magazinen und Brosch\u00fcren steht die Balance zwischen dem \u00fcbergreifenden Raster und der individuellen Seite im Vordergrund. Ruhe und Dynamik stehen im harmonischen Spannungsfeld.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/pmzwei.de\/thema\/magazin\/\" \/>\n<meta property=\"og:site_name\" content=\"PMzwei Print Media\" \/>\n<meta property=\"og:image\" content=\"https:\/\/pmzwei.de\/wp-content\/uploads\/Logo-PMzwei.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1600\" \/>\n\t<meta property=\"og:image:height\" content=\"1131\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"CollectionPage\",\"@id\":\"https:\/\/pmzwei.de\/thema\/magazin\/\",\"url\":\"https:\/\/pmzwei.de\/thema\/magazin\/\",\"name\":\"Magazin | Projekte von PMzwei Print Media\",\"isPartOf\":{\"@id\":\"https:\/\/pmzwei.de\/#website\"},\"breadcrumb\":{\"@id\":\"https:\/\/pmzwei.de\/thema\/magazin\/#breadcrumb\"},\"inLanguage\":\"de\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/pmzwei.de\/thema\/magazin\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Startseite\",\"item\":\"https:\/\/pmzwei.de\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Magazin\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/pmzwei.de\/#website\",\"url\":\"https:\/\/pmzwei.de\/\",\"name\":\"PMzwei Print Media\",\"description\":\"Agentur f\u00fcr Internet und Print\",\"publisher\":{\"@id\":\"https:\/\/pmzwei.de\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/pmzwei.de\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"de\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/pmzwei.de\/#organization\",\"name\":\"PMzwei Print Media\",\"url\":\"https:\/\/pmzwei.de\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"de\",\"@id\":\"https:\/\/pmzwei.de\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/pmzwei.de\/wp-content\/uploads\/Logo_PMzwei.png\",\"contentUrl\":\"https:\/\/pmzwei.de\/wp-content\/uploads\/Logo_PMzwei.png\",\"width\":845,\"height\":385,\"caption\":\"PMzwei Print Media\"},\"image\":{\"@id\":\"https:\/\/pmzwei.de\/#\/schema\/logo\/image\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Magazin | Projekte von PMzwei Print Media","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/pmzwei.de\/thema\/magazin\/","og_locale":"de_DE","og_type":"article","og_title":"Magazin | Projekte von PMzwei Print Media","og_description":"Bei der Gestaltung von umfangreichen Magazinen und Brosch\u00fcren steht die Balance zwischen dem \u00fcbergreifenden Raster und der individuellen Seite im Vordergrund. Ruhe und Dynamik stehen im harmonischen Spannungsfeld.","og_url":"https:\/\/pmzwei.de\/thema\/magazin\/","og_site_name":"PMzwei Print Media","og_image":[{"width":1600,"height":1131,"url":"https:\/\/pmzwei.de\/wp-content\/uploads\/Logo-PMzwei.png","type":"image\/png"}],"twitter_card":"summary_large_image","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"CollectionPage","@id":"https:\/\/pmzwei.de\/thema\/magazin\/","url":"https:\/\/pmzwei.de\/thema\/magazin\/","name":"Magazin | Projekte von PMzwei Print Media","isPartOf":{"@id":"https:\/\/pmzwei.de\/#website"},"breadcrumb":{"@id":"https:\/\/pmzwei.de\/thema\/magazin\/#breadcrumb"},"inLanguage":"de"},{"@type":"BreadcrumbList","@id":"https:\/\/pmzwei.de\/thema\/magazin\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Startseite","item":"https:\/\/pmzwei.de\/"},{"@type":"ListItem","position":2,"name":"Magazin"}]},{"@type":"WebSite","@id":"https:\/\/pmzwei.de\/#website","url":"https:\/\/pmzwei.de\/","name":"PMzwei Print Media","description":"Agentur f\u00fcr Internet und Print","publisher":{"@id":"https:\/\/pmzwei.de\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/pmzwei.de\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"de"},{"@type":"Organization","@id":"https:\/\/pmzwei.de\/#organization","name":"PMzwei Print Media","url":"https:\/\/pmzwei.de\/","logo":{"@type":"ImageObject","inLanguage":"de","@id":"https:\/\/pmzwei.de\/#\/schema\/logo\/image\/","url":"https:\/\/pmzwei.de\/wp-content\/uploads\/Logo_PMzwei.png","contentUrl":"https:\/\/pmzwei.de\/wp-content\/uploads\/Logo_PMzwei.png","width":845,"height":385,"caption":"PMzwei Print Media"},"image":{"@id":"https:\/\/pmzwei.de\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/pmzwei.de\/wp-json\/wp\/v2\/tags\/5","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/pmzwei.de\/wp-json\/wp\/v2\/tags"}],"about":[{"href":"https:\/\/pmzwei.de\/wp-json\/wp\/v2\/taxonomies\/post_tag"}],"wp:post_type":[{"href":"https:\/\/pmzwei.de\/wp-json\/wp\/v2\/posts?tags=5"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}