DataObjects/pman.links.ini
[Pman.Core] / VerifyAccess.php
index 5544432..5131224 100644 (file)
@@ -47,15 +47,6 @@ class Pman_Core_VerifyAccess extends Pman
     }
     
     function post()
-    {
-        if(!empty($_REQUEST['_to_data'])){
-            $this->toData();
-        }
-        
-        
-    }
-    
-    function toData()
     {
         $core_ip_access = DB_DataObject::factory('core_ip_access');
         
@@ -68,8 +59,29 @@ class Pman_Core_VerifyAccess extends Pman
             $this->jerr('Invalid URL');
         }
         
-        $this->jdata($core_ip_access->toArray());
+        if(!empty($_REQUEST['_to_data'])){
+            $this->jdata($core_ip_access->toArray());
+        }
+        
+        $o = clone($core_ip_access);
+        
+        $core_ip_access->setFrom(array(
+            'status' => empty($_REQUEST['status']) ? 0 : $_REQUEST['status']
+        ));
+        
+        if($core_ip_access->status == -2){
+            
+            $core_ip_access->setFrom(array(
+                'status' => 1,
+                'expire_dt' => date('Y-m-d', strtotime($_REQUEST['expire_dt']))
+            ));
+        }
+        
+        $core_ip_access->update($o);
+        
+        $this->jok('OK');
         
     }
     
+    
 }