remove old readme
[atutor.git] / docs / mods / _standard / tests / lib / likert_presets.inc.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 // $Id$
13
14 if (!defined('AT_INCLUDE_PATH')) { exit; }
15
16
17 $_likert_preset = array();
18
19 $_likert_preset[] = array(_AT('lk_always'),_AT('lk_very_frequently'),_AT('lk_occasionally'),_AT('lk_rarely'),_AT('lk_very_rarely'),_AT('lk_never'));
20
21 $_likert_preset[] = array(_AT('lk_excellent'),_AT('lk_very_good'),_AT('lk_good'),_AT('lk_fair'),_AT('lk_poor'),_AT('lk_very_poor'));
22
23 $_likert_preset[] = array(_AT('lk_strongly_agree'),_AT('lk_agree'),_AT('lk_undecided'),_AT('lk_disagree'),_AT('lk_strongly_disagree'));
24
25 $_likert_preset[] = array(_AT('lk_very_important'),_AT('lk_important'),_AT('lk_mod_important'),_AT('lk_little_importance'),_AT('lk_unimportant'));
26
27
28 ?>