PATH:
var
/
www
/
clients
/
client1
/
web1
/
web
/
wp-content
/
wpml-string-translation
/
classes
/
slug-translation
<?php class WPML_ST_Slug_Translation_Settings { const KEY_ENABLED_GLOBALLY = 'wpml_base_slug_translation'; /** @param bool $enabled */ public function set_enabled( $enabled ) { update_option( self::KEY_ENABLED_GLOBALLY, (int) $enabled ); } /** @return bool */ public function is_enabled() { return (bool) get_option( self::KEY_ENABLED_GLOBALLY ); } public function is_translated( $type_name ) { throw new Exception( 'Use a child class with the proper element type: post or taxonomy.' ); } public function set_type( $type, $is_type_enabled ) { throw new Exception( 'Use a child class with the proper element type: post or taxonomy.' ); } public function save() { throw new Exception( 'Use a child class with the proper element type: post or taxonomy.' ); } }
[+]
RewriteRules
[-] CheckRedirect.php
[edit]
[-] wpml-st-slug-translation-settings-factory.php
[edit]
[-] wpml-st-slug-translation-ui-save.php
[edit]
[-] class-wpml-slug-translation-records.php
[edit]
[+]
post
[-] iwpml-st-rewrite-rule-filter.php
[edit]
[-] class-wpml-rewrite-rule-filter.php
[edit]
[+]
custom-types
[+]
taxonomy
[-] wpml-st-slug-translation-strings-sync.php
[edit]
[-] wpml-st-slug-translation-settings.php
[edit]
[-] wpml-slug-translation-records-factory.php
[edit]
[-] wpml-st-slug-translation-api.php
[edit]
[+]
new-match-finder
[-] class-wpml-slug-translation.php
[edit]
[-] wpml-st-slug-translation-ui-factory.php
[edit]
[-] wpml-rewrite-rule-filter-factory.php
[edit]
[-] wpml-st-element-slug-translation-ui-model.php
[edit]
[-] wpml-st-element-slug-translation-ui.php
[edit]
[+]
..
[-] wpml-st-slug.php
[edit]
[-] wpml-slug-translation-factory.php
[edit]