opentbs

Форк
0
/
demo_ms_powerpoint.php 
88 строк · 3.9 Кб
1
<?php
2

3
// Include classes
4
include_once('tbs_class.php'); // Load the TinyButStrong template engine
5
include_once('../tbs_plugin_opentbs.php'); // Load the OpenTBS plugin
6

7
// prevent from a PHP configuration problem when using mktime() and date()
8
if (version_compare(PHP_VERSION,'5.1.0')>=0) {
9
	if (ini_get('date.timezone')=='') {
10
		date_default_timezone_set('UTC');
11
	}
12
}
13

14
// Initialize the TBS instance
15
$TBS = new clsTinyButStrong; // new instance of TBS
16
$TBS->Plugin(TBS_INSTALL, OPENTBS_PLUGIN); // load the OpenTBS plugin
17

18
// ------------------------------
19
// Prepare some data for the demo
20
// ------------------------------
21

22
// Retrieve the user name to display
23
$yourname = (isset($_POST['yourname'])) ? $_POST['yourname'] : '';
24
$yourname = trim(''.$yourname);
25
if ($yourname=='') $yourname = "(no name)";
26

27
// A recordset for merging tables
28
$data = array();
29
$data[] = array('rank'=> 'A', 'firstname'=>'Sandra' , 'name'=>'Hill'      , 'number'=>'1523d', 'score'=>200, 'email_1'=>'sh@tbs.com',  'email_2'=>'sandra@tbs.com',  'email_3'=>'s.hill@tbs.com');
30
$data[] = array('rank'=> 'A', 'firstname'=>'Roger'  , 'name'=>'Smith'     , 'number'=>'1234f', 'score'=>800, 'email_1'=>'rs@tbs.com',  'email_2'=>'robert@tbs.com',  'email_3'=>'r.smith@tbs.com' );
31
$data[] = array('rank'=> 'B', 'firstname'=>'William', 'name'=>'Mac Dowell', 'number'=>'5491y', 'score'=>130, 'email_1'=>'wmc@tbs.com', 'email_2'=>'william@tbs.com', 'email_3'=>'w.m.dowell@tbs.com' );
32

33
// Other single data items
34
$x_num = 3152.456;
35
$x_pc = 0.2567;
36
$x_dt = mktime(13,0,0,2,15,2010);
37
$x_bt = true;
38
$x_bf = false;
39
$x_delete = 1;
40

41
// -----------------
42
// Load the template
43
// -----------------
44

45
$template = 'demo_ms_powerpoint.pptx';
46
$TBS->LoadTemplate($template, OPENTBS_ALREADY_UTF8); // Also merge some [onload] automatic fields (depends of the type of document).
47

48
// ----------------------
49
// Debug mode of the demo
50
// ----------------------
51
if (isset($_POST['debug']) && ($_POST['debug']=='current')) $TBS->Plugin(OPENTBS_DEBUG_XML_CURRENT, true); // Display the intented XML of the current sub-file, and exit.
52
if (isset($_POST['debug']) && ($_POST['debug']=='info'))    $TBS->Plugin(OPENTBS_DEBUG_INFO, true); // Display information about the document, and exit.
53
if (isset($_POST['debug']) && ($_POST['debug']=='show'))    $TBS->Plugin(OPENTBS_DEBUG_XML_SHOW); // Tells TBS to display information when the document is merged. No exit.
54

55
// --------------------------------------------
56
// Merging and other operations on the template
57
// --------------------------------------------
58

59
// Select slide #2
60
$TBS->Plugin(OPENTBS_SELECT_SLIDE, 2);
61
// Change a picture using the command (it can also be done at the template side using parameter "ope=changepic")
62
$TBS->Plugin(OPENTBS_CHANGE_PICTURE, '#merge_me#', 'pic_1234f.png', array('unique' => 1));
63

64
// Merge a chart
65
$ChartRef = 'my_chart'; // Title of the shape that embeds the chart
66
$SeriesNameOrNum = 1;
67
$NewValues = array( array('Cat. A','Cat. B','Cat. C','Cat. D'), array(0.7, 1.0, 3.2, 4.8) );
68
$NewLegend = "Merged";
69
$TBS->PlugIn(OPENTBS_CHART, $ChartRef, $SeriesNameOrNum, $NewValues, $NewLegend);
70

71
// -----------------
72
// Output the result
73
// -----------------
74

75
// Define the name of the output file
76
$save_as = (isset($_POST['save_as']) && (trim($_POST['save_as'])!=='') && ($_SERVER['SERVER_NAME']=='localhost')) ? trim($_POST['save_as']) : '';
77
$output_file_name = str_replace('.', '_'.date('Y-m-d').$save_as.'.', $template);
78
if ($save_as==='') {
79
	// Output the result as a downloadable file (only streaming, no data saved in the server)
80
	$TBS->Show(OPENTBS_DOWNLOAD, $output_file_name); // Also merges all [onshow] automatic fields.
81
	// Be sure that no more output is done, otherwise the download file is corrupted with extra data.
82
	exit();
83
} else {
84
	// Output the result as a file on the server.
85
	$TBS->Show(OPENTBS_FILE, $output_file_name); // Also merges all [onshow] automatic fields.
86
	// The script can continue.
87
	exit("File [$output_file_name] has been created.");
88
}
89

Использование cookies

Мы используем файлы cookie в соответствии с Политикой конфиденциальности и Политикой использования cookies.

Нажимая кнопку «Принимаю», Вы даете АО «СберТех» согласие на обработку Ваших персональных данных в целях совершенствования нашего веб-сайта и Сервиса GitVerse, а также повышения удобства их использования.

Запретить использование cookies Вы можете самостоятельно в настройках Вашего браузера.