fmsystem-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Fmsystem-commits] [16195]


From: nelson . guerra
Subject: [Fmsystem-commits] [16195]
Date: Wed, 25 Jan 2017 22:52:45 -0500 (EST)

Revision: 16195
          http://svn.sv.gnu.org/viewvc/?view=rev&root=fmsystem&revision=16195
Author:   nelson224
Date:     2017-01-25 22:52:45 -0500 (Wed, 25 Jan 2017)
Log Message:
-----------


Modified Paths:
--------------
    
branches/dev-syncromind-2/property/inc/import/class.import_component_files.inc.php

Modified: 
branches/dev-syncromind-2/property/inc/import/class.import_component_files.inc.php
===================================================================
--- 
branches/dev-syncromind-2/property/inc/import/class.import_component_files.inc.php
  2017-01-25 22:26:11 UTC (rev 16194)
+++ 
branches/dev-syncromind-2/property/inc/import/class.import_component_files.inc.php
  2017-01-26 03:52:45 UTC (rev 16195)
@@ -72,7 +72,6 @@
                        return true;
                }
                
-               /*
                private function _get_files_by_component($id, $location_id)
                {
                        $sql = "SELECT a.location_id, a.location_item_id, 
b.file_id, b.name, b.md5_sum FROM phpgw_vfs_file_relation a INNER JOIN 
phpgw_vfs b "
@@ -85,25 +84,6 @@
                        
                        while ($this->db->next_record())
                        {
-                               $healthy = $this->db->f('file_id').'_#';
-                               $values[] = 
$this->db->f('md5_sum').'_'.trim(str_replace($healthy, '', 
$this->db->f('name')));
-                       }
-
-                       return $values;                 
-               }*/
-               
-               private function _get_files_by_component($id, $location_id)
-               {
-                       $sql = "SELECT a.location_id, a.location_item_id, 
b.file_id, b.name, b.md5_sum FROM phpgw_vfs_file_relation a INNER JOIN 
phpgw_vfs b "
-                                       . " ON a.file_id = b.file_id WHERE 
a.location_item_id = '{$id}' AND a.location_id = '{$location_id}'"
-                                       . " AND b.mime_type != 'Directory' AND 
b.mime_type != 'journal' AND b.mime_type != 'journal-deleted'";
-
-                       $this->db->query($sql, __LINE__, __FILE__);
-
-                       $values = array();
-                       
-                       while ($this->db->next_record())
-                       {
                                $values[] = $this->db->f('md5_sum');
                        }
 
@@ -286,17 +266,19 @@
                                        }
                                }
                        } else {
-                               foreach ($uploaded_files as $file)
+                               foreach ($uploaded_files as &$file)
                                {
                                        $md5sum = 
$this->_generate_md5sum($file['path_absolute']);
                                        if (!empty($md5sum)) 
                                        {
+                                               $file['md5sum'] = $md5sum;
+                                               $component_files[$md5sum] = 
$file;
                                                
$this->paths_from_file[$md5sum][] = $file['path_relative'];
                                        } else {
                                                $this->paths_empty[] = 
$file['path_absolute'];
                                        }                               
                                }
-                               $component_files = $uploaded_files;
+                               //$component_files = $uploaded_files;
                        }
                }
        




reply via email to

[Prev in Thread] Current Thread [Next in Thread]