Changeset 5038 for trunk/filemanager/inc


Ignore:
Timestamp:
09/05/11 17:16:12 (13 years ago)
Author:
alexandrecorreia
Message:

Ticket #2260 - Sincronismo do branch2.2(versão 2.2.8) do modulo filemanager para 2.4

Location:
trunk/filemanager/inc
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/filemanager/inc/class.uifilemanager.inc.php

    r4284 r5038  
    337337                echo "<script src='" . $GLOBALS['phpgw_info']['flags']['currentapp'] . "/js/handler.js'></script>"; 
    338338                 
    339                 //echo "<script src='" . $GLOBALS['phpgw_info']['flags']['currentapp'] . "/js/NewHandler.js'></script>"; 
    340  
    341  
    342339                // Temas Expresso 
    343340                $theme = "window_" . $GLOBALS['phpgw_info']['user']['preferences']['common']['theme'] . ".css"; 
     
    529526        } 
    530527 
    531         function dir_ls() { 
     528        function dir_ls() 
     529        { 
    532530                // change dir to this->path 
    533531                $this->bo->vfs->cd(array('string' => $this->path, 'relatives' => array(RELATIVE_NONE), 'relative' => False)); 
    534532                $return['permissions'] = $this->get_permissions(); 
    535                 $return['quota']['usedSpace'] = $this->bo->vfs->get_size(array( 
     533                /*$return['quota']['usedSpace'] = $this->bo->vfs->get_size(array( 
    536534                                                'string' => $this->path, 
    537535                                                'relatives' => array(RELATIVE_NONE) 
    538                                   )); 
    539                 $return['files_count'] = $this->bo->vfs->count_files(array( 
    540                                                 'string' => $this->path, 
    541                                   )); 
    542                 $quota = $this->bo->vfs->get_quota(array( 
    543                                                 'string' => $this->path 
    544                                   )); 
     536                                  ));*/ 
     537                 
     538                $return['quota']['usedSpace'] = $this->bo->vfs->get_size_all( $GLOBALS['phpgw_info']['user']['account_id'] ); 
     539                $return['files_count'] = $this->bo->vfs->count_files(array( 'string' => $this->path )); 
     540                 
     541                $quota = $this->bo->vfs->get_quota(array('string' => $this->bo->homedir )); 
     542                 
    545543                reset($this->files_array); 
    546544                $this->readFilesInfo(); 
    547545 
    548                 for ($i = 0; $i != $this->numoffiles; $i++) { 
     546                for ($i = 0; $i != $this->numoffiles; $i++) 
     547                { 
    549548                        $files = $this->files_array[$i]; 
    550549 
     
    554553                        /* small keys to safe bandwidth */ 
    555554                        $tuple['name'] = htmlentities($files['name']); 
    556                         if ($_SESSION['phpgw_info']['user']['preferences']['filemanager']['viewIcons'] == 1) { 
     555                        if ($_SESSION['phpgw_info']['user']['preferences']['filemanager']['viewIcons'] == 1)  
     556                        { 
    557557                                if ($files['mime_type'] == 'image/png' || 
    558558                                                  $files['mime_type'] == 'image/gif' || 
    559                                                   $files['mime_type'] == 'image/jpg') { 
     559                                                  $files['mime_type'] == 'image/jpg') 
     560                                { 
    560561                                        $filename = str_replace('=', '', base64_encode($tuple['name'])); 
    561562                                        $pathname = str_replace('=', '', base64_encode($this->path)); 
     
    10001001                                { 
    10011002                                        $historyFile[] = array( 
    1002                                                                                         "created"       => $journal_entry['created'], 
     1003                                                                                        "created"       => $this->vfs_functions->dateString2timeStamp($journal_entry['created']), 
    10031004                                                                                        "version"       => $journal_entry['version'], 
    10041005                                                                                        "who"           => $GLOBALS['phpgw']->accounts->id2name($journal_entry['owner_id']), 
  • trunk/filemanager/inc/class.vfs_functions.inc.php

    r3924 r5038  
    134134                } 
    135135                 
     136                function convertDateForm($pDate) 
     137                { 
     138                        /** 
     139                         * Recebe a data no formato      : aaaa-mm-dd 
     140                         * Retorna a data no formato : dd/mm/aaaa 
     141                         **/ 
     142                 
     143                        $cDate = date_parse($pDate); 
     144                        $day   = ( strlen($cDate['day']) > 1 ) ? $cDate['day'] : "0".$cDate['day']; 
     145                        $month = ( strlen($cDate['month']) > 1 ) ? $cDate['month'] : "0".$cDate['month']; 
     146                        $year  = $cDate['year']; 
     147                 
     148                        return $day."/".$month."/".$year; 
     149                } 
     150                 
    136151                // String format is YYYY-MM-DD HH:MM 
    137152                function dateString2timeStamp($string) 
    138153                { 
    139                         return mktime($string[11].$string[12], 
    140                                 $string[14].$string[15], 
    141                                 $string[17].$string[18],  
    142                                 $string[5].$string[6],  
    143                                 $string[8].$string[9], 
    144                                 $string[0].$string[1]. 
    145                                 $string[2].$string[3]); 
     154                        /** 
     155                         * Recebe a data no formato      : aaaa-mm-dd 
     156                         * Retorna a data no formato : dd/mm/aaaa 
     157                         **/ 
     158                 
     159                        $cDate = date_parse($string); 
     160                        $day   = ( strlen($cDate['day']) > 1 ) ? $cDate['day'] : "0".$cDate['day']; 
     161                        $month = ( strlen($cDate['month']) > 1 ) ? $cDate['month'] : "0".$cDate['month']; 
     162                        $year  = $cDate['year']; 
     163                 
     164                        return $day."/".$month."/".$year; 
    146165                } 
    147166                 
Note: See TracChangeset for help on using the changeset viewer.