remove old readme
[atutor.git] / docs / themes / default / editor / arrange_content.tmpl.php
1 <?php
2 /************************************************************************/
3 /* ATutor                                                                                                                               */
4 /************************************************************************/
5 /* Copyright (c) 2002-2010                                              */
6 /* Inclusive Design Institute                                           */
7 /* http://atutor.ca                                                     */
8 /* This program is free software. You can redistribute it and/or        */
9 /* modify it under the terms of the GNU General Public License          */
10 /* as published by the Free Software Foundation.                        */
11 /************************************************************************/
12 if (!defined('AT_INCLUDE_PATH')) { exit; } 
13
14 global $contentManager;
15
16 require(AT_INCLUDE_PATH.'header.inc.php');
17 ?>
18 <div class="input-form">
19 <form action="<?php echo $_SERVER['PHP_SELF']; if ($this->cid > 0) echo '?cid='.$this->cid; else if ($this->pid > 0) echo '?pid='.$this->pid;?>" method="post" name="form"> 
20         <input type="hidden" name="button_1" value="-1" />
21 <?php
22         if ($contentManager->getNumSections() > (1 - (bool)(!$cid))) {
23                 echo '<p>' 
24                         , _AT('editor_properties_instructions', 
25                                 '<img src="'.$_base_path.'images/after.gif" alt="'._AT('after_topic', '').'" title="'._AT('after_topic', '').'" />', 
26                                 '<img src="'.$_base_path.'images/before.gif" alt="'._AT('before_topic', '').'" title="'._AT('before_topic', '').'" />',
27                                 '<img src="'.$_base_path.'images/child_of.gif" alt="'._AT('child_of', '').'" title="'._AT('child_of', '').'"  />')
28                         , '</p>';
29
30         }
31
32         ?><br />
33         <table border="0" align="center">
34         <tr>
35                 <th colspan="3"><?php echo _AT('move'); ?></th>
36                 <th><?php echo _AT('content'); ?></th>
37         </tr>
38         <tr>
39                 <td colspan="3">&nbsp;</td>
40                 <td><?php echo _AT('home'); ?></td>
41         </tr>
42 <?php
43                 $contentManager->printActionMenu($contentManager->_menu, 0, 0, '', array(), "movable");
44                         
45 ?>
46         </table>
47 </form>
48 </div>
49 <?php require(AT_INCLUDE_PATH.'footer.inc.php'); ?>