$accessFileName = '.htBsFaAccess'
[line 234]
name of the directory access definition files.
it is highly recommended to start with '.ht' cause by default apache prohibits web users to view such files (like .htaccess, .htpasswd). Bs stands for BlueShoes, Fa for FileArchive.
if no access file is found, the directory is treated 'public'.
Tags:
$allowedTypes = array('gif', 'jpg', 'jpeg')
[line 132]
the allowed/accepted image types.
Tags:
$Bs_Date =
[line 83]
pseudostatic instance of Bs_Date.
Tags:
$Bs_FileSystem =
[line 69]
pseudostatic instance of Bs_FileSystem.
Tags:
$Bs_HtmlUtil =
[line 90]
pseudostatic instance of Bs_HtmlUtil.
Tags:
$Bs_ImageUtil =
[line 76]
pseudostatic instance of Bs_ImageUtil.
Tags:
$currentDirectory = ''
[line 115]
if we don't work in the root dir then we are in the given subdirectory.
that path is attached to both vars $serverBasePath and $webBasePath. eg "some/sub/directory/".
Tags:
$ignoreDir = array('CVS')
[line 140]
dirs that should be ignored.
by default 'CVS' dirs are ignored.
Tags:
$navigationStyle =
[line 219]
defines how the navigation (of image-directories) looks. see class Bs_HtmlNavigation.
Tags:
$numberOfImages =
[line 250]
gets set in getOverview(), tells the number of images found.
will be used in getPageList(), so use getOverview() first.
Tags:
$offset = 0
[line 124]
offset for the paging functionality.
the querystring is used to pass this information along. example: 3 means offset 3x the full page.
Tags:
$overviewSettings = array(
'tdWidth' => 160,
'tdHeight' => 160,
'tdColor' => 'silver',
'cols' => 3,
'rows' => 5,
)
[line 174]
settings for the overview display.
currently these key/value pairs are used: 'tdWidth' => 160 'tdHeight' => 160 'tdColor' => 'silver' 'cols' => 3 'rows' => 5
Tags:
$serverBasePath =
[line 98]
absolute server path to the image directory.
eg "/home/user/directory/".
Tags:
$sessionUser =
[line 241]
the user that is currently logged in, if any.
used to determine access rights.
$thumbnailStyleString =
[line 206]
html string to define how a thumbnail will be spitted out.
if used then most keys of $this->overviewSettings will be ignored.
the following constants can be used: __IMAGE_NAME_BIG__ __UPLOAD_DATETIME__ __IMAGE_WIDTH_BIG__ __IMAGE_HEIGHT_BIG__ __IMAGE_TYPE_BIG__ __IMAGE_SIZE_READABLE_BIG__ __IMAGE_WEBPATH_BIG__ __IMAGE_WEBPATH_THUMB__ __IMAGE_WEBPATH_XXL__ __FULL_ALTTEXT__ __DESCRIPTION_HTML__ __DESCRIPTION_PLAIN__ __DESCRIPTION_JS__
Tags:
$thumbnailTableString = '<table width="100%" border="0" cellspacing="0" cellpadding="0">'
[line 212]
Tags:
$thumbSettings = array(
'prefix' => 'thumb_',
'width' => 150,
'height' => 150,
)
[line 154]
settings for auto-generated thumbnails.
currently these key/value pairs are used: 'prefix' => 'thumb_' 'width' => 150 'height' => 150
set this var to bool FALSE if you don't want auto-generated thumbnails.
Tags:
$webBasePath =
[line 106]
relative or absolute web path to the base image directory.
eg "/directory/" or "directory/" or "http://domain.com/directory/".
Tags: