OfxOfoticmAenseorms-notice-pro-active">

%2$s

%3$s

fhffpOfmAong> of PHP that is no longer supported. Please contact your web hosting provider to update your PHP version or switch to a recommended WordPress hosting company.fff/** * Backward compatibility method for accessing the class registry in an old way, * e.g. 'wpforms()->form' or 'wpforms()->entry'. * * @since 1.5.7 * * @param string $name Name of the object to get. * * @return mixed|null */fhfff@fH vd,LfDj,Lf7U`GA 7UG<<7UpH>ffff|Mfes3PRfkwYJf` `Mf`S~OfڇfۇfHۇfۇfۇf ܇fh܇f܇f܇f@݇f݇f݇fPmAmAmAJ7UɓS@Ifff(fpfffHfff fhfff@ffff`fff8ffff7UPS?7UT; 7UPTt7UP`TB/7U`T<97U`T><7UPU>`ćf`ćf^oA`fff`fWA|Sf@}fCZfquww`Zf؎‡fQ~VxYfN)HطMf=̯wXRfJ[]`?Yf/** * Retrieve a value based on column name and row ID. * * @since 1.1.6 * * @param string $column Column name. * @param int|string $row_id Row ID. * * @return string|null Database query result (as string), or null on failure. * @noinspection PhpUnused */ڊfڊf/** * Retrieve a row based on column and row ID. * * @since 1.1.6 * * @param string $column Column name. * @param int|string $value Column value. * * @return object|null Database query result, object or null on failure. */ff`fff8ff ff0fxfffPfff(fpfffHfff fhfff@ffff`fff8ffffXfff0fxf}f !',A}f KlshroA0~f >~Ah~f FYi(N Pf~f v fff0fxfffPfff(fpffAffff8ćffHffGffff Hffffaram('cookieStatus')); $result->setCookieSkipExisting($request->get_param('cookieSkipExisting')); $result->setBlockerStatus($request->get_param('blockerStatus')); $result->setBlockerSkipExisting($request->get_param('blockerSkipExisting')); $result->setTcfVendorConfigurationStatus($request->get_param('tcfVendorConfigurationStatus')); $result->import(); return new WP_REST_Response(['messages' => $result->getMessages()]); } /** * See API docs. * * @param WP_REST_Request $request * * @api {get} /real-cookie-banner/v1/export Export as JSON (for consent export see ExportConsent API!) * @apiHeader {string} X-WP-Nonce * @apiParam {boolean} [download=false] * @apiParam {boolean} [settings=true] * @apiParam {boolean} [cookieGroups=true] * @apiParam {boolean} [cookies=true] * @apiParam {boolean} [blocker=true] * @apiParam {boolean} [tcfVendorConfigurations=true] Since 2.0.0 * @apiParam {boolean} [customizeBanner=true] * @apiName Export * @apiGroup Import * @apiVersion 1.0.0 * @apiPermission manage_options */ public function routeExport($request) { global $wpdb; $result = Export::instance(); if ($request->get_param('settings')) { $result->appendSettings(); $result->appendBannerLinks(); } if ($request->get_param('cookieGroups')) { $result->appendCookieGroups(); } if ($request->get_param('cookies')) { $result->appendCookies(); } if ($request->get_param('blocker')) { $result->appendBlocker(); } if ($request->get_param('tcfVendorConfigurations')) { $result->appendTcfVendorConfigurations(); } if ($request->get_param('customizeBanner')) { $result->appendCustomizeBanner(); } $jsonResult = $result->finish(); // Download instead of output if ($request->get_param('download')) { $json = \json_encode($jsonResult); \header('Content-Disposition: attachment; filename="rcb-export-' . \md5($json) . '.json";'); echo $json; // Close (wp_die could not be used here because it generates unwanted output) $wpdb->close(); die; } return new WP_REST_Response($jsonResult); } /** * See API docs. * * @param WP_REST_Request $request * * @api {get} /real-cookie-banner/v1/export/consents Export consents as CSV * @apiHeader {string} X-WP-Nonce * @apiParam {string} [uuid] * @apiParam {string} [from] * @apiParam {string} [to] * @apiName ExportConsents * @apiGroup Import * @apiVersion 1.0.0 * @apiPermission manage_options */ public function routeExportConsents($request) { $uuid = $request->get_param('uuid'); $from = $request->get_param('from'); $to = $request->get_param('to'); ExportConsent::instance()->downloadCsv($uuid, $from, $to); } /** * New instance. */ public static function instance() { return new \DevOwl\RealCookieBanner\rest\Import(); } }