tbrehm
2011-08-29 e615265d3b51e27f0f664cea193b6353975d6f7d
interface/lib/classes/remoting.inc.php
@@ -2127,28 +2127,33 @@
      if(isset($params['template_master']) and $params['template_master'] > 0)
      {
         $template=$app->db->queryOneRecord("SELECT * FROM client_template WHERE template_id=".intval($params['template_master']));
         $params=array_merge($params,$template);
         if(is_array($template)) $params=array_merge($params,$template);
      }
      
      //* Get the SQL query
      $sql = $app->remoting_lib->getSQL($params,'INSERT',0);
      $app->db->query($sql);
      if($app->remoting_lib->errorMessage != '') {
         $this->server->fault('data_processing_error', $app->remoting_lib->errorMessage);
         return false;
      }
      
      $app->db->query($sql);
      $insert_id = $app->db->insertID();
      $this->id = $insert_id;
      $this->dataRecord = $params;
      
      $app->plugin->raiseEvent('client:client:on_after_insert',$this);
      
      /*
      if($app->db->errorMessage != '') {
         $this->server->fault('database_error', $app->db->errorMessage . ' '.$sql);
         return false;
      }
      */
      
      $insert_id = $app->db->insertID();
      //$app->uses('tform');
      //* Save changes to Datalog
      if($app->remoting_lib->formDef["db_history"] == 'yes') {
@@ -2793,6 +2798,26 @@
      return $app->remoting_lib->getDataRecord($vm_id);
   }
   
   //* Get OpenVZ list
   public function openvz_vm_get_by_client($session_id, $client_id)
    {
      global $app;
      if(!$this->checkPerm($session_id, 'vm_openvz')) {
         $this->server->fault('permission_denied', 'You do not have the permissions to access this function.');
         return false;
      }
      if (!empty($client_id)) {
           $client_id      = intval($client_id);
         $tmp          = $app->db->queryOneRecord("SELECT groupid FROM sys_group WHERE client_id = $client_id");
           $sql            = "SELECT * FROM openvz_vm WHERE sys_groupid = ".intval($tmp['groupid']);
           $result         = $app->db->queryAllRecords($sql);
           return          $result;
        }
        return false;
   }
   //* Add a openvz vm record
   public function openvz_vm_add($session_id, $client_id, $params)
    {