issue6, page selector - a first try
[phpfspot.git] / gen_thumbs.php
1 #!/usr/bin/php
2 <?php
3
4 if(!isset($_SERVER["TERM"])) {
5    print "<br /><br />This script should only be invoked from command line!<br />\n";
6    die;
7 }
8
9 require_once "phpfspot.class.php";
10
11 $fspot = new PHPFSPOT;
12 $fspot->fromcmd = true;
13
14 $all = $fspot->getPhotoSelection();
15
16 foreach($all as $photo) {
17    $fspot->gen_thumb($photo);
18 }
19
20 ?>