%hPh Oh@h!MhHh!MhEh~@Ohhkh%hLh FHKhAh MhXhkhEh0DhPKh8hh%hPh(?LhBhPh`hEhEhZCh Lh؎h` Fh%h@Ph0-ChChrhhh0ohEh@Fh Ch Fh%hMh >LhDhMhphEhEh,JKhLh hrh%h@Nh %KhEhPhxhEhEhVjFh Khhth%hPh GhFh!MhhEhuwGhGhphsh%hPh0 "uUhGh2ThhXhEh\Ch @yUhhwh%hh OhHhthh0EhEhOh OhȤhh%hNh( , ChIhOhhEhEhKh Chؤh Fh%h,hPPUhJh #DhhhEh ~ Kh;fUhPhh%h`Oh@ OTKhKh=hhEh Oh]Khh0h%h@Ph(ChLhhhhEh _ChChhhh%h0Uhx +WVhxMhp=hh`0UhEh P Kh$ Vhh@Bh%h(@ThpNhhEhY [ @(h Thh8Fh%hh0`DhhOhxhȉh`EhEhf GhfDh3h%h0Uh@bVh`PhhЉh `$Dhed $value The value. */ public function set($id, $value) { $this->load(); $this->settings[$id] = $value; } /** * Stores the settings to the database. */ public function persist() { return update_option(self::KEY, $this->settings); } /** * Loads the settings. * * @return bool */ private function load(): bool { if ($this->settings) { return \false; } $this->settings = (array) get_option(self::KEY, array()); $defaults = array('title' => __('PayPal', 'woocommerce-paypal-payments'), 'description' => __('Pay via PayPal.', 'woocommerce-paypal-payments'), 'smart_button_locations' => $this->default_button_locations, 'smart_button_enable_styling_per_location' => \false, 'pay_later_messaging_enabled' => \true, 'pay_later_button_enabled' => \true, 'pay_later_button_locations' => $this->default_pay_later_button_locations, 'pay_later_messaging_locations' => $this->default_pay_later_messaging_locations, 'brand_name' => get_bloginfo('name'), 'dcc_gateway_title' => $this->default_dcc_gateway_title, 'dcc_gateway_description' => __('Pay with your credit card.', 'woocommerce-paypal-payments')); foreach ($defaults as $key => $value) { if (isset($this->settings[$key])) { $this->settings[$key] = apply_filters('woocommerce_paypal_payments_settings_value', $this->settings[$key], $key); continue; } $this->settings[$key] = $value; } return \true; } }