ckp
[plewww.git] / planetlab / tags / index.php
1 <?php
2
3 // Require login
4 require_once 'plc_login.php';
5
6 // Get session and API handles
7 require_once 'plc_session.php';
8 global $plc, $api;
9
10 // Print header
11 require_once 'plc_drupal.php';
12 include 'plc_header.php';
13
14 // Common functions
15 require_once 'plc_functions.php';
16
17 if ( $_GET['action'] ) {
18   include 'tag_edit.php';
19  } else if ( ! $_GET['add'] ) {
20   include 'tags.php';
21  } else {
22   include 'tag_set.php';
23  }
24
25 // Print footer
26 include 'plc_footer.php';
27
28 ?>