Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjoverbey2007-01-27 04:29:15 +0000
committerjoverbey2007-01-27 04:29:15 +0000
commit1e0ffbdd1639f2051b64666c5a6303968c8e7805 (patch)
treefc7350241487c919a5cf84e518732af1c52353e1 /_projectCommon.php
parentf0eef33caed727b6aed3dace245dc4c2998bc69b (diff)
downloadphotran-1e0ffbdd1639f2051b64666c5a6303968c8e7805.tar.gz
photran-1e0ffbdd1639f2051b64666c5a6303968c8e7805.tar.xz
photran-1e0ffbdd1639f2051b64666c5a6303968c8e7805.zip
Added project-info, testing Phoenix
Diffstat (limited to '_projectCommon.php')
-rw-r--r--_projectCommon.php17
1 files changed, 17 insertions, 0 deletions
diff --git a/_projectCommon.php b/_projectCommon.php
new file mode 100644
index 0000000..1fddcc5
--- /dev/null
+++ b/_projectCommon.php
@@ -0,0 +1,17 @@
+<?php
+
+ # Set the theme for your project's web pages.
+ # See the Committer Tools "How Do I" for list of themes
+ # https://dev.eclipse.org/committers/
+ # Optional: defaults to system theme
+ $theme = "";
+
+ # Define your project-wide Nav bars here.
+ # Format is Link text, link URL (can be http://www.someothersite.com/), target (_self, _blank), level (1, 2 or 3)
+ # these are optional
+ $Nav->addNavSeparator("Project Home", "downloads.php");
+ $Nav->addCustomNav("Downloads", "downloads.php", "_self", 2);
+ $Nav->addCustomNav("Installation", "install.php", "_self", 2);
+ $Nav->addCustomNav("FAQ", "faq.php", "_self", 2);
+
+?>

Back to the top