Rev 219 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
217 | tom | 1 | <?php |
2 | |||
3 | require '../_taios.php'; |
||
4 | |||
5 | $page = new Taios_Page('Manage All Projects', '../'); |
||
6 | $page->drawHeader(); |
||
7 | $page->drawMiddle(); |
||
8 | |||
9 | $page->checkLoggedIn(); |
||
10 | |||
11 | if ($page->isUserAdmin($page->getLoggedInUser())) |
||
12 | { |
||
13 | write('<p class="bold">Use this to manage all the projects on the Tim32 Website.</p><br />'); |
||
14 | |||
15 | write('<table>'); |
||
16 | write('<tr>'); |
||
17 | write('<td class="bold">ID</td>'); |
||
18 | write('<td class="bold">Author</td>'); |
||
19 | write('<td class="bold">Title</td>'); |
||
20 | write('<td class="bold">Description</td>'); |
||
21 | write('<td class="bold">Logo</td>'); |
||
220 | tom | 22 | write('<td class="bold">Download</td>'); |
23 | write('<td class="bold">Website</td>'); |
||
217 | tom | 24 | write('<td class="bold">Latest Version</td>'); |
25 | write('<td class="bold">Last Update</td>'); |
||
26 | write('</tr>'); |
||
27 | |||
28 | $ids = $page->findIDs('Projects'); |
||
29 | for ($i = 0; $i < count($ids); $i++) |
||
30 | { |
||
31 | $project = $page->getProject($ids[$i]); |
||
32 | write('<tr>'); |
||
33 | write('<td><a href="../projects/edit-project.php?id=' . $project->ID . '">' . $project->ID . '</a></td>'); |
||
34 | write('<td><a href="account.php?id=' . $project->author->ID . '">' . $project->author->name . '</a></td>'); |
||
35 | write('<td>' . $project->title . '</td>'); |
||
219 | tom | 36 | write('<td>' . str_replace("\n", '<br />', $project->description) . '</td>'); |
218 | tom | 37 | write('<td><img src="' . $project->logoURL . '" /></td>'); |
220 | tom | 38 | write('<td><a href="' . $project->downloadURL . '">Link</a></td>'); |
39 | write('<td><a href="' . $project->websiteURL . '">Link</a></td>'); |
||
217 | tom | 40 | write('<td>' . $project->latestVersion . '</td>'); |
219 | tom | 41 | write('<td>' . date('j/m/Y H:i', $project->lastUpdate) . '</td>'); |
217 | tom | 42 | write('</tr>'); |
43 | } |
||
44 | |||
45 | write('</table>'); |
||
46 | } |
||
47 | else |
||
48 | { |
||
49 | $page->drawError('You do not have permission to access this page.'); |
||
50 | } |
||
51 | |||
52 | $page->drawFooter(); |
||
53 | |||
54 | ?> |
||
55 |