|
|
|
Contents of includes Directory
The includes folder under WWW contains the following files:
- header.php - Contains the instructions to create the list of links to the left,
the rotating banner at the top, and the quick links menu above the banner.
View Header
If you wish to change what pictures are rotated, edit the list at the top of this file.
Put the complete web address to each picture with a comma in between. Do not put
a comma after the last one. Example:
$frontPicture = array ( (Do not change this line.)
"http://www.clemson.edu/hort/images/logo.gif", (Full web address in quotes
"http://www.clemson.edu/hort/images/logo4.gif", followed by a comma.)
"http://www.clemson.edu/hort/images/logo5.JPG",
"http://www.clemson.edu/hort/images/logo3.gif" (No comma after last image.)
);
- footer.html - Contains the footer information: mission statement, address, and contact information.
View Footer
- menus.php - Generates the links for the side bar and quick links.
If you wish to change the links, this is the file to edit.
You can edit this file in any editor that will show you the
PHP code. In Dreamweaver, view source code. Here is a sample
of the contents of the top of this file:
<?php
//<!--
// Please list the links one per line.
// Headings should have the word "heading: " in front.
// Please separate the text and the link by ": ".
// do not change the {$links = "} line.
$links = "
heading: Home: http://www.clemson.edu/hort/
heading: Faculty and Staff
Faculty: http://www.clemson.edu/hort/people/index.php
Staff: http://www.clemson.edu/hort/people/index.php#staff
Graduate Students: http://www.clemson.edu/hort/grads/index.php
. . .
- headerNoPicture.php - Same as header.php, except the banner does not have any pcitures.
View Header
- headerNoBanner.php - Creates only the sidebar links and the quick links. No banner is created. (For
pages with their own banners.
View Header
- style.css - Cascading style sheet file. Defines the color schemes for links, the side bar links, and quick
links. Defines styles for the following:
- a:hover - Any link when the mouse is hovering over it
- .menuHeading a - The side bar headings
- .menuHeading a:hover - The side bar headings when the mouse is hovering over them
- .submenu - The side bar links under the headings
- .submenu a - The side bar links under the headings when the mouse is hovering over them
- .quickLinksHeading - The headings of the menu quick links at the top right
- .linktext - Any text that is defined to be part of the "linktext" class. (Usage:
for brackets or other characters surrounding a link that should match the link.)
- domUtils.js - Javascript file that handles the expanding side menus. Should not be edited.
The mission of Clemson University's Department of Horticulture
is to promote personal and professional growth through the
discovery, communication, and application of horticultural
experiences, knowledge, and scholarship. Our work fosters
environmental stewardship while improving economic wellbeing,
health, and quality of life for all.
|
|