aboutsummaryrefslogtreecommitdiff
path: root/mod/translation_editor/views/default/core/settings/account/language.php
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2014-03-15 14:58:52 -0300
committerSilvio Rhatto <rhatto@riseup.net>2014-03-15 14:58:52 -0300
commit323fdcc59e467e6437aad244c475ed0184c7a020 (patch)
tree0dc86b7aeb394ee6d1c3c9106362dea16c982cde /mod/translation_editor/views/default/core/settings/account/language.php
parent8d66daa258a58b65c3658b38e99382732c88e017 (diff)
parent2d9b20157957a55bd83875775085ed31c9062577 (diff)
downloadelgg-323fdcc59e467e6437aad244c475ed0184c7a020.tar.gz
elgg-323fdcc59e467e6437aad244c475ed0184c7a020.tar.bz2
Merge commit '2d9b20157957a55bd83875775085ed31c9062577' as 'mod/translation_editor'
Diffstat (limited to 'mod/translation_editor/views/default/core/settings/account/language.php')
-rw-r--r--mod/translation_editor/views/default/core/settings/account/language.php42
1 files changed, 42 insertions, 0 deletions
diff --git a/mod/translation_editor/views/default/core/settings/account/language.php b/mod/translation_editor/views/default/core/settings/account/language.php
new file mode 100644
index 000000000..225bccc97
--- /dev/null
+++ b/mod/translation_editor/views/default/core/settings/account/language.php
@@ -0,0 +1,42 @@
+<?php
+/**
+ * Provide a way of setting your language prefs
+ *
+ * @package Elgg
+ * @subpackage Core
+ */
+
+if ($user = elgg_get_page_owner_entity()) {
+ translation_editor_unregister_translations();
+
+ $translations = get_installed_translations();
+
+ $value = $CONFIG->language;
+ if (!empty($user->language)) {
+ $value = $user->language;
+ }
+
+ if(count($translations ) > 1){
+ ?>
+ <div class="elgg-module elgg-module-info">
+ <div class="elgg-head">
+ <h3><?php echo elgg_echo('user:set:language'); ?></h3>
+ </div>
+ <div class="elgg-body">
+ <p>
+ <?php echo elgg_echo('user:language:label'); ?>:
+ <?php
+ echo elgg_view("input/dropdown", array(
+ 'name' => 'language',
+ 'value' => $value,
+ 'options_values' => $translations
+ ));
+ ?>
+ </p>
+ </div>
+ </div>
+ <?php
+ } else {
+ echo elgg_view("input/hidden", array("name" => "language", "value" => $value));
+ }
+} \ No newline at end of file