]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Function to test for RTL language
authorZach Copley <zach@status.net>
Thu, 25 Aug 2011 19:48:36 +0000 (12:48 -0700)
committerZach Copley <zach@status.net>
Thu, 25 Aug 2011 19:48:36 +0000 (12:48 -0700)
lib/language.php

index 2af62fea0cd3eecdc77f8fbbe8f956f995472a2f..d72380e466a4d6729499986f22522499a2b80220 100644 (file)
@@ -289,6 +289,21 @@ function get_nice_language_list()
     return $nice_lang;
 }
 
+/*
+ * Check whether a language is right-to-left
+ *
+ * @param string $lang language code of the language to check
+ * 
+ * @return boolean true if language is rtl
+ */
+
+function is_rtl($lang)
+{
+    $all_languages = common_config('site', 'languages');
+    $lang = $all_languages[$lang];
+    return ($lang['direction'] == 'rtl');
+}
+
 /**
  * Get a list of all languages that are enabled in the default config
  *