2c4c416d354e8535f9b8619e3002c0b78ea4ddfe
[acontent.git] / docs / home / editor / editor_tabs / properties.inc.php
1 <?php
2 /************************************************************************/
3 /* AContent                                                             */
4 /************************************************************************/
5 /* Copyright (c) 2010                                                   */
6 /* Inclusive Design Institute                                           */
7 /*                                                                      */
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
13 if (!defined('TR_INCLUDE_PATH')) { exit; }
14 global $_course_id, $_content_id;
15
16 include_once(TR_INCLUDE_PATH.'classes/DAO/ContentTestsAssocDAO.class.php');
17 include_once(TR_INCLUDE_PATH.'classes/DAO/TestsDAO.class.php');
18 /* Get the list of associated tests with this content on page load */
19 $cid = $_REQUEST['cid'] = $_content_id; //uses request 'cause after 'saved', the cid will become $_GET.
20
21 ?>
22 <div class="row">
23         <span style="font-weight:bold"><label for="keys"><?php echo _AT('keywords'); ?></label></span><br />
24         <textarea name="keywords" class="formfield" cols="73" rows="2" id="keys"><?php echo ContentManager::cleanOutput($_POST['keywords']); ?></textarea>
25 </div>