MOVED Pman/I18N.php to Pman/I18n.php
authorChris <chris@roojs.com>
Wed, 20 Jun 2012 09:12:52 +0000 (17:12 +0800)
committerChris <chris@roojs.com>
Wed, 20 Jun 2012 09:12:52 +0000 (17:12 +0800)
Pman/I18n.php [new file with mode: 0644]

diff --git a/Pman/I18n.php b/Pman/I18n.php
new file mode 100644 (file)
index 0000000..b39928b
--- /dev/null
@@ -0,0 +1,43 @@
+<?php
+
+/// provide language data!!!
+// DEPRECIATED - moved to Pman_Core_I18N
+/**
+ * 
+ * 
+ */
+
+require_once 'Pman/Core/I18n.php';
+class Pman_I18N extends Pman_Core_I18n
+{
+     
+    
+    
+     
+    /*
+    
+    function setSession($au)
+    {
+        $this->authUser = $au;
+        $lbits = implode('_', $this->guessUsersLanguage());
+        if (empty($_SESSION['Pman_I18N'])) {
+            $_SESSION['Pman_I18N']  = array();
+        }
+        
+        $_SESSION['Pman_I18N'][$lbits] = array(
+            'l' => $this->getList('l', $lbits),
+            'c' => $this->getList('c', $lbits),
+            'm' => $this->getList('m', $lbits),
+        );
+        
+        
+    }
+      
+   
+     
+   
+   
+    */
+     
+    
+}