decir/constants.php
author Dan
Wed, 17 Oct 2007 20:23:51 -0400
changeset 1 6f8b7c6fac02
parent 0 0417a5a0c7be
child 6 3f66ec435f08
permissions -rw-r--r--
Let's just say: major progress and still only 20% complete. So many changes I forgot to commit.

<?php
/*
 * Decir
 * Version 0.1
 * Copyright (C) 2007 Dan Fuhry
 * constants.php - important values
 *
 * This program is Free Software; you can redistribute and/or modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied
 * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for details.
 */

if(!defined('ENANO_DECIR_VERSION'))
  die('Hacking attempt');

define('FORUM_FORUM', 1);
define('FORUM_CATEGORY', 2);

define('TOPIC_NORMAL', 1);
define('TOPIC_STICKY', 4);
define('TOPIC_ANNOUNCE', 5);

?>