| 1 |
<?php |
|---|
| 2 |
|
|---|
| 3 |
$sitename = sitename; |
|---|
| 4 |
$run_result .= <<< END |
|---|
| 5 |
<h1>Frequently Asked Questions</h1> |
|---|
| 6 |
<p>This page contains any frequently asked questions. Before contacting us to ask a question please check to see if it has already been answered here. If it is not included here do not hesitate to get in touch.</p> |
|---|
| 7 |
<p>[<i>available soon</i>]</p> |
|---|
| 8 |
<h3>About $sitename</h3> |
|---|
| 9 |
<ul> |
|---|
| 10 |
<li>What is $sitename?</li> |
|---|
| 11 |
<li>What is the purpose of $sitename?</li> |
|---|
| 12 |
<li>Can I get involved?</li> |
|---|
| 13 |
<li>Who owns $sitename?</li> |
|---|
| 14 |
<li>Can I give $sitename developers suggestions?</li> |
|---|
| 15 |
<li>What can I do if I wish to see a new feature added?</li> |
|---|
| 16 |
<li>How much does $sitename cost?</li> |
|---|
| 17 |
<li>Can I use $sitename in my university?</li> |
|---|
| 18 |
</ul> |
|---|
| 19 |
<h3>Accounts</h3> |
|---|
| 20 |
<ul> |
|---|
| 21 |
<li>How do I create a new account?</li> |
|---|
| 22 |
<li>Are there different types of account?</li> |
|---|
| 23 |
<li>How do I delete my account?</li> |
|---|
| 24 |
</ul> |
|---|
| 25 |
<h3>Communitites</h3> |
|---|
| 26 |
<ul> |
|---|
| 27 |
<li>What is a community?</li> |
|---|
| 28 |
<li>How do I link to other communities?</li> |
|---|
| 29 |
</ul> |
|---|
| 30 |
<h3>Friends</h3> |
|---|
| 31 |
<ul> |
|---|
| 32 |
<li>How do I link to my friends?</li> |
|---|
| 33 |
<li>What constitutes a friend I can link to?</li> |
|---|
| 34 |
</ul> |
|---|
| 35 |
<h3>Customise</h3> |
|---|
| 36 |
<ul> |
|---|
| 37 |
<li>Can I customize my $sitename e-portfolio?</li> |
|---|
| 38 |
<li>What level of control do I have over layout and design?</li> |
|---|
| 39 |
<li>How can I create my own templates?</li> |
|---|
| 40 |
</ul> |
|---|
| 41 |
<h3>Digital Repository</h3> |
|---|
| 42 |
<ul> |
|---|
| 43 |
<li>Why is the system not letting me upload a file?</li> |
|---|
| 44 |
<li>How do I delete an item in my repository?</li> |
|---|
| 45 |
<li>What is metadata?</li> |
|---|
| 46 |
<li>Can I link to and or search through some else's repository?</li> |
|---|
| 47 |
</ul> |
|---|
| 48 |
<h3>Access privileges</h3> |
|---|
| 49 |
<ul> |
|---|
| 50 |
<li>What are my access privileges?</li> |
|---|
| 51 |
<li>How do I change access privileges on an element in my e-portfolio?</li> |
|---|
| 52 |
</ul> |
|---|
| 53 |
<h3>Security</h3> |
|---|
| 54 |
<ul> |
|---|
| 55 |
<li>How secure is the site?</li> |
|---|
| 56 |
</ul> |
|---|
| 57 |
|
|---|
| 58 |
END; |
|---|
| 59 |
|
|---|
| 60 |
?> |
|---|