equal
deleted
inserted
replaced
1 <?php |
1 <?php |
2 |
2 |
3 /* |
3 /* |
4 * Enano - an open-source CMS capable of wiki functions, Drupal-like sidebar blocks, and everything in between |
4 * Enano - an open-source CMS capable of wiki functions, Drupal-like sidebar blocks, and everything in between |
5 * Version 1.1.2 (Caoineag alpha 2) |
5 * Version 1.1.3 (Caoineag alpha 3) |
6 * Copyright (C) 2006-2007 Dan Fuhry |
6 * Copyright (C) 2006-2007 Dan Fuhry |
7 * constants.php - important defines used Enano-wide |
7 * constants.php - important defines used Enano-wide |
8 * |
8 * |
9 * This program is Free Software; you can redistribute and/or modify it under the terms of the GNU General Public License |
9 * This program is Free Software; you can redistribute and/or modify it under the terms of the GNU General Public License |
10 * as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. |
10 * as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. |
101 // Protection levels |
101 // Protection levels |
102 // These are still hardcoded in some places, so don't change them |
102 // These are still hardcoded in some places, so don't change them |
103 define('PROTECT_NONE', 0); |
103 define('PROTECT_NONE', 0); |
104 define('PROTECT_FULL', 1); |
104 define('PROTECT_FULL', 1); |
105 define('PROTECT_SEMI', 2); |
105 define('PROTECT_SEMI', 2); |
106 |
|
107 // Special comments - plugin blocks |
|
108 define('PLUGIN_METABLOCK_LANGUAGE_START', '/**!language**'); |
|
109 define('PLUGIN_METABLOCK_LANGUAGE_END', '**!*/'); |
|
110 |
106 |
111 // |
107 // |
112 // Enano versions progress |
108 // Enano versions progress |
113 // |
109 // |
114 |
110 |