PATH:
var
/
www
/
clients
/
client1
/
web1
/
web
/
wp-content
/
sitepress-multilingual-cms
/
classes
/
settings
<?php class WPML_Page_Builder_Settings { const OPTION_KEY = 'wpml_page_builders_options'; private $settings; /** @return bool */ public function is_raw_html_translatable() { return (bool) $this->get_setting( 'translate_raw_html', true ); } /** @param bool $is_enabled */ public function set_raw_html_translatable( $is_enabled ) { $this->set_setting( 'translate_raw_html', $is_enabled ); } /** * @param string $key * @param mixed $value */ private function set_setting( $key, $value ) { $this->settings[ $key ] = $value; } /** * @param string $key * @param mixed $default * * @return mixed */ private function get_setting( $key, $default = null ) { if ( null === $this->settings ) { $this->settings = get_option( self::OPTION_KEY, array() ); } if ( array_key_exists( $key, $this->settings ) ) { return $this->settings[ $key ]; } return $default; } public function save() { update_option( self::OPTION_KEY, $this->settings ); } }
[-] class-wpml-term-custom-field-setting-keys.php
[edit]
[-] class-wpml-custom-field-setting.php
[edit]
[-] Repository.php
[edit]
[-] ProcessNewTranslatableFields.php
[edit]
[-] class-wpml-verify-sitepress-settings.php
[edit]
[-] class-wpml-tm-settings-post-process.php
[edit]
[-] class-wpml-tm-serialized-custom-field-package-handler-factory.php
[edit]
[-] CustomFieldChangeDetector.php
[edit]
[-] class-wpml-custom-field-setting-query-factory.php
[edit]
[-] class-wpml-post-custom-field-setting.php
[edit]
[-] class-wpml-tm-serialized-custom-field-package-handler.php
[edit]
[-] wpml-tm-default-settings-factory.php
[edit]
[-] UI.php
[edit]
[-] class-wpml-element-sync-settings.php
[edit]
[-] class-wpml-element-sync-settings-factory.php
[edit]
[-] class-wpml-post-custom-field-setting-keys.php
[edit]
[-] class-wpml-custom-field-xml-settings-import.php
[edit]
[-] class-wpml-custom-field-setting-query.php
[edit]
[-] class-wpml-term-custom-field-setting.php
[edit]
[+]
..
[-] class-wpml-settings-filters.php
[edit]
[-] class-wpml-page-builder-settings.php
[edit]
[-] class-wpml-tm-settings-update.php
[edit]
[-] class-wpml-custom-field-setting-factory.php
[edit]
[-] wpml-tm-default-settings.php
[edit]