]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - modules/MailMerge/MailMerge.php
Release 6.5.0
[Github/sugarcrm.git] / modules / MailMerge / MailMerge.php
1 <?php
2 if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
3 /*********************************************************************************
4  * SugarCRM Community Edition is a customer relationship management program developed by
5  * SugarCRM, Inc. Copyright (C) 2004-2012 SugarCRM Inc.
6  * 
7  * This program is free software; you can redistribute it and/or modify it under
8  * the terms of the GNU Affero General Public License version 3 as published by the
9  * Free Software Foundation with the addition of the following permission added
10  * to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
11  * IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
12  * OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
13  * 
14  * This program is distributed in the hope that it will be useful, but WITHOUT
15  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
16  * FOR A PARTICULAR PURPOSE.  See the GNU Affero General Public License for more
17  * details.
18  * 
19  * You should have received a copy of the GNU Affero General Public License along with
20  * this program; if not, see http://www.gnu.org/licenses or write to the Free
21  * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
22  * 02110-1301 USA.
23  * 
24  * You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
25  * SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
26  * 
27  * The interactive user interfaces in modified source and object code versions
28  * of this program must display Appropriate Legal Notices, as required under
29  * Section 5 of the GNU Affero General Public License version 3.
30  * 
31  * In accordance with Section 7(b) of the GNU Affero General Public License version 3,
32  * these Appropriate Legal Notices must retain the display of the "Powered by
33  * SugarCRM" logo. If the display of the logo is not reasonably feasible for
34  * technical reasons, the Appropriate Legal Notices must display the words
35  * "Powered by SugarCRM".
36  ********************************************************************************/
37
38
39 class MailMerge
40 {
41         var $mm_data_dir;
42         var $obj;
43         var $datasource_file = 'ds.doc';
44         var $header_file = 'header.doc';
45         var $fieldcnt;
46         var $rowcnt;
47         var $template;
48         var $visible = false;
49         var $list;
50         var $fieldList;
51         
52         function MailMerge($list = NULL, $fieldList = null, $data_dir = 'data') {
53                 // this is the path to your data dir.
54                 $this->mm_data_dir = $data_dir;
55                 $this->list = $list;
56                 $this->fieldList = $fieldList;
57         }
58         
59         function Execute() {
60                 $this->Initialize();
61                 if( count( $this->list ) > 0 ) {
62                         if(isset($this->template)) {
63                                 $this->CreateHeaderFile();
64                                 $this->CreateDataSource();
65                                 $file = $this->CreateDocument($this->template);
66                                 return $file;
67                         }
68                 } else return '';
69         }
70         
71         function Template($template = NULL) {
72                 if(is_array($template)) $this->template = $template;
73         }
74         
75         function CleanUp() {
76                 //remove the temp files
77                 unlink($this->mm_data_dir.'/Temp/'.$this->datasource_file);
78                 unlink($this->mm_data_dir.'/Temp/'.$this->header_file);
79                 rmdir($this->mm_data_dir);
80                 rmdir($this->mm_data_dir.'/Temp/');
81                 $this->Quit();
82         }
83         
84         function CreateHeaderFile() {
85                 $this->obj->Documents->Add();
86                 
87                 $this->obj->ActiveDocument->Tables->Add($this->obj->Selection->Range,1,$this->fieldcnt);
88                 foreach($this->fieldList as $key => $value) {
89                         $this->obj->Selection->TypeText($key);
90                         $this->obj->Selection->MoveRight();
91                 }
92
93                 $this->obj->ActiveDocument->SaveAs($this->mm_data_dir.'/Temp/'.$this->header_file);
94                 $this->obj->ActiveDocument->Close();
95         }
96         
97         function CreateDataSource() {
98                 $this->obj->Documents->Add();
99                 $this->obj->ActiveDocument->Tables->Add($this->obj->Selection->Range,$this->rowcnt,$this->fieldcnt);
100
101                 for($i = 0; $i < $this->rowcnt; $i++) {
102                         foreach($this->fieldList as $field => $value)
103                 {  
104                                 $this->obj->Selection->TypeText($this->list[$i]->$field);
105                                 $this->obj->Selection->MoveRight();
106                         }
107                 }
108                 $this->obj->ActiveDocument->SaveAs($this->mm_data_dir.'/Temp/'.$this->datasource_file);
109                 $this->obj->ActiveDocument->Close();
110         }
111         
112         function CreateDocument($template) {
113                 //$this->obj->Documents->Open($this->mm_data_dir.'/Templates/'.$template[0].'.dot');
114                 $this->obj->Documents->Open($template[0]);
115
116                 $this->obj->ActiveDocument->MailMerge->OpenHeaderSource($this->mm_data_dir.'/Temp/'.$this->header_file);
117                 
118                 $this->obj->ActiveDocument->MailMerge->OpenDataSource($this->mm_data_dir.'/Temp/'.$this->datasource_file);
119                 
120                 $this->obj->ActiveDocument->MailMerge->Execute();
121                 $this->obj->ActiveDocument->SaveAs($this->mm_data_dir.'/'.$template[1].'.doc');
122                 //$this->obj->Documents[$template[0]]->Close();
123                 //$this->obj->Documents[$template[1].'.doc']->Close();
124                 $this->obj->ActiveDocument->Close();
125                 return $template[1].'.doc';
126         }
127         
128         function Initialize() {
129                 $this->rowcnt = count($this->list);
130                 $this->fieldcnt = count($this->fieldList);
131                 $this->obj = new COM("word.application") or die("Unable to instanciate Word");
132                 $this->obj->Visible = $this->visible;
133                 
134                 //try to make the temp dir
135                 sugar_mkdir($this->mm_data_dir);
136                 sugar_mkdir($this->mm_data_dir.'/Temp/');
137         }
138         
139         function Quit() {
140                 $this->obj->Quit();
141         }
142         
143         function SetDataList($list = NULL) {
144                 if(is_array($list)) $this->list = $list;
145         }
146         
147         function SetFieldList($list = NULL) {
148                 if(is_array($list)) $this->fieldList = $list;
149         }
150
151 }
152
153 ?>