995e0c42ad6ddf402bee3c489006c414d81274a8
[atutor.git] / mods / job_board / include / constants.inc.php
1 <?php
2 /***********************************************************************/
3 /* ATutor                                                                                                                          */
4 /***********************************************************************/
5 /* Copyright (c) 2002-2009                                                                                         */
6 /* Adaptive Technology Resource Centre / Inclusive Design Institute        */
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 //Job Board base variables
16 define('AT_JB_BASENAME',        'mods/job_board/');
17 define('AT_JB_BASE',            AT_INCLUDE_PATH.'../mods/job_board/');
18 define('AT_JB_INCLUDE',         AT_JB_BASE.'include/');
19
20 define('AT_JB_ROWS_PER_PAGE',           10);    //row per page constant, default is 50 (same as output.inc.php)
21
22
23 //Employer Statuses
24 define('AT_JB_STATUS_UNCONFIRMED',      0);
25 define('AT_JB_STATUS_CONFIRMED',        1);
26 define('AT_JB_STATUS_SUSPENDED',        2);
27
28 //Posting Statuses
29 define('AT_JB_POSTING_STATUS_UNCONFIRMED',      0);
30 define('AT_JB_POSTING_STATUS_CONFIRMED',        1);
31
32 ?>