made a copy
[atutor.git] / include / lib / likert_presets.inc.php
1 <?php
2 /************************************************************************/
3 /* ATutor                                                                                                                               */
4 /************************************************************************/
5 /* Copyright (c) 2002-2008 by Greg Gay, Joel Kronenberg & Heidi Hazelton*/
6 /* Adaptive Technology Resource Centre / University of Toronto                  */
7 /* http://atutor.ca                                                                                                             */
8 /*                                                                                                                                              */
9 /* This program is free software. You can redistribute it and/or                */
10 /* modify it under the terms of the GNU General Public License                  */
11 /* as published by the Free Software Foundation.                                                */
12 /************************************************************************/
13 // $Id$
14
15 if (!defined('AT_INCLUDE_PATH')) { exit; }
16
17
18 $_likert_preset = array();
19
20 $_likert_preset[] = array(_AT('lk_always'),_AT('lk_very_frequently'),_AT('lk_occasionally'),_AT('lk_rarely'),_AT('lk_very_rarely'),_AT('lk_never'));
21
22 $_likert_preset[] = array(_AT('lk_excellent'),_AT('lk_very_good'),_AT('lk_good'),_AT('lk_fair'),_AT('lk_poor'),_AT('lk_very_poor'));
23
24 $_likert_preset[] = array(_AT('lk_strongly_agree'),_AT('lk_agree'),_AT('lk_undecided'),_AT('lk_disagree'),_AT('lk_strongly_disagree'));
25
26 $_likert_preset[] = array(_AT('lk_very_important'),_AT('lk_important'),_AT('lk_mod_important'),_AT('lk_little_importance'),_AT('lk_unimportant'));
27
28
29 ?>