mirror of https://github.com/itflow-org/itflow
Added more Descriptive Column titles and additonal cell spacing to contact templates
This commit is contained in:
parent
5c1eafede8
commit
4f56f2efb3
11
post.php
11
post.php
|
|
@ -4503,7 +4503,16 @@ if(isset($_GET['download_client_contacts_csv_template'])){
|
||||||
$f = fopen('php://memory', 'w');
|
$f = fopen('php://memory', 'w');
|
||||||
|
|
||||||
//set column headers
|
//set column headers
|
||||||
$fields = array('Name', 'Title', 'Department', 'Email', 'Phone', 'Ext', 'Mobile', 'Location');
|
$fields = array(
|
||||||
|
'Full Name ',
|
||||||
|
'Job Title ',
|
||||||
|
'Department Name ',
|
||||||
|
'Email Address ',
|
||||||
|
'Office Phone ',
|
||||||
|
'Office Extension ',
|
||||||
|
'Mobile Phone ',
|
||||||
|
'Office Location '
|
||||||
|
);
|
||||||
fputcsv($f, $fields, $delimiter);
|
fputcsv($f, $fields, $delimiter);
|
||||||
|
|
||||||
//move back to beginning of file
|
//move back to beginning of file
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue