corz.org uses cookies to remember that you've seen this notice explaining that corz.org uses cookies, okay!
<?php
/*
Thumber being called with various options..
Note: In this example, some of the options are redundant, being the defaults anyway.
;o)
(c) 2005->tomorrow! ~ cor + corz.org ;o)
*/
// We are rather redundantly specifying THIS directory, but it can of course be /any/ dir..
$thumber['img_dir'] = '/public/machine/source/php/imaging/thumber-examples/';
// Multiple style sheets can be specified, separate with commas..
$thumber['styles'] = '/inc/css/thumber.css';
// This text is placed directly above the thumbs, inside the main column, visually neat and can be
// placed anywhere your thumbs are, inside a div / section / whatever..
$thumber['title'] = 'My Amazing Thumber Examples!<br />
<small>The BEST Thumber Examples in the WORLD!! Well, the smallest, anyway.</small><br />';
// There is a readme in here for the distro machine, let's re-use it.
// This is placed directly below the thumbs, again, inside the main thumb column.
$thumber['inc_html'] = 'readme.htm';
// Enable thumber's page creation stuff, even when called embedded, like this..
$thumber['embedded'] = false;
// The main include line, this is where thumber kicks into action..
include $_SERVER['DOCUMENT_ROOT'].'/inc/img/thumber.php';
?>