decir/constants.php
author Dan
Tue, 13 Nov 2007 23:33:14 -0500
changeset 9 6d9655e02026
parent 6 3f66ec435f08
permissions -rw-r--r--
Removed all dragger debugging info and started on the form for forum/category deletion

<?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);

define('DECIR_ADMIN_MODE_CREATE', 1);
define('DECIR_ADMIN_MODE_EDIT', 2);

?>