summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/SemanticMediaWiki/src/DataValues/ValueParsers/MonolingualTextValueParser.php
diff options
context:
space:
mode:
Diffstat (limited to 'www/wiki/extensions/SemanticMediaWiki/src/DataValues/ValueParsers/MonolingualTextValueParser.php')
-rw-r--r--www/wiki/extensions/SemanticMediaWiki/src/DataValues/ValueParsers/MonolingualTextValueParser.php59
1 files changed, 59 insertions, 0 deletions
diff --git a/www/wiki/extensions/SemanticMediaWiki/src/DataValues/ValueParsers/MonolingualTextValueParser.php b/www/wiki/extensions/SemanticMediaWiki/src/DataValues/ValueParsers/MonolingualTextValueParser.php
new file mode 100644
index 00000000..fdf1e5ec
--- /dev/null
+++ b/www/wiki/extensions/SemanticMediaWiki/src/DataValues/ValueParsers/MonolingualTextValueParser.php
@@ -0,0 +1,59 @@
+<?php
+
+namespace SMW\DataValues\ValueParsers;
+
+use SMW\Localizer;
+
+/**
+ * @private
+ *
+ * @license GNU GPL v2+
+ * @since 2.4
+ *
+ * @author mwjames
+ */
+class MonolingualTextValueParser implements ValueParser {
+
+ /**
+ * @var array
+ */
+ private $errors = [];
+
+ /**
+ * @since 2.4
+ *
+ * @return array
+ */
+ public function getErrors() {
+ return $this->errors;
+ }
+
+ /**
+ * @since 2.4
+ *
+ * @param string|array $userValue
+ *
+ * @return array
+ */
+ public function parse( $userValue ) {
+
+ // Allow things like [ "en" => "Foo ..." ] when retrieved from a JSON string
+ if ( is_array( $userValue ) ) {
+ foreach ( $userValue as $key => $value ) {
+ $languageCode = is_string( $key ) ? $key : '';
+ $text = is_string( $value ) ? $value : '';
+ }
+ } else {
+ $text = $userValue;
+ $languageCode = mb_substr( strrchr( $userValue, "@" ), 1 );
+
+ // Remove the language code and marker from the text
+ if ( $languageCode !== '' ) {
+ $text = substr_replace( $userValue, '', ( mb_strlen( $languageCode ) + 1 ) * -1 );
+ }
+ }
+
+ return [ $text, Localizer::asBCP47FormattedLanguageCode( $languageCode ) ];
+ }
+
+}