decir/constants.php
changeset 0 0417a5a0c7be
child 6 3f66ec435f08
equal deleted inserted replaced
-1:000000000000 0:0417a5a0c7be
       
     1 <?php
       
     2 /*
       
     3  * Decir
       
     4  * Version 0.1
       
     5  * Copyright (C) 2007 Dan Fuhry
       
     6  * constants.php - important values
       
     7  *
       
     8  * This program is Free Software; you can redistribute and/or modify it under the terms of the GNU General Public License
       
     9  * as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.
       
    10  *
       
    11  * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied
       
    12  * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for details.
       
    13  */
       
    14 
       
    15 if(!defined('ENANO_DECIR_VERSION'))
       
    16   die('Hacking attempt');
       
    17 
       
    18 define('FORUM_FORUM', 1);
       
    19 define('FORUM_CATEGORY', 2);
       
    20 
       
    21 define('TOPIC_NORMAL', 1);
       
    22 define('TOPIC_STICKY', 4);
       
    23 define('TOPIC_ANNOUNCE', 5);
       
    24 
       
    25 ?>