Back to Main Menu
USCHO Photo Admin
/*
** File: contentadmin/screens/photolist
** Description: View Image Directories
** Created: 4/20/2001
** Author: Adam Wodon
** Email: adamw@uscho.com
**
** Revision history: 4/26/03 added functionality
**
**
*/
if (isset($action))
{
print "
\n";
print "$actionoutput\n";
print "
\n";
}
if ($subscreen=="view")
{
if (empty($dir) && !empty($image_type)) // $image_type will be empty if this is a search
{
if ($image_type=="headshots_c") $dir="headshots";
elseif ($image_type=="taction") $dir="teasers";
elseif ($image_type=="theadshot") $dir="headshots/teasers";
elseif ($image_type=="logos" || $image_type=="ads") $dir=$image_type;
else $dir="$image_type/$subdir";
}
if ($search) print "
Search Results: $searchterm
\n";
else print "
Contents of: $dir
\n";
?>