Lines Matching defs:p_info
2961 // The resulting file infos are set in the array $p_info
2962 // $p_info['filename'] : Filename with full path. Given by user (add),
2964 // $p_info['stored_filename'] : Stored filename in the archive.
2965 // $p_info['size'] = Size of the file.
2966 // $p_info['compressed_size'] = Compressed size of the file.
2967 // $p_info['mtime'] = Last modification date of the file.
2968 // $p_info['comment'] = Comment associated with the file.
2969 // $p_info['folder'] = true/false : indicates if the entry is a folder or not.
2970 // $p_info['status'] = status of the action on the file.
2974 public function privConvertHeader2FileInfo($p_header, &$p_info)
2980 $p_info['filename'] = $p_header['filename'];
2981 $p_info['stored_filename'] = $p_header['stored_filename'];
2982 $p_info['size'] = $p_header['size'];
2983 $p_info['compressed_size'] = $p_header['compressed_size'];
2984 $p_info['mtime'] = $p_header['mtime'];
2985 $p_info['comment'] = $p_header['comment'];
2986 $p_info['folder'] = (($p_header['external'] & 0x00000010) == 0x00000010);
2987 $p_info['index'] = $p_header['index'];
2988 $p_info['status'] = $p_header['status'];