My favorites | Sign in
Project Home Downloads Wiki Issues Source
Checkout   Browse   Changes    
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php

class Skjb_Office_Spreadsheet
{
public $sheets = array();

public function __construct($filename = null)
{

}

public function addSheet($sheet = null)
{
if ($sheet === null) {
$sheet = new Skjb_Office_Spreadsheet_Sheet();
}

$this->sheets[] = $sheet;

return $sheet;
}
}

Change log

r59 by superhappycamperboy on May 26, 2010   Diff
Moving everything to the library subfolder
Go to: 
Project members, sign in to write a code review

Older revisions

r44 by superhappycamperboy on May 22, 2010   Diff
Making sheets public
r42 by superhappycamperboy on May 21, 2010   Diff
Adding basic office classes and
placeholders
All revisions of this file

File info

Size: 402 bytes, 22 lines
Powered by Google Project Hosting