class-wpml-st-admin-option-translation.php
2.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<?php
class WPML_ST_Admin_Option_Translation extends WPML_SP_User {
/** @var WPML_String_Translation $st_instance */
private $st_instance;
/** @var string $option_name */
private $option_name;
/** @var string $option_name */
private $language;
/**
* WPML_ST_Admin_Option constructor.
*
* @param SitePress $sitepress
* @param WPML_String_Translation $st_instance
* @param string $option_name
* @param string $language
*/
public function __construct(
&$sitepress,
&$st_instance,
$option_name,
$language = ''
) {
if ( ! $option_name || ! is_scalar( $option_name ) ) {
throw new InvalidArgumentException( 'Not a valid option name, received: ' . serialize( $option_name ) );
}
parent::__construct( $sitepress );
$this->st_instance = &$st_instance;
$this->option_name = $option_name;
$this->language = $language ? $language : $this->st_instance->get_current_string_language( $option_name );
}
/**
*
* @param string $option_name
* @param string|array $new_value
* @param int|bool $status
* @param int $translator_id
* @param int $rec_level
*
* @return boolean|mixed
*/
public function update_option(
$option_name = '',
$new_value = null,
$status = false,
$translator_id = null,
$rec_level = 0
) {
$option_name = $option_name ? $option_name : $this->option_name;
$new_value = (array) $new_value;
$updated = array();
foreach ( $new_value as $index => $value ) {
if ( is_array( $value ) ) {
$name = '[' . $option_name . '][' . $index . ']';
$result = $this->update_option(
$name,
$value,
$status,
$translator_id,
$rec_level + 1
);
$updated[] = array_sum( explode( ',', $result ) );
} else {
if ( is_string( $index ) ) {
$name = ( $rec_level == 0 ? '[' . $option_name . ']' : $option_name ) . $index;
} else {
$name = $option_name;
}
$string = $this->st_instance->string_factory()->find_admin_by_name( $name );
$string_id = $string->string_id();
if ( $string_id ) {
if ( $this->language !== $string->get_language() ) {
$updated[] = $string->set_translation(
$this->language,
$value,
$status,
$translator_id
);
} else {
$string->update_value( $value );
}
}
}
}
return array_sum( $updated ) > 0 ? join( ',', $updated ) : false;
}
}