示例#1
0
文件: Link.php 项目: Selwyn-b/elefant
 public function post_add()
 {
     if (!isset($_POST['user'])) {
         return $this->error('Missing parameter: user');
     }
     if (!isset($_POST['service'])) {
         return $this->error('Missing parameter: service');
     }
     if (!isset($_POST['handle'])) {
         return $this->error('Missing parameter: handle');
     }
     $link = new \user\Link(array('user_id' => $_POST['user'], 'service' => $_POST['service'], 'handle' => $_POST['handle']));
     if (!$link->put()) {
         error_log($link->error);
         return $this->error('An unexpected error occurred.');
     }
     return $this->get__default($_POST['user']);
     //return $link->orig ();
 }