source: extensions/GrumPluginClasses/classes/External/odsPhpGenerator/examples/Properties.php @ 17735

Last change on this file since 17735 was 17735, checked in by grum, 12 years ago

version 3.5.4 - fix minor bug & add new functions to framework

  • Property svn:executable set to *
File size: 376 bytes
Line 
1<?php
2
3// Load library
4require_once('../ods.php');
5
6// Create Ods object
7$ods  = new ods();
8
9// Set properties
10$ods->setTitle("My title is cool");
11$ods->setSubject("My subject is cool too");
12$ods->setKeyword("ods, internet");
13$ods->setDescription("I love odsPhpGenerator !!\n\nOk, i'm a programmer, sorry");
14
15// Download the file
16$ods->downloadOdsFile("Properties.ods"); 
17
18?>
Note: See TracBrowser for help on using the repository browser.