root / index.php

View | Annotate | Download (1.1 KB)

1 4686714d Andreas
 <?php
2 b97144fa Andreas
3 6e2d319e Andreas
 /***************************************************************************
4 6e2d319e Andreas
  *
5 7617d447 Andreas
  * phpfspot, presents your F-Spot photo collection in Web browsers.
6 7617d447 Andreas
  *
7 7617d447 Andreas
  * Copyright (c) by Andreas Unterkircher
8 6e2d319e Andreas
  *
9 6e2d319e Andreas
  *  This program is free software; you can redistribute it and/or modify
10 6e2d319e Andreas
  *  it under the terms of the GNU General Public License as published by
11 6e2d319e Andreas
  *  the Free Software Foundation; either version 2 of the License, or
12 6e2d319e Andreas
  *  any later version.
13 6e2d319e Andreas
  *
14 6e2d319e Andreas
  *  This program is distributed in the hope that it will be useful,
15 6e2d319e Andreas
  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
16 6e2d319e Andreas
  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 6e2d319e Andreas
  *  GNU General Public License for more details.
18 6e2d319e Andreas
  *
19 6e2d319e Andreas
  *  You should have received a copy of the GNU General Public License
20 6e2d319e Andreas
  *  along with this program; if not, write to the Free Software
21 6e2d319e Andreas
  *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 6e2d319e Andreas
  *
23 6e2d319e Andreas
  ***************************************************************************/
24 6e2d319e Andreas
25 55677896 Andreas
 /**
26 55677896 Andreas
  * initialize phpfspot
27 55677896 Andreas
  *
28 55677896 Andreas
  * @package phpfspot
29 55677896 Andreas
  */
30 b97144fa Andreas
 require_once "phpfspot.class.php";
31 b97144fa Andreas
32 b97144fa Andreas
 $fspot = new PHPFSPOT;
33 b97144fa Andreas
 $fspot->show();
34 b97144fa Andreas
35 b97144fa Andreas
 ?>