1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
|
<?php
// $Id$
function custom_model_download_uploaded_file()
{
$proposal_id = arg(3);
$root_path = custom_model_path();
$query = db_select('custom_model_proposal');
$query->fields('custom_model_proposal');
$query->condition('id', $proposal_id);
$query->range(0, 1);
$result = $query->execute();
$custom_model_uploaded_file = $result->fetchObject();
$samplecodename = $custom_model_uploaded_file->samplefilepath;
ob_clean();
header("Pragma: public");
header("Expires: 0");
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
header("Cache-Control: public");
header("Content-Description: File Transfer");
header('Content-Type: application/pdf');
header('Content-disposition: attachment; filename="' . $samplecodename . '"');
header('Content-Length: ' . filesize($root_path . $custom_model_uploaded_file->directory_name . '/' . $samplecodename));
header("Content-Transfer-Encoding: binary");
header('Expires: 0');
header('Pragma: no-cache');
ob_clean();
readfile($root_path . $custom_model_uploaded_file->directory_name . '/' . $samplecodename);
//ob_end_flush();
//flush();
}
function custom_model_project_files() {
$proposal_id = arg(3);
$root_path = custom_model_path();
//var_dump($proposal_id);die;
$query = db_select('custom_model_submitted_abstracts_file');
$query->fields('custom_model_submitted_abstracts_file');
$query->condition('proposal_id', $proposal_id);
$query->condition('filetype', 'A');
$result = $query->execute();
$custom_model_project_files = $result->fetchObject();
//var_dump($custom_model_project_files);die;
$query1 = db_select('custom_model_proposal');
$query1->fields('custom_model_proposal');
$query1->condition('id', $proposal_id);
$result1 = $query1->execute();
$custom_model = $result1->fetchObject();
$directory_name = $custom_model->directory_name . '/project_files/';
$samplecodename = $custom_model_project_files->filename;
ob_clean();
header("Pragma: public");
header("Expires: 0");
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
header("Cache-Control: public");
header("Content-Description: File Transfer");
header("Content-Type: application/pdf");
header('Content-disposition: attachment; filename="' . $samplecodename . '"');
header("Content-Length: " . filesize($root_path . $directory_name . $samplecodename));
header("Content-Transfer-Encoding: binary");
header("Expires: 0");
header("Pragma: no-cache");
ob_clean();
readfile($root_path . $directory_name . $samplecodename);
//ob_end_flush();
//ob_clean();
}
function custom_model_download_idea_reference_file()
{
$proposal_id = arg(3);
$root_path = custom_model_ideas_files_path();
$query = db_select('custom_model_idea_proposal');
$query->fields('custom_model_idea_proposal');
$query->condition('id', $proposal_id);
$query->range(0, 1);
$result = $query->execute();
$uploaded_idea_reference_file = $result->fetchObject();
$samplecodename = $uploaded_idea_reference_file->reference_file;
//var_dump($root_path . $custom_model_uploaded_file->directory_name . '/' . $samplecodename);die;
ob_clean();
header("Pragma: public");
header("Expires: 0");
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
header("Cache-Control: public");
header("Content-Description: File Transfer");
header('Content-Type: application/zip');
header('Content-disposition: attachment; filename="' . $samplecodename . '"');
header('Content-Length: ' . filesize($root_path . $uploaded_idea_reference_file->directory_name . '/' . $samplecodename));
header("Content-Transfer-Encoding: binary");
header('Expires: 0');
header('Pragma: no-cache');
ob_clean();
readfile($root_path . $uploaded_idea_reference_file->directory_name . '/' . $samplecodename);
//ob_end_flush();
//flush();
}
|