0
+ − 1
<?php
+ − 2
/*
+ − 3
Plugin Name: Runt - the Enano administration panel
+ − 4
Plugin URI: http://enanocms.org/
+ − 5
Description: Provides the page Special:Administration, which is the AJAX frontend to the various Admin:
+ − 6
Author: Dan Fuhry
73
0a74676a2f2f
Made the move to Loch Ness, and got some basic page grouping functionality working. TODO: fix some UI issues in Javascript ACL editor and change non-JS ACL editor to work with page groups too
Dan
diff
changeset
+ − 7
Version: 1.0.1
0
+ − 8
Author URI: http://enanocms.org/
+ − 9
*/
+ − 10
+ − 11
/*
+ − 12
* Enano - an open-source CMS capable of wiki functions, Drupal-like sidebar blocks, and everything in between
73
0a74676a2f2f
Made the move to Loch Ness, and got some basic page grouping functionality working. TODO: fix some UI issues in Javascript ACL editor and change non-JS ACL editor to work with page groups too
Dan
diff
changeset
+ − 13
* Version 1.0.1 (Loch Ness)
0
+ − 14
* Copyright (C) 2006-2007 Dan Fuhry
+ − 15
*
+ − 16
* This program is Free Software; you can redistribute and/or modify it under the terms of the GNU General Public License
+ − 17
* as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.
+ − 18
*
+ − 19
* This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied
+ − 20
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for details.
+ − 21
*/
+ − 22
+ − 23
global $db, $session, $paths, $template, $plugins; // Common objects
+ − 24
+ − 25
$plugins->attachHook('base_classes_initted', '
+ − 26
global $paths;
+ − 27
$paths->add_page(Array(
+ − 28
\'name\'=>\'Administration\',
+ − 29
\'urlname\'=>\'Administration\',
+ − 30
\'namespace\'=>\'Special\',
+ − 31
\'special\'=>0,\'visible\'=>0,\'comments_on\'=>0,\'protected\'=>1,\'delvotes\'=>0,\'delvote_ips\'=>\'\',
+ − 32
));
+ − 33
+ − 34
$paths->add_page(Array(
+ − 35
\'name\'=>\'Manage the Sidebar\',
+ − 36
\'urlname\'=>\'EditSidebar\',
+ − 37
\'namespace\'=>\'Special\',
+ − 38
\'special\'=>0,\'visible\'=>0,\'comments_on\'=>0,\'protected\'=>1,\'delvotes\'=>0,\'delvote_ips\'=>\'\',
+ − 39
));
+ − 40
');
+ − 41
74
68469a95658d
Various bugfixes and cleanups, too much to remember... see the diffs for what got changed :-)
Dan
diff
changeset
+ − 42
// Admin pages that were too enormous to be in this file were split off into the plugins/admin/ directory in 1.0.1
68469a95658d
Various bugfixes and cleanups, too much to remember... see the diffs for what got changed :-)
Dan
diff
changeset
+ − 43
require(ENANO_ROOT . '/plugins/admin/PageGroups.php');
68469a95658d
Various bugfixes and cleanups, too much to remember... see the diffs for what got changed :-)
Dan
diff
changeset
+ − 44
0
+ − 45
// function names are IMPORTANT!!! The name pattern is: page_<namespace ID>_<page URLname, without namespace>
+ − 46
+ − 47
function page_Admin_Home() {
+ − 48
global $db, $session, $paths, $template, $plugins; // Common objects
+ − 49
if ( $session->auth_level < USER_LEVEL_ADMIN || $session->user_level < USER_LEVEL_ADMIN )
+ − 50
{
+ − 51
echo '<h3>Error: Not authenticated</h3><p>It looks like your administration session is invalid or you are not authorized to access this administration page. Please <a href="' . makeUrlNS('Special', 'Login/' . $paths->nslist['Special'] . 'Administration', 'level=' . USER_LEVEL_ADMIN, true) . '">re-authenticate</a> to continue.</p>';
+ − 52
return;
+ − 53
}
+ − 54
+ − 55
// Basic information
+ − 56
echo RenderMan::render(
+ − 57
'== Welcome to Runt, the Enano administration panel. ==
+ − 58
+ − 59
Thank you for choosing Enano as your CMS. This screen allows you to see some information about your website, plus some details about how your site is doing statistically.
+ − 60
+ − 61
Using the links on the left you can control every aspect of your website\'s look and feel, plus you can manage users, work with pages, and install plugins to make your Enano installation even better.');
+ − 62
19
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 63
// Demo mode
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 64
if ( defined('ENANO_DEMO_MODE') )
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 65
{
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 66
echo '<h3>Enano is running in demo mode.</h3>
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 67
<p>If you borked something up, or if you\'re done testing, you can <a href="' . makeUrlNS('Special', 'DemoReset', false, true) . '">reset this site</a>. The site is reset automatically once every two hours. When a reset is performed, all custom modifications to the site are lost and replaced with default values.</p>';
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 68
}
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 69
0
+ − 70
// Check for the installer scripts
19
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 71
if( ( file_exists(ENANO_ROOT.'/install.php') || file_exists(ENANO_ROOT.'/schema.sql') ) && !defined('ENANO_DEMO_MODE') )
0
+ − 72
{
+ − 73
echo '<div class="error-box"><b>NOTE:</b> It appears that your install.php and/or schema.sql files still exist. It is HIGHLY RECOMMENDED that you delete or rename these files, to prevent getting your server hacked.</div>';
+ − 74
}
+ − 75
+ − 76
// Inactive users
+ − 77
$q = $db->sql_query('SELECT * FROM '.table_prefix.'logs WHERE log_type=\'admin\' AND action=\'activ_req\';');
+ − 78
if($q)
+ − 79
if($db->numrows() > 0)
+ − 80
{
+ − 81
$n = $db->numrows();
+ − 82
if($n == 1) $s = $n . ' user is';
+ − 83
else $s = $n . ' users are';
+ − 84
echo '<div class="warning-box">It appears that '.$s.' awaiting account activation. You can activate those accounts by going to the <a href="#" onclick="ajaxPage(\''.$paths->nslist['Admin'].'UserManager\'); return false;">User Manager</a>.</div>';
+ − 85
}
+ − 86
$db->free_result();
+ − 87
// Stats
+ − 88
if(getConfig('log_hits') == '1')
+ − 89
{
+ − 90
$stats = stats_top_pages(10);
61
+ − 91
//die('<pre>'.print_r($stats,true).'</pre>');
0
+ − 92
$c = 0;
+ − 93
$cls = 'row2';
+ − 94
echo '<h3>Most requested pages</h3><div class="tblholder"><table style="width: 100%;" border="0" cellspacing="1" cellpadding="4"><tr><th>Page</th><th>Hits</th></tr>';
61
+ − 95
foreach($stats as $data)
0
+ − 96
{
61
+ − 97
echo '<tr>';
+ − 98
$cls = ( $cls == 'row1' ) ? 'row2' : 'row1';
+ − 99
echo '<td class="'.$cls.'"><a href="'.makeUrl($data['page_urlname']).'">'.$data['page_title'].'</a></td><td style="text-align: center;" class="'.$cls.'">'.$data['num_hits'].'</td>';
+ − 100
echo '</tr>';
0
+ − 101
}
+ − 102
echo '</table></div>';
+ − 103
}
+ − 104
+ − 105
// Security log
+ − 106
echo '<h3>Security log</h3>';
+ − 107
echo '<div class="tblholder" style="/* max-height: 500px; clip: rect(0px,auto,auto,0px); overflow: auto; */"><table border="0" cellspacing="1" cellpadding="4" width="100%">';
+ − 108
$cls = 'row2';
+ − 109
echo '<tr><th style="width: 60%;">Type</th><th>Date</th><th>Username</th><th>IP Address</th></tr>';
20
+ − 110
require('config.php');
+ − 111
$hash = md5($dbpasswd);
+ − 112
unset($dbname, $dbhost, $dbuser, $dbpasswd);
+ − 113
unset($dbname, $dbhost, $dbuser, $dbpasswd); // PHP5 Zend bug
42
45ebe475ff75
I dunno how many times I'm gonna have to fix the "problem seems to be the hex conversion" bug, but this is at least the fourth try.
Dan
diff
changeset
+ − 114
if ( defined('ENANO_DEMO_MODE') && !isset($_GET[ $hash ]) && substr($_SERVER['REMOTE_ADDR'], 0, 8) != '192.168.' )
0
+ − 115
{
20
+ − 116
echo '<tr><td class="row1" colspan="4">Logs are recorded but not displayed for privacy purposes in the demo.</td></tr>';
0
+ − 117
}
+ − 118
else
+ − 119
{
20
+ − 120
if(isset($_GET['fulllog']))
+ − 121
{
+ − 122
$l = 'SELECT action,date_string,author,edit_summary,time_id,page_text FROM '.table_prefix.'logs WHERE log_type=\'security\' ORDER BY time_id DESC, action ASC;';
+ − 123
}
+ − 124
else
+ − 125
{
+ − 126
$l = 'SELECT action,date_string,author,edit_summary,time_id,page_text FROM '.table_prefix.'logs WHERE log_type=\'security\' ORDER BY time_id DESC, action ASC LIMIT 5';
+ − 127
}
+ − 128
$q = $db->sql_query($l);
+ − 129
while($r = $db->fetchrow())
+ − 130
{
+ − 131
if($cls == 'row2') $cls = 'row1';
+ − 132
else $cls = 'row2';
+ − 133
echo '<tr><td class="'.$cls.'">';
+ − 134
switch($r['action']) {
+ − 135
case "admin_auth_good": echo 'Successful elevated authentication'; if ( !empty($r['page_text']) ) { $level = $session->userlevel_to_string( intval($r['page_text']) ); echo "<br /><small>Authentication level: $level</small>"; } break;
+ − 136
case "admin_auth_bad": echo 'Failed elevated authentication'; if ( !empty($r['page_text']) ) { $level = $session->userlevel_to_string( intval($r['page_text']) ); echo "<br /><small>Attempted auth level: $level</small>"; } break;
+ − 137
case "activ_good": echo 'Successful account activation'; break;
+ − 138
case "auth_good": echo 'Successful regular user logon'; break;
+ − 139
case "activ_bad": echo 'Failed account activation'; break;
+ − 140
case "auth_bad": echo 'Failed regular user logon'; break;
+ − 141
case "sql_inject": echo 'SQL injection attempt<div style="max-width: 90%; clip: rect(0px,auto,auto,0px); overflow: auto; display: block; font-size: smaller;">Offending query: ' . htmlspecialchars($r['page_text']) . '</div>'; break;
+ − 142
case "db_backup": echo 'Database backup created<br /><small>Tables: ' . $r['page_text'] . '</small>'; break;
+ − 143
case "install_enano": echo "Installed Enano version {$r['page_text']}"; break;
74
68469a95658d
Various bugfixes and cleanups, too much to remember... see the diffs for what got changed :-)
Dan
diff
changeset
+ − 144
case "upgrade_enano": echo "Upgraded Enano to version {$r['page_text']}"; break;
20
+ − 145
}
+ − 146
echo '</td><td class="'.$cls.'">'.date('d M Y h:i a', $r['time_id']).'</td><td class="'.$cls.'">'.$r['author'].'</td><td class="'.$cls.'" style="cursor: pointer;" onclick="ajaxReverseDNS(this);" title="Click for reverse DNS info">'.$r['edit_summary'].'</td></tr>';
+ − 147
}
+ − 148
$db->free_result();
0
+ − 149
}
+ − 150
echo '</table></div>';
+ − 151
if(!isset($_GET['fulllog'])) echo '<p><a href="#" onclick="ajaxPage(\''.$paths->nslist['Admin'].'Home&fulllog\'); return false;">Full security log</a></p>';
+ − 152
+ − 153
}
+ − 154
+ − 155
function page_Admin_GeneralConfig() {
+ − 156
global $db, $session, $paths, $template, $plugins; // Common objects
+ − 157
if ( $session->auth_level < USER_LEVEL_ADMIN || $session->user_level < USER_LEVEL_ADMIN )
+ − 158
{
+ − 159
echo '<h3>Error: Not authenticated</h3><p>It looks like your administration session is invalid or you are not authorized to access this administration page. Please <a href="' . makeUrlNS('Special', 'Login/' . $paths->nslist['Special'] . 'Administration', 'level=' . USER_LEVEL_ADMIN, true) . '">re-authenticate</a> to continue.</p>';
+ − 160
return;
+ − 161
}
+ − 162
19
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 163
if(isset($_POST['submit']) && !defined('ENANO_DEMO_MODE') )
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 164
{
0
+ − 165
+ − 166
// Global site options
+ − 167
setConfig('site_name', $_POST['site_name']);
+ − 168
setConfig('site_desc', $_POST['site_desc']);
+ − 169
setConfig('main_page', str_replace(' ', '_', $_POST['main_page']));
+ − 170
setConfig('copyright_notice', $_POST['copyright']);
+ − 171
setConfig('contact_email', $_POST['contact_email']);
+ − 172
+ − 173
// Wiki mode
+ − 174
if(isset($_POST['wikimode'])) setConfig('wiki_mode', '1');
+ − 175
else setConfig('wiki_mode', '0');
+ − 176
if(isset($_POST['wiki_mode_require_login'])) setConfig('wiki_mode_require_login', '1');
+ − 177
else setConfig('wiki_mode_require_login', '0');
+ − 178
if(isset($_POST['editmsg'])) setConfig('wiki_edit_notice', '1');
+ − 179
else setConfig('wiki_edit_notice', '0');
+ − 180
setConfig('wiki_edit_notice_text', $_POST['editmsg_text']);
+ − 181
+ − 182
// Stats
+ − 183
if(isset($_POST['log_hits'])) setConfig('log_hits', '1');
+ − 184
else setConfig('log_hits', '0');
+ − 185
+ − 186
// Disablement
+ − 187
if(isset($_POST['site_disabled'])) { setConfig('site_disabled', '1'); setConfig('site_disabled_notice', $_POST['site_disabled_notice']); }
+ − 188
else setConfig('site_disabled', '0');
+ − 189
+ − 190
// Account activation
+ − 191
setConfig('account_activation', $_POST['account_activation']);
+ − 192
+ − 193
// W3C compliance buttons
+ − 194
if(isset($_POST['w3c-vh32'])) setConfig("w3c_vh32", "1");
+ − 195
else setConfig("w3c_vh32", "0");
+ − 196
if(isset($_POST['w3c-vh40'])) setConfig("w3c_vh40", "1");
+ − 197
else setConfig("w3c_vh40", "0");
+ − 198
if(isset($_POST['w3c-vh401'])) setConfig("w3c_vh401", "1");
+ − 199
else setConfig("w3c_vh401", "0");
+ − 200
if(isset($_POST['w3c-vxhtml10'])) setConfig("w3c_vxhtml10", "1");
+ − 201
else setConfig("w3c_vxhtml10", "0");
+ − 202
if(isset($_POST['w3c-vxhtml11'])) setConfig("w3c_vxhtml11", "1");
+ − 203
else setConfig("w3c_vxhtml11", "0");
+ − 204
if(isset($_POST['w3c-vcss'])) setConfig("w3c_vcss", "1");
+ − 205
else setConfig("w3c_vcss", "0");
+ − 206
+ − 207
// SourceForge.net logo
+ − 208
if(isset($_POST['showsf'])) setConfig('sflogo_enabled', '1');
+ − 209
else setConfig('sflogo_enabled', '0');
+ − 210
setConfig('sflogo_groupid', $_POST['sfgroup']);
+ − 211
setConfig('sflogo_type', $_POST['sflogo']);
+ − 212
+ − 213
// Comment options
+ − 214
if(isset($_POST['comment-approval'])) setConfig('approve_comments', '1');
+ − 215
else setConfig('approve_comments', '0');
+ − 216
if(isset($_POST['enable-comments'])) setConfig('enable_comments', '1');
+ − 217
else setConfig('enable_comments', '0');
+ − 218
setConfig('comments_need_login', $_POST['comments_need_login']);
+ − 219
+ − 220
// Powered by link
+ − 221
if ( isset($_POST['enano_powered_link']) ) setConfig('powered_btn', '1');
+ − 222
else setConfig('powered_btn', '0');
+ − 223
+ − 224
if(isset($_POST['dbdbutton'])) setConfig('dbd_button', '1');
+ − 225
else setConfig('dbd_button', '0');
+ − 226
+ − 227
if($_POST['emailmethod'] == 'phpmail') setConfig('smtp_enabled', '0');
+ − 228
else setConfig('smtp_enabled', '1');
+ − 229
+ − 230
setConfig('smtp_server', $_POST['smtp_host']);
+ − 231
setConfig('smtp_user', $_POST['smtp_user']);
+ − 232
if($_POST['smtp_pass'] != 'XXXXXXXXXXXX') setConfig('smtp_password', $_POST['smtp_pass']);
+ − 233
+ − 234
echo '<div class="info-box">Your changes to the site configuration have been saved.</div><br />';
+ − 235
+ − 236
}
19
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 237
else if ( isset($_POST['submit']) && defined('ENANO_DEMO_MODE') )
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 238
{
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 239
echo '<div class="error-box">Saving the general site configuration is blocked in the administration demo.</div>';
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 240
}
0
+ − 241
echo('<form name="main" action="'.htmlspecialchars(makeUrl($paths->nslist['Special'].'Administration', 'module='.$paths->cpage['module'])).'" method="post" onsubmit="if(!submitAuthorized) return false;">');
+ − 242
?>
+ − 243
<div class="tblholder">
+ − 244
<table border="0" width="100%" cellspacing="1" cellpadding="4">
+ − 245
+ − 246
<!-- Global options -->
+ − 247
+ − 248
<tr><th colspan="2">Global site options</th></tr>
+ − 249
<tr><th colspan="2" class="subhead">These options control the entire site.</th></tr>
+ − 250
40
+ − 251
<tr><td class="row1" style="width: 50%;">Site name:</td> <td class="row1" style="width: 50%;"><input type="text" name="site_name" size="30" value="<?php echo htmlspecialchars(getConfig('site_name')); ?>" /></td></tr>
+ − 252
<tr><td class="row2">Site description:</td> <td class="row2"><input type="text" name="site_desc" size="30" value="<?php echo htmlspecialchars(getConfig('site_desc')); ?>" /></td></tr>
+ − 253
<tr><td class="row1">Main page:</td> <td class="row1"><?php echo $template->pagename_field('main_page', htmlspecialchars(str_replace('_', ' ', getConfig('main_page')))); ?></td></tr>
+ − 254
<tr><td class="row2">Copyright notice shown on pages:</td><td class="row2"><input type="text" name="copyright" size="30" value="<?php echo htmlspecialchars(getConfig('copyright_notice')); ?>" /></td></tr>
0
+ − 255
<tr><td class="row1" colspan="2">Hint: If you're using Windows, you can make a "©" symbol by holding ALT and pressing 0169 on the numeric keypad.</td></tr>
+ − 256
<tr><td class="row2">Contact e-mail<br /><small>All e-mail sent from this site will appear to have come from the address shown here.</small></td><td class="row2"><input name="contact_email" type="text" size="40" value="<?php echo htmlspecialchars(getConfig('contact_email')); ?>" /></td></tr>
+ − 257
+ − 258
<!-- Wiki mode -->
+ − 259
+ − 260
<tr><th colspan="2">Wiki mode</th></tr>
+ − 261
+ − 262
<tr>
+ − 263
<td class="row3" rowspan="2">
+ − 264
Enano can also act as a wiki, meaning anyone can edit and create pages. To enable Wiki Mode, check the box to the right.<br /><br />
+ − 265
In Wiki Mode, certain HTML tags such as <script> and <object> are disabled, and all PHP code is disabled, except if the person editing the page is an administrator.<br /><br />
+ − 266
Also, Enano keeps complete page history, which makes restoring vandalized pages easy. You can also protect pages so that they cannot be edited.
+ − 267
</td>
+ − 268
<td class="row1">
+ − 269
<input type="checkbox" name="wikimode" id="wikimode" <?php if(getConfig('wiki_mode')=='1') echo('CHECKED '); ?> /><label for="wikimode">Enable Wiki Mode</label>
+ − 270
</td>
+ − 271
</tr>
+ − 272
+ − 273
<tr><td class="row2"><label><input type="checkbox" name="wiki_mode_require_login"<?php if(getConfig('wiki_mode_require_login')=='1') echo('CHECKED '); ?>/> Only for logged in users</label></td></tr>
+ − 274
+ − 275
<tr>
+ − 276
<td class="row3" rowspan="2">
+ − 277
<b>Edit page notice</b><br />
+ − 278
When Wiki Mode is enabled, anyone can edit pages. Check the box below and enter a message to display it whenever the page editor is opened.
+ − 279
</td>
+ − 280
<td class="row1">
+ − 281
<input onclick="if(this.checked) document.getElementById('editmsg_text').style.display='block'; else document.getElementById('editmsg_text').style.display='none';" type="checkbox" name="editmsg" id="editmsg" <?php if(getConfig('wiki_edit_notice')=='1') echo('CHECKED '); ?>/> <label for="editmsg">Show a message whenever pages are edited</label>
+ − 282
</td>
+ − 283
</tr>
+ − 284
+ − 285
<tr>
+ − 286
<td class="row2">
+ − 287
<textarea <?php if(getConfig('wiki_edit_notice')!='1') echo('style="display:none" '); ?>rows="5" cols="30" name="editmsg_text" id="editmsg_text"><?php echo getConfig('wiki_edit_notice_text'); ?></textarea>
+ − 288
</td>
+ − 289
</tr>
+ − 290
+ − 291
<!-- Site statistics -->
+ − 292
+ − 293
<tr><th colspan="2">Statistics and hit counting</th></tr>
+ − 294
+ − 295
<tr>
+ − 296
<td class="row1">Enano has the ability to show statistics for every page on the site. This allows you to keep very close track of who is visiting your site, and from where.<br /><br />Unfortunately, some users don't like being logged. For this reason, you should state clearly what is logged (usually the username or IP address, current time, page name, and referer URL) in your privacy policy. If your site is primarily geared towards children, and you are a United States citizen, you are required to have a privacy policy stating exactly what is being logged under the terms of the Childrens' Online Privacy Protection Act.</td>
+ − 297
<td class="row1"><label><input type="checkbox" name="log_hits" <?php if(getConfig('log_hits') == '1') echo 'checked="checked" '; ?>/> Log all page hits</label><br /><small>This excludes special and administration pages.</small></td>
+ − 298
</tr>
+ − 299
+ − 300
<!-- Comment options -->
+ − 301
+ − 302
<tr><th colspan="2">Comment system</th></tr>
+ − 303
<tr><td class="row1"><label for="enable-comments"><b>Enable the comment system</b></label> </td><td class="row1"><input name="enable-comments" id="enable-comments" type="checkbox" <?php if(getConfig('enable_comments')=='1') echo('CHECKED '); ?>/></td></tr>
+ − 304
<tr><td class="row2"><label for="comment-approval">Require approval before article comments can be shown</label></td><td class="row2"><input name="comment-approval" id="comment-approval" type="checkbox" <?php if(getConfig('approve_comments')=='1') echo('CHECKED '); ?>/></td></tr>
+ − 305
<tr><td class="row1">Guest comment posting allowed </td><td class="row1"><label><input name="comments_need_login" type="radio" value="0" <?php if(getConfig('comments_need_login')=='0') echo 'CHECKED '; ?>/> Yes</label>
+ − 306
<label><input name="comments_need_login" type="radio" value="1" <?php if(getConfig('comments_need_login')=='1') echo 'CHECKED '; ?>/> Require visual confirmation</label>
+ − 307
<!-- Default permissions --> <label><input name="comments_need_login" type="radio" value="2" <?php if(getConfig('comments_need_login')=='2') echo 'CHECKED '; ?>/> No (require login)</label></td></tr>
+ − 308
+ − 309
<!--
+ − 310
+ − 311
READ: Do not try to enable this, backend support for it has been disabled. To edit default
+ − 312
permissions, select The Entire Website in any permissions editor window.
+ − 313
+ − 314
<tr><th colspan="2">Default permissions for pages</th></tr>
+ − 315
+ − 316
<tr>
+ − 317
<td class="row1">You can edit the default set of permissions used when no other permissions are available. Permissions set here are used when no other permissions are available. As with other ACL rules, you can assign these defaults to every user or one specific user or group.</td>
+ − 318
<td class="row1"><a href="#" onclick="ajaxOpenACLManager('__DefaultPermissions', 'Special'); return false;">Manage default permissions</a></td>
+ − 319
</tr>
+ − 320
+ − 321
-->
+ − 322
+ − 323
<!-- enanocms.org link -->
+ − 324
+ − 325
<tr>
+ − 326
<th colspan="2">Promote Enano</th>
+ − 327
</tr>
+ − 328
<tr>
+ − 329
<td class="row3">
+ − 330
If you think Enano is nice, or if you want to show your support for the Enano team, you can do so by placing a link to the Enano
+ − 331
homepage in your Links sidebar block. You absolutely don't have to do this, and you won't get degraded support if you don't. Because
+ − 332
Enano is still relatively new in the CMS world, it needs all the attention it can get - and you can easily help to spread the word
+ − 333
using this link.
+ − 334
</td>
+ − 335
<td class="row1">
+ − 336
<label>
36
+ − 337
<input name="enano_powered_link" type="checkbox" <?php if(getConfig('powered_btn') == '1') echo 'checked="checked"'; ?> /> Place a link to enanocms.org on the sidebar
0
+ − 338
</label>
+ − 339
</td>
+ − 340
</tr>
+ − 341
+ − 342
<!-- Site disablement -->
+ − 343
+ − 344
<tr><th colspan="2">Disable all site access</th></tr>
+ − 345
+ − 346
<tr>
+ − 347
<td class="row3" rowspan="2">Disabling the site allows you to work on the site without letting non-administrators see or use it.</td>
+ − 348
<td class="row1"><label><input onclick="if(this.checked) document.getElementById('site_disabled_notice').style.display='block'; else document.getElementById('site_disabled_notice').style.display='none';" type="checkbox" name="site_disabled" <?php if(getConfig('site_disabled') == '1') echo 'checked="checked" '; ?>/> Disable this site</label></td>
+ − 349
</tr>
+ − 350
<tr>
+ − 351
<td class="row2">
30
+ − 352
<div id="site_disabled_notice"<?php if(getConfig('site_disabled')!='1') echo(' style="display:none"'); ?>>
0
+ − 353
Message to show to users:<br />
+ − 354
<textarea name="site_disabled_notice" rows="7" cols="30"><?php echo getConfig('site_disabled_notice'); ?></textarea>
+ − 355
</div>
+ − 356
</td>
+ − 357
</tr>
+ − 358
+ − 359
<!-- Account activation -->
+ − 360
+ − 361
<tr><th colspan="2">User account activation</th></tr>
+ − 362
+ − 363
<tr>
+ − 364
<td class="row3" colspan="2">
+ − 365
If you would like to require users to confirm their e-mail addresses by way of account activation, you can enable this behavior here. If this option is set to "None", users will be able to register and use this site without confirming their e-mail addresses. If this option is set to "User", users will automatically be sent e-mails upon registration with a link to activate their accounts. And lastly, if this option is set to "Admin", users' accounts will not be active until an administrator activates the account.<br /><br />
+ − 366
You may also disable registration completely if needed.<br /><br />
+ − 367
<b>Note: because of abuse by project administrators, sending account activation e-mails will not work on SourceForge.net servers.</b>
+ − 368
</td>
+ − 369
</tr>
+ − 370
+ − 371
<tr>
+ − 372
<td class="row1">Account activation:</td><td class="row1">
+ − 373
<?php
+ − 374
echo '<label><input'; if(getConfig('account_activation') == 'disable') echo ' checked="checked"'; echo ' type="radio" name="account_activation" value="disable" /> Disable registration</label><br />';
+ − 375
echo '<label><input'; if(getConfig('account_activation') != 'user' && getConfig('account_activation') != 'admin') echo ' checked="checked"'; echo ' type="radio" name="account_activation" value="none" /> None</label>';
+ − 376
echo '<label><input'; if(getConfig('account_activation') == 'user') echo ' checked="checked"'; echo ' type="radio" name="account_activation" value="user" /> User</label>';
+ − 377
echo '<label><input'; if(getConfig('account_activation') == 'admin') echo ' checked="checked"'; echo ' type="radio" name="account_activation" value="admin" /> Admin</label>';
+ − 378
?>
+ − 379
</td>
+ − 380
</tr>
+ − 381
+ − 382
<!-- E-mail options -->
+ − 383
+ − 384
<tr><th colspan="2">E-mail sent from the site</th></tr>
+ − 385
<tr><td class="row1">E-mail sending method:<br /><small>Try using the built-in e-mail method first. If that doesn't work, you will need to enter valid SMTP information here.</small></td>
+ − 386
<td class="row1"><label><input <?php if(getConfig('smtp_enabled') != '1') echo 'checked="checked"'; ?> type="radio" name="emailmethod" value="phpmail" />PHP's built-in mail() function</label><br />
+ − 387
<label><input <?php if(getConfig('smtp_enabled') == '1') echo 'checked="checked"'; ?> type="radio" name="emailmethod" value="smtp" />Use an external SMTP server</label></td>
+ − 388
</tr>
+ − 389
<tr><td class="row2">SMTP hostname:<br /><small>This option only applies to the external SMTP mode.</small></td>
+ − 390
<td class="row2"><input value="<?php echo getConfig('smtp_server'); ?>" name="smtp_host" type="text" size="30" /></td>
+ − 391
</tr>
+ − 392
<tr><td class="row1">SMTP credentials:<br /><small>This option only applies to the external SMTP mode.</small></td>
+ − 393
<td class="row1">Username: <input value="<?php echo getConfig('smtp_user'); ?>" name="smtp_user" type="text" size="30" /><br />
+ − 394
Password: <input value="<?php if(getConfig('smtp_password') != false) echo 'XXXXXXXXXXXX'; ?>" name="smtp_pass" type="password" size="30" /></td>
+ − 395
</tr>
+ − 396
+ − 397
<!-- SourceForge.net logo -->
+ − 398
+ − 399
<tr><th colspan="2">SourceForge.net logo</th></tr>
+ − 400
+ − 401
<tr>
+ − 402
<td colspan="2" class="row3">
+ − 403
All projects hosted by SourceForge.net are required to display an official SourceForge.net logo on their pages. If you want
+ − 404
to display a SourceForge.net logo on the sidebar, check the box below, enter your group ID, and select an image type.
+ − 405
</td>
+ − 406
</tr>
+ − 407
+ − 408
<?php
+ − 409
if(getConfig("sflogo_enabled")=='1') $c='CHECKED ';
+ − 410
else $c='';
+ − 411
if(getConfig("sflogo_groupid")) $g=getConfig("sflogo_groupid");
+ − 412
else $g='';
+ − 413
if(getConfig("sflogo_type")) $t=getConfig("sflogo_type");
+ − 414
else $t='1';
+ − 415
?>
+ − 416
+ − 417
<tr>
+ − 418
<td class="row1">Display the SourceForge.net logo on the right sidebar</td>
+ − 419
<td class="row1"><input type=checkbox name="showsf" id="showsf" <?php echo $c; ?> /></td>
+ − 420
</tr>
+ − 421
+ − 422
<tr>
+ − 423
<td class="row2">Group ID:</td>
+ − 424
<td class="row2"><input value="<?php echo $g; ?>" type=text size=15 name=sfgroup /></td>
+ − 425
</tr>
+ − 426
+ − 427
<tr>
+ − 428
<td class="row1">Logo style:</td>
+ − 429
<td class="row1">
+ − 430
<select name="sflogo">
+ − 431
<option <?php if($t=='1') echo('SELECTED '); ?>value=1>88x31px, white</option>
+ − 432
<option <?php if($t=='2') echo('SELECTED '); ?>value=2>125x37px, white</option>
+ − 433
<option <?php if($t=='3') echo('SELECTED '); ?>value=3>125x37px, black</option>
+ − 434
<option <?php if($t=='4') echo('SELECTED '); ?>value=4>125x37px, blue</option>
+ − 435
<option <?php if($t=='5') echo('SELECTED '); ?>value=5>210x62px, white</option>
+ − 436
<option <?php if($t=='6') echo('SELECTED '); ?>value=6>210x62px, black</option>
+ − 437
<option <?php if($t=='7') echo('SELECTED '); ?>value=7>210x62px, blue</option>
+ − 438
</select>
+ − 439
</td>
+ − 440
</tr>
+ − 441
+ − 442
<!-- W3C validator buttons -->
+ − 443
+ − 444
<tr><th colspan="2">W3C compliance logos</th></tr>
+ − 445
<tr><th colspan="2" class="subhead">Enano generates (by default) Valid XHTML 1.1 code, plus valid CSS. If you want to show this off, check the appropriate boxes below.</th></tr>
+ − 446
+ − 447
<tr><td class="row1"><label for="w3c-vh32">HTML 3.2</label> </td><td class="row1"><input type="checkbox" <?php if(getConfig('w3c_vh32')=='1') echo('CHECKED '); ?> id="w3c-vh32" name="w3c-vh32" /></td></tr>
+ − 448
<tr><td class="row2"><label for="w3c-vh40">HTML 4.0</label> </td><td class="row2"><input type="checkbox" <?php if(getConfig('w3c_vh40')=='1') echo('CHECKED '); ?> id="w3c-vh40" name="w3c-vh40" /></td></tr>
+ − 449
<tr><td class="row1"><label for="w3c-vh401">HTML 4.01</label> </td><td class="row1"><input type="checkbox" <?php if(getConfig('w3c_vh401')=='1') echo('CHECKED '); ?> id="w3c-vh401" name="w3c-vh401" /></td></tr>
+ − 450
<tr><td class="row2"><label for="w3c-vxhtml10">XHTML 1.0</label></td><td class="row2"><input type="checkbox" <?php if(getConfig('w3c_vxhtml10')=='1') echo('CHECKED '); ?> id="w3c-vxhtml10" name="w3c-vxhtml10" /></td></tr>
+ − 451
<tr><td class="row1"><label for="w3c-vxhtml11">XHTML 1.1</label></td><td class="row1"><input type="checkbox" <?php if(getConfig('w3c_vxhtml11')=='1') echo('CHECKED '); ?> id="w3c-vxhtml11" name="w3c-vxhtml11" /></td></tr>
+ − 452
<tr><td class="row2"><label for="w3c-vcss">CSS</label> </td><td class="row2"><input type="checkbox" <?php if(getConfig('w3c_vcss')=='1') echo('CHECKED '); ?> id="w3c-vcss" name="w3c-vcss" /></td></tr>
+ − 453
+ − 454
<!-- DefectiveByDesign.org ad -->
+ − 455
+ − 456
<tr><th colspan="2">Defective By Design Anti-DRM button</th></tr>
+ − 457
<tr><td colspan="2" class="row3"><b>The Enano project is strongly against Digital Restrictions Management.</b> DRM removes the freedoms that every consumer should have: to freely copy and use digital media items they legally purchased to their own devices. Showing your opposition to DRM is as easy as checking the box below to place a link to <a href="http://www.defectivebydesign.org">DefectiveByDesign.org</a> on your sidebar.</td></tr>
+ − 458
<tr><td class="row1"><label for="dbdbutton">Help stop DRM by placing a link to DBD on the sidebar!</label></td><td class="row1"><input type="checkbox" name="dbdbutton" id="dbdbutton" <?php if(getConfig('dbd_button')=='1') echo('checked="checked" '); ?>/></td></tr>
+ − 459
+ − 460
<!-- Save button -->
+ − 461
+ − 462
<tr><th style="text-align: right" class="subhead" colspan="2"><input type=submit name=submit value="Save changes" /></th></tr>
+ − 463
+ − 464
</table>
+ − 465
</div>
+ − 466
</form>
+ − 467
<?php
+ − 468
}
+ − 469
+ − 470
function page_Admin_UploadConfig()
+ − 471
{
+ − 472
global $db, $session, $paths, $template, $plugins; // Common objects
+ − 473
if ( $session->auth_level < USER_LEVEL_ADMIN || $session->user_level < USER_LEVEL_ADMIN )
+ − 474
{
+ − 475
echo '<h3>Error: Not authenticated</h3><p>It looks like your administration session is invalid or you are not authorized to access this administration page. Please <a href="' . makeUrlNS('Special', 'Login/' . $paths->nslist['Special'] . 'Administration', 'level=' . USER_LEVEL_ADMIN, true) . '">re-authenticate</a> to continue.</p>';
+ − 476
return;
+ − 477
}
+ − 478
+ − 479
if(isset($_POST['save']))
+ − 480
{
+ − 481
if(isset($_POST['enable_uploads'])) setConfig('enable_uploads', '1'); else setConfig('enable_uploads', '0');
+ − 482
if(isset($_POST['enable_imagemagick'])) setConfig('enable_imagemagick', '1'); else setConfig('enable_imagemagick', '0');
+ − 483
if(isset($_POST['cache_thumbs'])) setConfig('cache_thumbs', '1'); else setConfig('cache_thumbs', '0');
+ − 484
if(isset($_POST['file_history'])) setConfig('file_history', '1'); else setConfig('file_history', '0');
+ − 485
if(file_exists($_POST['imagemagick_path'])) setConfig('imagemagick_path', $_POST['imagemagick_path']);
+ − 486
else echo '<span style="color: red"><b>Warning:</b> the file "'.$_POST['imagemagick_path'].'" was not found, and the ImageMagick file path was not updated.</span>';
+ − 487
$max_upload = floor((float)$_POST['max_file_size'] * (int)$_POST['fs_units']);
19
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 488
if ( $max_upload > 1048576 && defined('ENANO_DEMO_MODE') )
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 489
{
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 490
echo '<div class="error-box">Wouldn\'t want the server DoS\'ed now. Stick to under a megabyte for the demo, please.</div>';
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 491
}
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 492
else
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 493
{
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 494
setConfig('max_file_size', $max_upload.'');
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 495
}
0
+ − 496
}
+ − 497
echo '<form name="main" action="'.htmlspecialchars(makeUrl($paths->nslist['Special'].'Administration', 'module='.$paths->cpage['module'])).'" method="post">';
+ − 498
?>
+ − 499
<h3>File upload configuration</h3>
+ − 500
<p>Enano supports the ability to upload files to your website and store the files in the database. This enables you to embed images
+ − 501
and such into pages without manually writing the HTML. However, the upload feature can sometimes pose a risk to your site, as viruses
+ − 502
and executable files can sometimes be uploaded.</p>
+ − 503
<p><label><input type="checkbox" name="enable_uploads" <?php if(getConfig('enable_uploads')=='1') echo 'checked="checked"'; ?> /> <b>Enable file uploads</b></label></p>
+ − 504
<p>Maximum file size: <input name="max_file_size" onkeyup="if(!this.value.match(/^([0-9\.]+)$/ig)) this.value = this.value.substr(0,this.value.length-1);" value="<?php echo getConfig('max_file_size'); ?>" /> <select name="fs_units"><option value="1" selected="selected">bytes</option><option value="1024">KB</option><option value="1048576">MB</option></select></p>
+ − 505
<p>You can allow Enano to generate thumbnails of images automatically. This feature requires ImageMagick to work properly. If your server
+ − 506
does not have ImageMagick on it, Enano will simply make your users' browsers scale the images. In most cases this is fine, but if you
+ − 507
are uploading large (>100KB) images and embedding them inside of pages, you should try to enable ImageMagick because transferring these
+ − 508
large images many times can cost you quite a lot of bandwidth.</p>
+ − 509
<p><label><input type="checkbox" name="enable_imagemagick" <?php if(getConfig('enable_imagemagick')=='1') echo 'checked="checked"'; ?> /> Use ImageMagick to scale images</label><br />
+ − 510
Path to ImageMagick: <input type="text" name="imagemagick_path" value="<?php if(getConfig('imagemagick_path')) echo getConfig('imagemagick_path'); else echo '/usr/bin/convert'; ?>" /><br />
+ − 511
On Linux and Unix servers, the most likely options here are /usr/bin/convert and /usr/local/bin/convert. If you server runs Windows, then
+ − 512
ImageMagick is most likely to be C:\Windows\Convert.exe or C:\Windows\System32\Convert.exe.
+ − 513
</p>
+ − 514
<p>If you use ImageMagick to scale images, your server will be very busy constantly scaling images if your website is busy, and your site
+ − 515
may experience slowdowns. You can dramatically speed up this scaling process if you use a directory to cache thumbnail images.</p>
+ − 516
<p><b>Please note:</b> the cache/ directory on your server <u>must</u> be writable by the server. While this is not usually a problem on
+ − 517
Windows servers, most Linux/Unix servers will require you to CHMOD the cache/ directory to 777. See your FTP client's user guide for
+ − 518
more information on how to do this.<?php if(!is_writable(ENANO_ROOT.'/cache/')) echo ' <b>At present, it seems that the cache directory
+ − 519
is not writable. The checkbox below has been disabled to maintain the stability of Enano.</b>'; ?></p>
+ − 520
<p><label><input type="checkbox" name="cache_thumbs" <?php if(getConfig('cache_thumbs')=='1' && is_writable(ENANO_ROOT.'/cache/')) echo 'checked="checked"'; elseif(!is_writable(ENANO_ROOT.'/cache/')) echo 'readonly="readonly"'; ?> /> Cache thumbnailed images</label></p>
+ − 521
<p>Lastly, you can choose whether file history will be saved. If this option is turned on, you will be able to roll back any malicious
+ − 522
changes made to uploaded files, but this requires a significant amount of database storage. You should probably leave this option
+ − 523
enabled unless you have less than 250MB of MySQL database space.</p>
+ − 524
<p><label><input type="checkbox" name="file_history" <?php if(getConfig('file_history')=='1' && is_writable(ENANO_ROOT.'/cache/')) echo 'checked="checked"'; ?> /> Keep a history of uploaded files</label></p>
+ − 525
<hr style="margin-left: 1em;" />
+ − 526
<p><input type="submit" name="save" value="Save changes" style="font-weight: bold;" /></p>
+ − 527
<?php
+ − 528
echo '</form>';
+ − 529
}
+ − 530
+ − 531
function page_Admin_PluginManager() {
+ − 532
global $db, $session, $paths, $template, $plugins; // Common objects
+ − 533
if ( $session->auth_level < USER_LEVEL_ADMIN || $session->user_level < USER_LEVEL_ADMIN )
+ − 534
{
+ − 535
echo '<h3>Error: Not authenticated</h3><p>It looks like your administration session is invalid or you are not authorized to access this administration page. Please <a href="' . makeUrlNS('Special', 'Login/' . $paths->nslist['Special'] . 'Administration', 'level=' . USER_LEVEL_ADMIN, true) . '">re-authenticate</a> to continue.</p>';
+ − 536
return;
+ − 537
}
+ − 538
9
1e61232606d6
Following fixes: admin theme supports <button> tag now, PageProcessor can eval now, and SpecialAdmin.php plugin can no longer be disabled
dan@fuhry
diff
changeset
+ − 539
if(isset($_GET['action']))
1e61232606d6
Following fixes: admin theme supports <button> tag now, PageProcessor can eval now, and SpecialAdmin.php plugin can no longer be disabled
dan@fuhry
diff
changeset
+ − 540
{
1e61232606d6
Following fixes: admin theme supports <button> tag now, PageProcessor can eval now, and SpecialAdmin.php plugin can no longer be disabled
dan@fuhry
diff
changeset
+ − 541
switch($_GET['action'])
1e61232606d6
Following fixes: admin theme supports <button> tag now, PageProcessor can eval now, and SpecialAdmin.php plugin can no longer be disabled
dan@fuhry
diff
changeset
+ − 542
{
0
+ − 543
case "enable":
+ − 544
setConfig('plugin_'.$_GET['plugin'], '1');
+ − 545
break;
+ − 546
case "disable":
19
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 547
if ( defined('ENANO_DEMO_MODE') && strstr($_GET['plugin'], 'Demo') )
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 548
{
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 549
echo('<h3>Error disabling plugin</h3><p>The demo lockdown plugin cannot be disabled in demo mode.</p>');
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 550
break;
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 551
}
9
1e61232606d6
Following fixes: admin theme supports <button> tag now, PageProcessor can eval now, and SpecialAdmin.php plugin can no longer be disabled
dan@fuhry
diff
changeset
+ − 552
if ( $_GET['plugin'] != 'SpecialAdmin.php' )
1e61232606d6
Following fixes: admin theme supports <button> tag now, PageProcessor can eval now, and SpecialAdmin.php plugin can no longer be disabled
dan@fuhry
diff
changeset
+ − 553
{
1e61232606d6
Following fixes: admin theme supports <button> tag now, PageProcessor can eval now, and SpecialAdmin.php plugin can no longer be disabled
dan@fuhry
diff
changeset
+ − 554
setConfig('plugin_'.$_GET['plugin'], '0');
1e61232606d6
Following fixes: admin theme supports <button> tag now, PageProcessor can eval now, and SpecialAdmin.php plugin can no longer be disabled
dan@fuhry
diff
changeset
+ − 555
}
1e61232606d6
Following fixes: admin theme supports <button> tag now, PageProcessor can eval now, and SpecialAdmin.php plugin can no longer be disabled
dan@fuhry
diff
changeset
+ − 556
else
1e61232606d6
Following fixes: admin theme supports <button> tag now, PageProcessor can eval now, and SpecialAdmin.php plugin can no longer be disabled
dan@fuhry
diff
changeset
+ − 557
{
1e61232606d6
Following fixes: admin theme supports <button> tag now, PageProcessor can eval now, and SpecialAdmin.php plugin can no longer be disabled
dan@fuhry
diff
changeset
+ − 558
echo('<h3>Error disabling plugin</h3><p>The administration panel plugin cannot be disabled.</p>');
1e61232606d6
Following fixes: admin theme supports <button> tag now, PageProcessor can eval now, and SpecialAdmin.php plugin can no longer be disabled
dan@fuhry
diff
changeset
+ − 559
}
0
+ − 560
break;
+ − 561
}
+ − 562
}
+ − 563
$dir = './plugins/';
+ − 564
$plugin_list = Array();
+ − 565
$system = Array();
9
1e61232606d6
Following fixes: admin theme supports <button> tag now, PageProcessor can eval now, and SpecialAdmin.php plugin can no longer be disabled
dan@fuhry
diff
changeset
+ − 566
1e61232606d6
Following fixes: admin theme supports <button> tag now, PageProcessor can eval now, and SpecialAdmin.php plugin can no longer be disabled
dan@fuhry
diff
changeset
+ − 567
if (is_dir($dir))
1e61232606d6
Following fixes: admin theme supports <button> tag now, PageProcessor can eval now, and SpecialAdmin.php plugin can no longer be disabled
dan@fuhry
diff
changeset
+ − 568
{
1e61232606d6
Following fixes: admin theme supports <button> tag now, PageProcessor can eval now, and SpecialAdmin.php plugin can no longer be disabled
dan@fuhry
diff
changeset
+ − 569
if ($dh = opendir($dir))
1e61232606d6
Following fixes: admin theme supports <button> tag now, PageProcessor can eval now, and SpecialAdmin.php plugin can no longer be disabled
dan@fuhry
diff
changeset
+ − 570
{
1e61232606d6
Following fixes: admin theme supports <button> tag now, PageProcessor can eval now, and SpecialAdmin.php plugin can no longer be disabled
dan@fuhry
diff
changeset
+ − 571
while (($file = readdir($dh)) !== false)
1e61232606d6
Following fixes: admin theme supports <button> tag now, PageProcessor can eval now, and SpecialAdmin.php plugin can no longer be disabled
dan@fuhry
diff
changeset
+ − 572
{
0
+ − 573
if(preg_match('#^(.*?)\.php$#is', $file) && $file != 'index.php')
+ − 574
{
+ − 575
if ( in_array($file, $plugins->system_plugins) )
+ − 576
{
+ − 577
$thelist =& $system;
+ − 578
continue;
+ − 579
}
+ − 580
else
+ − 581
{
+ − 582
$thelist =& $plugin_list;
+ − 583
}
+ − 584
$f = file_get_contents($dir . $file);
+ − 585
$f = explode("\n", $f);
+ − 586
$f = array_slice($f, 2, 7);
+ − 587
$f[0] = substr($f[0], 13, strlen($f[0]));
+ − 588
$f[1] = substr($f[1], 12, strlen($f[1]));
+ − 589
$f[2] = substr($f[2], 13, strlen($f[2]));
+ − 590
$f[3] = substr($f[3], 8, strlen($f[3]));
+ − 591
$f[4] = substr($f[4], 9, strlen($f[4]));
+ − 592
$f[5] = substr($f[5], 12, strlen($f[5]));
+ − 593
$thelist[$file] = Array();
+ − 594
$thelist[$file]['name'] = $f[0];
+ − 595
$thelist[$file]['uri'] = $f[1];
+ − 596
$thelist[$file]['desc'] = $f[2];
+ − 597
$thelist[$file]['auth'] = $f[3];
+ − 598
$thelist[$file]['vers'] = $f[4];
+ − 599
$thelist[$file]['aweb'] = $f[5];
+ − 600
}
+ − 601
}
+ − 602
closedir($dh);
+ − 603
}
9
1e61232606d6
Following fixes: admin theme supports <button> tag now, PageProcessor can eval now, and SpecialAdmin.php plugin can no longer be disabled
dan@fuhry
diff
changeset
+ − 604
else
1e61232606d6
Following fixes: admin theme supports <button> tag now, PageProcessor can eval now, and SpecialAdmin.php plugin can no longer be disabled
dan@fuhry
diff
changeset
+ − 605
{
1e61232606d6
Following fixes: admin theme supports <button> tag now, PageProcessor can eval now, and SpecialAdmin.php plugin can no longer be disabled
dan@fuhry
diff
changeset
+ − 606
echo '<div class="error-box">The plugins/ directory could not be opened.</div>';
1e61232606d6
Following fixes: admin theme supports <button> tag now, PageProcessor can eval now, and SpecialAdmin.php plugin can no longer be disabled
dan@fuhry
diff
changeset
+ − 607
return;
1e61232606d6
Following fixes: admin theme supports <button> tag now, PageProcessor can eval now, and SpecialAdmin.php plugin can no longer be disabled
dan@fuhry
diff
changeset
+ − 608
}
1e61232606d6
Following fixes: admin theme supports <button> tag now, PageProcessor can eval now, and SpecialAdmin.php plugin can no longer be disabled
dan@fuhry
diff
changeset
+ − 609
}
1e61232606d6
Following fixes: admin theme supports <button> tag now, PageProcessor can eval now, and SpecialAdmin.php plugin can no longer be disabled
dan@fuhry
diff
changeset
+ − 610
else
1e61232606d6
Following fixes: admin theme supports <button> tag now, PageProcessor can eval now, and SpecialAdmin.php plugin can no longer be disabled
dan@fuhry
diff
changeset
+ − 611
{
1e61232606d6
Following fixes: admin theme supports <button> tag now, PageProcessor can eval now, and SpecialAdmin.php plugin can no longer be disabled
dan@fuhry
diff
changeset
+ − 612
echo '<div class="error-box">The plugins/ directory is missing from your Enano installation.</div>';
1e61232606d6
Following fixes: admin theme supports <button> tag now, PageProcessor can eval now, and SpecialAdmin.php plugin can no longer be disabled
dan@fuhry
diff
changeset
+ − 613
return;
0
+ − 614
}
+ − 615
echo('<div class="tblholder"><table border="0" width="100%" cellspacing="1" cellpadding="4">
+ − 616
<tr><th>Plugin filename</th><th>Plugin name</th><th>Description</th><th>Author</th><th>Version</th><th></th></tr>');
+ − 617
$plugin_files = array_keys($plugin_list);
+ − 618
$cls = 'row2';
+ − 619
for ( $i = 0; $i < sizeof($plugin_files); $i++ )
+ − 620
{
+ − 621
$cls = ( $cls == 'row2' ) ? 'row3' : 'row2';
+ − 622
echo '<tr>
+ − 623
<td class="'.$cls.'">'.$plugin_files[$i].'</td>
+ − 624
<td class="'.$cls.'"><a href="'.$plugin_list[$plugin_files[$i]]['uri'].'">'.$plugin_list[$plugin_files[$i]]['name'].'</a></td>
+ − 625
<td class="'.$cls.'">'.$plugin_list[$plugin_files[$i]]['desc'].'</td>
+ − 626
<td class="'.$cls.'"><a href="'.$plugin_list[$plugin_files[$i]]['aweb'].'">'.$plugin_list[$plugin_files[$i]]['auth'].'</a></td>
+ − 627
<td class="'.$cls.'">'.$plugin_list[$plugin_files[$i]]['vers'].'</td>
+ − 628
<td class="'.$cls.'">';
+ − 629
if ( getConfig('plugin_'.$plugin_files[$i]) == '1' )
+ − 630
{
+ − 631
echo '<a href="'.makeUrl($paths->nslist['Special'].'Administration', 'module='.$paths->cpage['module']).'&action=disable&plugin='.$plugin_files[$i].'">Disable</a>';
+ − 632
}
+ − 633
else
+ − 634
{
+ − 635
echo '<a href="'.makeUrl($paths->nslist['Special'].'Administration', 'module='.$paths->cpage['module']).'&action=enable&plugin='.$plugin_files[$i].'">Enable</a>';
+ − 636
}
+ − 637
echo '</td></tr>';
+ − 638
}
+ − 639
echo '</table></div>';
+ − 640
}
+ − 641
+ − 642
function page_Admin_UploadAllowedMimeTypes()
+ − 643
{
+ − 644
global $db, $session, $paths, $template, $plugins; // Common objects
+ − 645
if ( $session->auth_level < USER_LEVEL_ADMIN || $session->user_level < USER_LEVEL_ADMIN )
+ − 646
{
+ − 647
echo '<h3>Error: Not authenticated</h3><p>It looks like your administration session is invalid or you are not authorized to access this administration page. Please <a href="' . makeUrlNS('Special', 'Login/' . $paths->nslist['Special'] . 'Administration', 'level=' . USER_LEVEL_ADMIN, true) . '">re-authenticate</a> to continue.</p>';
+ − 648
return;
+ − 649
}
+ − 650
+ − 651
global $mime_types, $mimetype_exps, $mimetype_extlist;
19
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 652
if(isset($_POST['save']) && !defined('ENANO_DEMO_MODE'))
0
+ − 653
{
+ − 654
$bits = '';
+ − 655
$keys = array_keys($mime_types);
+ − 656
foreach($keys as $i => $k)
+ − 657
{
+ − 658
if(isset($_POST['ext_'.$k])) $bits .= '1';
+ − 659
else $bits .= '0';
+ − 660
}
+ − 661
$bits = compress_bitfield($bits);
+ − 662
setConfig('allowed_mime_types', $bits);
+ − 663
echo '<div class="info-box">Your changes have been saved.</div>';
+ − 664
}
19
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 665
else if ( isset($_POST['save']) && defined('ENANO_DEMO_MODE') )
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 666
{
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 667
echo '<div class="error-box">Hmm, enabling executables, are we? Tsk tsk. I\'d love to know what\'s in that EXE file you want to upload. OK, maybe you didn\'t enable EXEs. But nevertheless, changing allowed filetypes is disabled in the demo.</div>';
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 668
}
0
+ − 669
$allowed = fetch_allowed_extensions();
+ − 670
?>
+ − 671
<h3>Allowed file types</h3>
+ − 672
<p>Using the form below, you can decide which file types are allowed to be uploaded to this site.</p>
+ − 673
<?php
+ − 674
echo '<form action="'.makeUrl($paths->nslist['Special'].'Administration', (( isset($_GET['sqldbg'])) ? 'sqldbg&' : '') .'module='.$paths->cpage['module']).'" method="post">';
+ − 675
$c = -1;
+ − 676
$t = -1;
+ − 677
$cl = 'row1';
+ − 678
echo "\n".' <div class="tblholder">'."\n".' <table cellspacing="1" cellpadding="2" style="margin: 0; padding: 0;" border="0">'."\n".' <tr>'."\n ";
+ − 679
foreach($mime_types as $e => $m)
+ − 680
{
+ − 681
$c++;
+ − 682
$t++;
+ − 683
if($c == 3)
+ − 684
{
+ − 685
$c = 0;
+ − 686
$cl = ( $cl == 'row1' ) ? 'row2' : 'row1';
+ − 687
echo '</tr>'."\n".' <tr>'."\n ";
+ − 688
}
+ − 689
$seed = "extchkbx_{$e}_".md5(microtime() . mt_rand());
+ − 690
$chk = (!empty($allowed[$e])) ? ' checked="checked"' : '';
+ − 691
echo " <td class='$cl'>\n <label><input id='{$seed}' type='checkbox' name='ext_{$e}'{$chk} />.{$e}\n ({$m})</label>\n </td>\n ";
+ − 692
}
+ − 693
while($c < 2)
+ − 694
{
+ − 695
$c++;
+ − 696
echo " <td class='{$cl}'></td>\n ";
+ − 697
}
+ − 698
echo '<tr><th class="subhead" colspan="3"><input type="submit" name="save" value="Save changes" /></th></tr>';
+ − 699
echo '</tr>'."\n".' </table>'."\n".' </div>';
+ − 700
echo '</form>';
+ − 701
?>
+ − 702
<?php
+ − 703
}
+ − 704
+ − 705
function page_Admin_Sidebar()
+ − 706
{
+ − 707
global $db, $session, $paths, $template, $plugins; // Common objects
+ − 708
if ( $session->auth_level < USER_LEVEL_ADMIN || $session->user_level < USER_LEVEL_ADMIN )
+ − 709
{
+ − 710
echo '<h3>Error: Not authenticated</h3><p>It looks like your administration session is invalid or you are not authorized to access this administration page. Please <a href="' . makeUrlNS('Special', 'Login/' . $paths->nslist['Special'] . 'Administration', 'level=' . USER_LEVEL_ADMIN, true) . '">re-authenticate</a> to continue.</p>';
+ − 711
return;
+ − 712
}
+ − 713
+ − 714
?>
+ − 715
<h2>Editing and managing the Enano sidebar</h2>
+ − 716
<p>The Enano sidebar is a versatile tool when scripted correctly. You don't have to be a programmer to enjoy the features the Sidebar
+ − 717
provides; however, editing the sidebar requires a small bit of programming knowledge and an understanding of Enano's system message
+ − 718
markup language.
+ − 719
</p>
+ − 720
<p>The Enano system markup language is somewhat similar to HTML, in that it uses tags (<example>like this</example>) for the
+ − 721
main syntax. However, Enano uses curly brackets ({ and }) as opposed to less-than and greater-than signs (< and >).</p>
+ − 722
<p>Programming the Enano sidebar requires the use of two tags: {slider} and {if}. The {slider} tag is used to create a new heading
+ − 723
on the sidebar, and all text enclosed in that tag will be collapsed when the heading is clicked. To specify the text on the heading,
+ − 724
use an equals sign (=) after the "slider" text. Then insert any links (they should be wiki-formatted) to internal Enano pages and
+ − 725
external sites.</p>
+ − 726
<p>So here is what the language for the default sidebar's "Navigation" heading looks like:</p>
+ − 727
<pre>{slider=Navigation}
+ − 728
[[Main Page|Home]]
+ − 729
[[Enano:Sidebar|Edit the sidebar]]
+ − 730
{/slider}</pre>
+ − 731
<p>Pretty simple, huh? Good, now we're going to learn another common aspect of Enano programming: conditionals. The {if} tag allows you
+ − 732
to decide whether a portion of the sidebar will be displayed based on a template variable. Currently the only available conditions are
+ − 733
"user_logged_in" and "auth_admin", but more will be added soon. To use a conditional, enter {if conditional_name}, and then the
+ − 734
wiki-formatted text that you want to be under that condition, and then close the tag with {/if}. In the same way, you can reverse the
+ − 735
effect with {!if}. With {!if}, the closing tag is still {/if}, so keep that in mind. An {else} tag will be supported soon.</p>
+ − 736
<p>Now it's time for some real fun: variables. All template variables can be accessed from the sidebar. A variable is simply the
+ − 737
variable name, prefixed by a dollar sign ($). Some of the most common variables are $USERNAME, $SITE_NAME, $SITE_DESC, and $PAGE_NAME.
+ − 738
The sidebar also has some special variables that it uses for some of its links. The logout link can be added with $LOGOUT_LINK, and
+ − 739
the "change theme" button can be added with $STYLE_LINK.</p>
+ − 740
<p>So here is the Enano markup for the portion of the sidebar that contains the user tools:</p>
+ − 741
<pre>{slider=$USERNAME}
+ − 742
[[User:$USERNAME|User page]]
+ − 743
[[Special:Contributions?user=$USERNAME|My Contributions]]
+ − 744
{if user_logged_in}
+ − 745
[[Special:Preferences|Preferences]]
+ − 746
$THEME_LINK
+ − 747
{/if}
+ − 748
{if auth_admin}
+ − 749
[[Special:Administration|Administration]]
+ − 750
{/if}
+ − 751
{if user_logged_in}
+ − 752
$LOGOUT_LINK
+ − 753
{/if}
+ − 754
{!if user_logged_in}
+ − 755
Create an account
+ − 756
Log in
+ − 757
{/if}
+ − 758
{/slider}</pre>
+ − 759
<?php
+ − 760
}
+ − 761
+ − 762
function page_Admin_UserManager() {
+ − 763
global $db, $session, $paths, $template, $plugins; // Common objects
+ − 764
if ( $session->auth_level < USER_LEVEL_ADMIN || $session->user_level < USER_LEVEL_ADMIN )
+ − 765
{
+ − 766
echo '<h3>Error: Not authenticated</h3><p>It looks like your administration session is invalid or you are not authorized to access this administration page. Please <a href="' . makeUrlNS('Special', 'Login/' . $paths->nslist['Special'] . 'Administration', 'level=' . USER_LEVEL_ADMIN, true) . '">re-authenticate</a> to continue.</p>';
+ − 767
return;
+ − 768
}
+ − 769
19
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 770
if(isset($_POST['go']))
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 771
{
0
+ − 772
// We need the user ID before we can do anything
+ − 773
$q = $db->sql_query('SELECT user_id,username,email,real_name,style,user_level FROM '.table_prefix.'users WHERE username=\'' . $db->escape($_POST['username']) . '\'');
19
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 774
if ( !$q )
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 775
{
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 776
die('Error selecting user ID: '.mysql_error());
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 777
}
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 778
if ( $db->numrows() < 1 )
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 779
{
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 780
echo('User does not exist, please enter another username.');
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 781
return;
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 782
}
0
+ − 783
$r = $db->fetchrow();
+ − 784
$db->free_result();
+ − 785
if(isset($_POST['save']))
+ − 786
{
+ − 787
$_POST['level'] = intval($_POST['level']);
+ − 788
+ − 789
$new_level = $_POST['level'];
+ − 790
$old_level = intval($r['user_level']);
+ − 791
19
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 792
if ( defined('ENANO_DEMO_MODE') )
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 793
{
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 794
echo '<div class="error-box">You cannot delete or modify user accounts in demo mode - they are cleaned up once every two hours.</div>';
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 795
$re = Array('permission denied');
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 796
}
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 797
else
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 798
{
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 799
$re = $session->update_user((int)$r['user_id'], $_POST['new_username'], false, $_POST['new_pass'], $_POST['email'], $_POST['real_name'], false, $_POST['level']);
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 800
}
0
+ − 801
+ − 802
if($re == 'success')
+ − 803
{
+ − 804
+ − 805
if ( $new_level != $old_level )
+ − 806
{
+ − 807
$user_id = intval($r['user_id']);
+ − 808
// We need to update group memberships
+ − 809
if ( $old_level == USER_LEVEL_ADMIN )
+ − 810
{
+ − 811
$session->remove_user_from_group($user_id, GROUP_ID_ADMIN);
+ − 812
}
+ − 813
else if ( $old_level == USER_LEVEL_MOD )
+ − 814
{
+ − 815
$session->remove_user_from_group($user_id, GROUP_ID_MOD);
+ − 816
}
+ − 817
+ − 818
if ( $new_level == USER_LEVEL_ADMIN )
+ − 819
{
+ − 820
$session->add_user_to_group($user_id, GROUP_ID_ADMIN, false);
+ − 821
}
+ − 822
else if ( $new_level == USER_LEVEL_MOD )
+ − 823
{
+ − 824
$session->add_user_to_group($user_id, GROUP_ID_MOD, false);
+ − 825
}
+ − 826
}
+ − 827
+ − 828
echo('<div class="info-box">Your changes have been saved.</div>');
+ − 829
}
+ − 830
else
+ − 831
{
+ − 832
echo('<div class="error-box">Error saving changes: '.implode('<br />', $re).'</div>');
+ − 833
}
+ − 834
$q = $db->sql_query('SELECT user_id,username,email,real_name,style,user_level FROM '.table_prefix.'users WHERE username=\''.$db->escape($_POST['username']).'\'');
+ − 835
if ( !$q )
+ − 836
{
+ − 837
die('Error selecting user ID: '.mysql_error());
+ − 838
}
+ − 839
if($db->numrows($q) < 1)
+ − 840
{
+ − 841
die('User does not exist, please enter another username.');
+ − 842
}
+ − 843
$r = mysql_fetch_object($q);
+ − 844
$db->free_result();
+ − 845
}
+ − 846
elseif(isset($_POST['deleteme']) && isset($_POST['delete_conf']))
+ − 847
{
19
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 848
if ( defined('ENANO_DEMO_MODE') )
0
+ − 849
{
19
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 850
echo '<div class="error-box">You cannot delete or modify user accounts in demo mode - they are cleaned up once every two hours.</div>';
0
+ − 851
}
+ − 852
else
+ − 853
{
19
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 854
$q = $db->sql_query('DELETE FROM users WHERE user_id='.$r['user_id'].';');
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 855
if($q)
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 856
{
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 857
echo '<div class="error-box">The user account "'.$r['username'].'" was deleted.</div>';
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 858
}
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 859
else
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 860
{
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 861
echo '<div class="error-box">The user account "'.$r['username'].'" could not be deleted due to a database error.<br /><br />'.$db->get_error().'</div>';
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 862
}
0
+ − 863
}
+ − 864
}
+ − 865
else
+ − 866
{
22
+ − 867
$disabled = ( $r['user_id'] == $session->user_id ) ? ' disabled="disabled" ' : '';
0
+ − 868
echo('
+ − 869
<h3>Edit User Info</h3>
+ − 870
<form action="'.makeUrl($paths->nslist['Special'].'Administration', 'module='.$paths->cpage['module']).'" method="post">
+ − 871
<table border="0" style="margin-left: 0.2in;">
+ − 872
<tr><td>Username:</td><td><input type="text" name="new_username" value="'.$r['username'].'" /></td></tr>
22
+ − 873
<tr><td>New Password:</td><td><input ' . $disabled . ' type="password" name="new_pass" /></td></tr>
+ − 874
<tr><td>E-mail:</td><td><input ' . $disabled . ' type="text" name="email" value="'.$r['email'].'" /></td></tr>
+ − 875
<tr><td>Real Name:</td><td><input ' . $disabled . ' type="text" name="real_name" value="'.$r['real_name'].'" /></td></tr>
+ − 876
' . ( ( !empty($disabled) ) ? '<tr><td colspan="2"><small>To change your e-mail address, password, or real name, please use the user control panel.</small></td></tr>' : '' ) . '
0
+ − 877
<tr><td>User level:</td><td><select name="level"><option '); if($r['user_level']==USER_LEVEL_CHPREF) echo('SELECTED'); echo(' value="'.USER_LEVEL_CHPREF.'">Regular User</option><option '); if($r['user_level']==USER_LEVEL_MOD) echo('SELECTED'); echo(' value="'.USER_LEVEL_MOD.'">Moderator</option><option '); if($r['user_level']==USER_LEVEL_ADMIN) echo('SELECTED'); echo(' value="'.USER_LEVEL_ADMIN.'">Administrator</option></select></td></tr>
+ − 878
<tr><td>Delete user:</td><td><input type="hidden" name="go" /><input type="hidden" name="username" value="'.$r['username'].'" /><input onclick="return confirm(\'This is your last warning.\n\nAre you sure you want to delete this user account? Even if you delete this user account, the username will be shown in page edit history, comments, and other areas of the site.\n\nDeleting a user account CANNOT BE UNDONE and should only be done in extreme circumstances.\n\nIf the user has violated the site policy, deleting the account will not prevent him from using the site, for that you need to add a new ban rule.\n\nContinue deleting this user account?\')" type="submit" name="deleteme" value="Delete this user" style="color: red;" /> <label><input type="checkbox" name="delete_conf" /> I\'m absolutely sure</label>
+ − 879
<tr><td align="center" colspan="2">
+ − 880
<input type="submit" name="save" value="Save Changes" /></td></tr>
+ − 881
</table>
+ − 882
</form>
+ − 883
');
+ − 884
}
19
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 885
}
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 886
else if(isset($_POST['clearsessions']))
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 887
{
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 888
if ( defined('ENANO_DEMO_MODE') )
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 889
{
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 890
echo '<div class="error-box">Sorry Charlie, no can do. You might mess up other people logged into the demo site.</div>';
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 891
}
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 892
else
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 893
{
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 894
// Get the current session information so the user doesn't get logged out
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 895
$aes = new AESCrypt();
22
+ − 896
$sk = md5(strrev($session->sid_super));
19
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 897
$qb = $db->sql_query('SELECT session_key,salt,auth_level,source_ip,time FROM '.table_prefix.'session_keys WHERE session_key=\''.$sk.'\' AND user_id='.$session->user_id.' AND auth_level='.USER_LEVEL_ADMIN);
22
+ − 898
if ( !$qb )
+ − 899
{
+ − 900
die('Error selecting session key info block B: '.$db->get_error());
+ − 901
}
+ − 902
if ( $db->numrows($qb) < 1 )
+ − 903
{
+ − 904
die('Error: cannot read admin session info block B, aborting table clear process');
+ − 905
}
19
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 906
$qa = $db->sql_query('SELECT session_key,salt,auth_level,source_ip,time FROM '.table_prefix.'session_keys WHERE session_key=\''.md5($session->sid).'\' AND user_id='.$session->user_id.' AND auth_level='.USER_LEVEL_MEMBER);
22
+ − 907
if ( !$qa )
+ − 908
{
+ − 909
die('Error selecting session key info block A: '.$db->get_error());
+ − 910
}
+ − 911
if ( $db->numrows($qa) < 1 )
+ − 912
{
+ − 913
die('Error: cannot read user session info block A, aborting table clear process');
+ − 914
}
19
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 915
$ra = mysql_fetch_object($qa);
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 916
$rb = mysql_fetch_object($qb);
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 917
$db->free_result($qa);
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 918
$db->free_result($qb);
22
+ − 919
19
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 920
$db->sql_query('DELETE FROM '.table_prefix.'session_keys;');
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 921
$db->sql_query('INSERT INTO '.table_prefix.'session_keys( session_key,salt,user_id,auth_level,source_ip,time ) VALUES( \''.$ra->session_key.'\', \''.$ra->salt.'\', \''.$session->user_id.'\', \''.$ra->auth_level.'\', \''.$ra->source_ip.'\', '.$ra->time.' ),( \''.$rb->session_key.'\', \''.$rb->salt.'\', \''.$session->user_id.'\', \''.$rb->auth_level.'\', \''.$rb->source_ip.'\', '.$rb->time.' )');
22
+ − 922
19
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 923
echo('
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 924
<div class="info-box">The session key table has been cleared. Your database should be a little bit smaller now.</div>
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 925
');
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 926
}
0
+ − 927
}
+ − 928
echo('
+ − 929
<h3>User Management</h3>
+ − 930
<form action="'.makeUrl($paths->nslist['Special'].'Administration', 'module='.$paths->cpage['module']).'" method="post" onsubmit="if(!submitAuthorized) return false;">
+ − 931
<p>Username: '.$template->username_field('username').' <input type="submit" name="go" value="Go" /></p>
+ − 932
<h3>Clear session keys table</h3>
+ − 933
<p>It\'s a good idea to clean out your session keys table every once in a while, since this helps to reduce database size. During this process you will be logged off and (hopefully) logged back on automatically. The side effects of this include all users except you being logged off.</p>
+ − 934
<p><input type="submit" name="clearsessions" value="Clear session keys table" /></p>
+ − 935
</form>
+ − 936
');
+ − 937
if(isset($_GET['action']) && isset($_GET['user']))
+ − 938
{
+ − 939
switch($_GET['action'])
+ − 940
{
+ − 941
case "activate":
+ − 942
$e = $db->sql_query('SELECT activation_key FROM '.table_prefix.'users WHERE username=\'' . $db->escape($_GET['user']) . '\'');
+ − 943
if($e)
+ − 944
{
+ − 945
$row = $db->fetchrow();
+ − 946
$db->free_result();
+ − 947
if($session->activate_account($_GET['user'], $row['activation_key'])) { echo '<div class="info-box">The user account "'.$_GET['user'].'" has been activated.</div>'; $db->sql_query('DELETE FROM '.table_prefix.'logs WHERE time_id=' . $db->escape($_GET['logid'])); }
+ − 948
else echo '<div class="warning-box">The user account "'.$_GET['user'].'" has NOT been activated, possibly because the account is already active.</div>';
+ − 949
} else echo '<div class="error-box">Error activating account: '.mysql_error().'</div>';
+ − 950
break;
+ − 951
case "sendemail":
+ − 952
if($session->send_activation_mail($_GET['user'])) { echo '<div class="info-box">The user "'.$_GET['user'].'" has been sent an e-mail with an activation link.</div>'; $db->sql_query('DELETE FROM '.table_prefix.'logs WHERE time_id=' . $db->escape($_GET['logid'])); }
+ − 953
else echo '<div class="error-box">The user account "'.$_GET['user'].'" has not been activated, probably because of a bad SMTP configuration.</div>';
+ − 954
break;
+ − 955
case "deny":
+ − 956
$e = $db->sql_query('DELETE FROM '.table_prefix.'logs WHERE log_type=\'admin\' AND action=\'activ_req\' AND edit_summary=\'' . $db->escape($_GET['user']) . '\';');
+ − 957
if(!$e) echo '<div class="error-box">Error during row deletion: '.mysql_error().'</div>';
+ − 958
else echo '<div class="info-box">All activation requests for the user "'.$_GET['user'].'" have been deleted.</div>';
+ − 959
break;
+ − 960
}
+ − 961
}
30
+ − 962
$q = $db->sql_query('SELECT l.log_type, l.action, l.time_id, l.date_string, l.author, l.edit_summary, u.user_coppa FROM '.table_prefix.'logs AS l
+ − 963
LEFT JOIN '.table_prefix.'users AS u
+ − 964
ON ( u.username = l.edit_summary OR u.username IS NULL )
+ − 965
WHERE log_type=\'admin\' AND action=\'activ_req\' ORDER BY time_id DESC;');
0
+ − 966
if($q)
+ − 967
{
+ − 968
if($db->numrows() > 0)
+ − 969
{
+ − 970
$n = $db->numrows();
+ − 971
if($n == 1) $s = $n . ' user is';
+ − 972
else $s = $n . ' users are';
+ − 973
echo '<h3>'.$s . ' awaiting account activation</h3>';
+ − 974
echo '<div class="tblholder">
+ − 975
<table border="0" cellspacing="1" cellpadding="4" width="100%">
30
+ − 976
<tr><th>Date of request</th><th>Requested by</th><th>Requested for</th><th>COPPA user</th><th colspan="3">Actions</th></tr>';
0
+ − 977
$cls = 'row2';
+ − 978
while($row = $db->fetchrow())
+ − 979
{
+ − 980
if($cls == 'row2') $cls = 'row1';
+ − 981
else $cls = 'row2';
30
+ − 982
$coppa = ( $row['user_coppa'] == '1' ) ? '<b>Yes</b>' : 'No';
+ − 983
echo '<tr><td class="'.$cls.'">'.date('F d, Y h:i a', $row['time_id']).'</td><td class="'.$cls.'">'.$row['author'].'</td><td class="'.$cls.'">'.$row['edit_summary'].'</td><td style="text-align: center;" class="' . $cls . '">' . $coppa . '</td><td class="'.$cls.'" style="text-align: center;"><a href="'.makeUrlNS('Special', 'Administration', 'module='.$paths->nslist['Admin'].'UserManager&action=activate&user='.$row['edit_summary'].'&logid='.$row['time_id']).'">Activate now</a></td><td class="'.$cls.'" style="text-align: center;"><a href="'.makeUrlNS('Special', 'Administration', 'module='.$paths->nslist['Admin'].'UserManager&action=sendemail&user='.$row['edit_summary'].'&logid='.$row['time_id']).'">Send activation e-mail</a></td><td class="'.$cls.'" style="text-align: center;"><a href="'.makeUrlNS('Special', 'Administration', 'module='.$paths->nslist['Admin'].'UserManager&action=deny&user='.$row['edit_summary'].'&logid='.$row['time_id']).'">Deny request</a></td></tr>';
0
+ − 984
}
+ − 985
echo '</table>';
+ − 986
}
+ − 987
$db->free_result();
+ − 988
}
+ − 989
}
+ − 990
+ − 991
function page_Admin_GroupManager()
+ − 992
{
+ − 993
global $db, $session, $paths, $template, $plugins; // Common objects
+ − 994
if ( $session->auth_level < USER_LEVEL_ADMIN || $session->user_level < USER_LEVEL_ADMIN )
+ − 995
{
+ − 996
echo '<h3>Error: Not authenticated</h3><p>It looks like your administration session is invalid or you are not authorized to access this administration page. Please <a href="' . makeUrlNS('Special', 'Login/' . $paths->nslist['Special'] . 'Administration', 'level=' . USER_LEVEL_ADMIN, true) . '">re-authenticate</a> to continue.</p>';
+ − 997
return;
+ − 998
}
+ − 999
+ − 1000
if(isset($_POST['do_create_stage1']))
+ − 1001
{
+ − 1002
if(!preg_match('/^([A-z0-9 -]+)$/', $_POST['create_group_name']))
+ − 1003
{
+ − 1004
echo '<p>The group name you chose is invalid.</p>';
+ − 1005
return;
+ − 1006
}
+ − 1007
echo '<form action="'.makeUrl($paths->nslist['Special'].'Administration', 'module='.$paths->cpage['module']).'" method="post" onsubmit="if(!submitAuthorized) return false;" enctype="multipart/form-data">';
+ − 1008
echo '<div class="tblholder">
+ − 1009
<table border="0" style="width:100%;" cellspacing="1" cellpadding="4">
+ − 1010
<tr><th colspan="2">Creating group: '.$_POST['create_group_name'].'</th></tr>
+ − 1011
<tr>
+ − 1012
<td class="row1">Group moderator</td><td class="row1">' . $template->username_field('group_mod') . '</td>
+ − 1013
</tr>
+ − 1014
<tr><td class="row2">Group status</td><td class="row2">
+ − 1015
<label><input type="radio" name="group_status" value="'.GROUP_CLOSED.'" checked="checked" /> Closed to new members</label><br />
+ − 1016
<label><input type="radio" name="group_status" value="'.GROUP_REQUEST.'" /> Members can ask to be added</label><br />
+ − 1017
<label><input type="radio" name="group_status" value="'.GROUP_OPEN.'" /> Members can join freely</label><br />
+ − 1018
<label><input type="radio" name="group_status" value="'.GROUP_HIDDEN.'" /> Group is hidden</label>
+ − 1019
</td></tr>
+ − 1020
<tr>
+ − 1021
<th class="subhead" colspan="2">
+ − 1022
<input type="hidden" name="create_group_name" value="'.$_POST['create_group_name'].'" />
+ − 1023
<input type="submit" name="do_create_stage2" value="Create group" />
+ − 1024
</th>
+ − 1025
</tr>
+ − 1026
</table>
+ − 1027
</div>';
+ − 1028
echo '</form>';
+ − 1029
return;
+ − 1030
}
+ − 1031
elseif(isset($_POST['do_create_stage2']))
+ − 1032
{
+ − 1033
if(!preg_match('/^([A-z0-9 -]+)$/', $_POST['create_group_name']))
+ − 1034
{
+ − 1035
echo '<p>The group name you chose is invalid.</p>';
+ − 1036
return;
+ − 1037
}
+ − 1038
if(!in_array(intval($_POST['group_status']), Array(GROUP_CLOSED, GROUP_OPEN, GROUP_HIDDEN, GROUP_REQUEST)))
+ − 1039
{
+ − 1040
echo '<p>Hacking attempt</p>';
+ − 1041
return;
+ − 1042
}
+ − 1043
$e = $db->sql_query('SELECT group_id FROM '.table_prefix.'groups WHERE group_name=\''.$db->escape($_POST['create_group_name']).'\';');
+ − 1044
if(!$e)
+ − 1045
{
+ − 1046
echo $db->get_error();
+ − 1047
return;
+ − 1048
}
+ − 1049
if($db->numrows() > 0)
+ − 1050
{
+ − 1051
echo '<p>The group name you entered already exists.</p>';
+ − 1052
return;
+ − 1053
}
+ − 1054
$db->free_result();
+ − 1055
$q = $db->sql_query('INSERT INTO '.table_prefix.'groups(group_name,group_type) VALUES( \''.$db->escape($_POST['create_group_name']).'\', ' . intval($_POST['group_status']) . ' )');
+ − 1056
if(!$q)
+ − 1057
{
+ − 1058
echo $db->get_error();
+ − 1059
return;
+ − 1060
}
+ − 1061
$e = $db->sql_query('SELECT user_id FROM '.table_prefix.'users WHERE username=\''.$db->escape($_POST['group_mod']).'\';');
+ − 1062
if(!$e)
+ − 1063
{
+ − 1064
echo $db->get_error();
+ − 1065
return;
+ − 1066
}
+ − 1067
if($db->numrows() < 1)
+ − 1068
{
+ − 1069
echo '<p>The username you entered could not be found.</p>';
+ − 1070
return;
+ − 1071
}
+ − 1072
$row = $db->fetchrow();
+ − 1073
$id = $row['user_id'];
+ − 1074
$db->free_result();
+ − 1075
$e = $db->sql_query('SELECT group_id FROM '.table_prefix.'groups WHERE group_name=\''.$db->escape($_POST['create_group_name']).'\';');
+ − 1076
if(!$e)
+ − 1077
{
+ − 1078
echo $db->get_error();
+ − 1079
return;
+ − 1080
}
+ − 1081
if($db->numrows() < 1)
+ − 1082
{
+ − 1083
echo '<p>The group ID could not be looked up.</p>';
+ − 1084
return;
+ − 1085
}
+ − 1086
$row = $db->fetchrow();
+ − 1087
$gid = $row['group_id'];
+ − 1088
$db->free_result();
+ − 1089
$e = $db->sql_query('INSERT INTO '.table_prefix.'group_members(group_id,user_id,is_mod) VALUES('.$gid.', '.$id.', 1);');
+ − 1090
if(!$e)
+ − 1091
{
+ − 1092
echo $db->get_error();
+ − 1093
return;
+ − 1094
}
+ − 1095
echo "<div class='info-box'>
+ − 1096
<b>Information</b><br />
+ − 1097
The group {$_POST['create_group_name']} has been created successfully.
+ − 1098
</div>";
+ − 1099
}
+ − 1100
if(isset($_POST['do_edit']) || isset($_POST['edit_do']))
+ − 1101
{
+ − 1102
// Fetch the group name
+ − 1103
$q = $db->sql_query('SELECT group_name,system_group FROM '.table_prefix.'groups WHERE group_id='.intval($_POST['group_edit_id']).';');
+ − 1104
if(!$q)
+ − 1105
{
+ − 1106
echo $db->get_error();
+ − 1107
return;
+ − 1108
}
+ − 1109
if($db->numrows() < 1)
+ − 1110
{
+ − 1111
echo '<p>Error: couldn\'t look up group name</p>';
+ − 1112
}
+ − 1113
$row = $db->fetchrow();
+ − 1114
$name = $row['group_name'];
+ − 1115
$db->free_result();
+ − 1116
if(isset($_POST['edit_do']))
+ − 1117
{
+ − 1118
if(isset($_POST['edit_do']['del_group']))
+ − 1119
{
+ − 1120
if ( $row['system_group'] == 1 )
+ − 1121
{
+ − 1122
echo '<div class="error-box">The group "' . $name . '" could not be deleted because it is a system group required for site functionality.</div>';
+ − 1123
}
+ − 1124
else
+ − 1125
{
+ − 1126
$q = $db->sql_query('DELETE FROM '.table_prefix.'group_members WHERE group_id='.intval($_POST['group_edit_id']).';');
+ − 1127
if(!$q)
+ − 1128
{
+ − 1129
echo $db->get_error();
+ − 1130
return;
+ − 1131
}
+ − 1132
$q = $db->sql_query('DELETE FROM '.table_prefix.'groups WHERE group_id='.intval($_POST['group_edit_id']).';');
+ − 1133
if(!$q)
+ − 1134
{
+ − 1135
echo $db->get_error();
+ − 1136
return;
+ − 1137
}
+ − 1138
echo '<div class="info-box">The group "'.$name.'" has been deleted. Return to the <a href="javascript:ajaxPage(\'Admin:GroupManager\');">group manager</a>.</div>';
+ − 1139
return;
+ − 1140
}
+ − 1141
}
+ − 1142
if(isset($_POST['edit_do']['save_name']))
+ − 1143
{
+ − 1144
if(!preg_match('/^([A-z0-9 -]+)$/', $_POST['group_name']))
+ − 1145
{
+ − 1146
echo '<p>The group name you chose is invalid.</p>';
+ − 1147
return;
+ − 1148
}
+ − 1149
$q = $db->sql_query('UPDATE '.table_prefix.'groups SET group_name=\''.$db->escape($_POST['group_name']).'\'
+ − 1150
WHERE group_id='.intval($_POST['group_edit_id']).';');
+ − 1151
if(!$q)
+ − 1152
{
+ − 1153
echo $db->get_error();
+ − 1154
return;
+ − 1155
}
+ − 1156
else
+ − 1157
{
+ − 1158
echo '<div class="info-box" style="margin: 0 0 10px 0;"">
+ − 1159
The group name has been updated.
+ − 1160
</div>';
+ − 1161
}
+ − 1162
$name = $_POST['group_name'];
+ − 1163
+ − 1164
}
+ − 1165
$q = $db->sql_query('SELECT member_id FROM '.table_prefix.'group_members
+ − 1166
WHERE group_id='.intval($_POST['group_edit_id']).';');
+ − 1167
if(!$q)
+ − 1168
{
+ − 1169
echo $db->get_error();
+ − 1170
return;
+ − 1171
}
+ − 1172
if($db->numrows() > 0)
+ − 1173
{
+ − 1174
while($row = $db->fetchrow($q))
+ − 1175
{
+ − 1176
if(isset($_POST['edit_do']['del_' . $row['member_id']]))
+ − 1177
{
+ − 1178
$e = $db->sql_query('DELETE FROM '.table_prefix.'group_members WHERE member_id='.$row['member_id']);
+ − 1179
if(!$e)
+ − 1180
{
+ − 1181
echo $db->get_error();
+ − 1182
return;
+ − 1183
}
+ − 1184
}
+ − 1185
}
+ − 1186
}
+ − 1187
$db->free_result();
+ − 1188
if(isset($_POST['edit_do']['add_member']))
+ − 1189
{
+ − 1190
$q = $db->sql_query('SELECT user_id FROM '.table_prefix.'users WHERE username=\''.$db->escape($_POST['edit_add_username']).'\';');
+ − 1191
if(!$q)
+ − 1192
{
+ − 1193
echo $db->get_error();
+ − 1194
return;
+ − 1195
}
+ − 1196
if($db->numrows() > 0)
+ − 1197
{
+ − 1198
$row = $db->fetchrow();
+ − 1199
$user_id = $row['user_id'];
+ − 1200
$is_mod = ( isset( $_POST['add_mod'] ) ) ? '1' : '0';
+ − 1201
$q = $db->sql_query('INSERT INTO '.table_prefix.'group_members(group_id,user_id,is_mod) VALUES('.intval($_POST['group_edit_id']).','.$user_id.','.$is_mod.');');
+ − 1202
if(!$q)
+ − 1203
{
+ − 1204
echo $db->get_error();
+ − 1205
return;
+ − 1206
}
+ − 1207
else
+ − 1208
{
+ − 1209
echo '<div class="info-box" style="margin: 0 0 10px 0;"">
+ − 1210
The user "'.$_POST['edit_add_username'].'" has been added to this usergroup.
+ − 1211
</div>';
+ − 1212
}
+ − 1213
}
+ − 1214
else
+ − 1215
echo '<div class="warning-box"><b>The user "'.$_POST['edit_add_username'].'" could not be added.</b><br />This username does not exist.</div>';
+ − 1216
}
+ − 1217
}
+ − 1218
$sg_disabled = ( $row['system_group'] == 1 ) ? ' value="Can\'t delete system group" disabled="disabled" style="color: #FF9773" ' : ' value="Delete this group" style="color: #FF3713" ';
+ − 1219
echo '<form action="'.makeUrl($paths->nslist['Special'].'Administration', 'module='.$paths->cpage['module']).'" method="post" onsubmit="if(!submitAuthorized) return false;" enctype="multipart/form-data">';
+ − 1220
echo '<div class="tblholder">
+ − 1221
<table border="0" style="width:100%;" cellspacing="1" cellpadding="4">
+ − 1222
<tr><th>Edit group name</th></tr>
+ − 1223
<tr>
+ − 1224
<td class="row1">
+ − 1225
Group name: <input type="text" name="group_name" value="'.$name.'" />
+ − 1226
</td>
+ − 1227
</tr>
+ − 1228
<tr>
+ − 1229
<th class="subhead">
+ − 1230
<input type="submit" name="edit_do[save_name]" value="Save name" />
+ − 1231
<input type="submit" name="edit_do[del_group]" '.$sg_disabled.' />
+ − 1232
</th>
+ − 1233
</tr>
+ − 1234
</table>
+ − 1235
</div>
+ − 1236
<input type="hidden" name="group_edit_id" value="'.$_POST['group_edit_id'].'" />';
+ − 1237
echo '</form>';
+ − 1238
echo '<form action="'.makeUrl($paths->nslist['Special'].'Administration', 'module='.$paths->cpage['module']).'" method="post" onsubmit="if(!submitAuthorized) return false;" enctype="multipart/form-data">';
+ − 1239
echo '<div class="tblholder">
+ − 1240
<table border="0" style="width:100%;" cellspacing="1" cellpadding="4">
+ − 1241
<tr><th colspan="3">Edit group members</th></tr>';
+ − 1242
$q = $db->sql_query('SELECT m.member_id,m.is_mod,u.username FROM '.table_prefix.'group_members AS m
+ − 1243
LEFT JOIN '.table_prefix.'users AS u
+ − 1244
ON u.user_id=m.user_id
+ − 1245
WHERE m.group_id='.intval($_POST['group_edit_id']).'
+ − 1246
ORDER BY m.is_mod DESC, u.username ASC;');
+ − 1247
if(!$q)
+ − 1248
{
+ − 1249
echo $db->get_error();
+ − 1250
return;
+ − 1251
}
+ − 1252
if($db->numrows() < 1)
+ − 1253
{
+ − 1254
echo '<tr><td colspan="3" class="row1">This group has no members.</td></tr>';
+ − 1255
}
+ − 1256
else
+ − 1257
{
+ − 1258
$cls = 'row2';
+ − 1259
while($row = $db->fetchrow())
+ − 1260
{
+ − 1261
$cls = ( $cls == 'row1' ) ? 'row2' : 'row1';
+ − 1262
$mod = ( $row['is_mod'] == 1 ) ? 'Mod' : '';
+ − 1263
echo '<tr>
+ − 1264
<td class="'.$cls.'" style="width: 100%;">
+ − 1265
' . $row['username'] . '
+ − 1266
</td>
+ − 1267
<td class="'.$cls.'">
+ − 1268
'.$mod.'
+ − 1269
</td>
+ − 1270
<td class="'.$cls.'">
+ − 1271
<input type="submit" name="edit_do[del_'.$row['member_id'].']" value="Remove member" />
+ − 1272
</td>
+ − 1273
</tr>';
+ − 1274
}
+ − 1275
}
+ − 1276
$db->free_result();
+ − 1277
echo '</table>
+ − 1278
</div>
+ − 1279
<input type="hidden" name="group_edit_id" value="'.$_POST['group_edit_id'].'" />';
+ − 1280
echo '</form>';
+ − 1281
echo '<form action="'.makeUrl($paths->nslist['Special'].'Administration', 'module='.$paths->cpage['module']).'" method="post" onsubmit="if(!submitAuthorized) return false;" enctype="multipart/form-data">';
+ − 1282
echo '<div class="tblholder">
+ − 1283
<table border="0" style="width:100%;" cellspacing="1" cellpadding="4">
+ − 1284
<tr>
+ − 1285
<th>Add a new member</th>
+ − 1286
</tr>
+ − 1287
<tr>
+ − 1288
<td class="row1">
+ − 1289
Username: ' . $template->username_field('edit_add_username') . '
+ − 1290
</td>
+ − 1291
</tr>
+ − 1292
<tr>
+ − 1293
<td class="row2">
+ − 1294
<label><input type="checkbox" name="add_mod" /> Is a group moderator</label> (can add and delete other members)
+ − 1295
</td>
+ − 1296
</tr>
+ − 1297
<tr>
+ − 1298
<th class="subhead">
+ − 1299
<input type="submit" name="edit_do[add_member]" value="Add user to group" />
+ − 1300
</th>
+ − 1301
</tr>
+ − 1302
</table>
+ − 1303
</div>
+ − 1304
<input type="hidden" name="group_edit_id" value="'.$_POST['group_edit_id'].'" />';
+ − 1305
echo '</form>';
+ − 1306
return;
+ − 1307
}
+ − 1308
echo '<h3>Manage Usergroups</h3>';
+ − 1309
echo '<form action="'.makeUrl($paths->nslist['Special'].'Administration', 'module='.$paths->cpage['module']).'" method="post" onsubmit="if(!submitAuthorized) return false;" enctype="multipart/form-data">';
+ − 1310
$q = $db->sql_query('SELECT group_id,group_name FROM '.table_prefix.'groups ORDER BY group_name ASC;');
+ − 1311
if(!$q)
+ − 1312
{
+ − 1313
echo $db->get_error();
+ − 1314
}
+ − 1315
else
+ − 1316
{
+ − 1317
echo '<div class="tblholder">
+ − 1318
<table border="0" cellspacing="1" cellpadding="4" style="width: 100%;">
+ − 1319
<tr>
+ − 1320
<th>Edit an existing group</th>
+ − 1321
</tr>';
+ − 1322
echo '<tr><td class="row2"><select name="group_edit_id">';
+ − 1323
while ( $row = $db->fetchrow() )
+ − 1324
{
+ − 1325
if ( $row['group_name'] != 'Everyone' )
+ − 1326
{
+ − 1327
echo '<option value="' . $row['group_id'] . '">' . htmlspecialchars( $row['group_name'] ) . '</option>';
+ − 1328
}
+ − 1329
}
+ − 1330
$db->free_result();
+ − 1331
echo '</select></td></tr>';
+ − 1332
echo '<tr><td class="row1" style="text-align: center;"><input type="submit" name="do_edit" value="Edit group" /></td></tr>
+ − 1333
</table>
+ − 1334
</div>
+ − 1335
</form><br />';
+ − 1336
}
+ − 1337
echo '<form action="'.makeUrl($paths->nslist['Special'].'Administration', 'module='.$paths->cpage['module']).'" method="post" onsubmit="if(!submitAuthorized) return false;" enctype="multipart/form-data">';
+ − 1338
echo '<div class="tblholder">
+ − 1339
<table border="0" cellspacing="1" cellpadding="4" style="width: 100%;">
+ − 1340
<tr>
+ − 1341
<th colspan="2">Create a new group</th>
+ − 1342
</tr>';
+ − 1343
echo '<tr><td class="row2">Group name:</td><td class="row2"><input type="text" name="create_group_name" /></td></tr>';
+ − 1344
echo '<tr><td colspan="2" class="row1" style="text-align: center;"><input type="submit" name="do_create_stage1" value="Continue >" /></td></tr>
+ − 1345
</table>
+ − 1346
</div>';
+ − 1347
echo '</form>';
+ − 1348
}
+ − 1349
30
+ − 1350
function page_Admin_COPPA()
+ − 1351
{
+ − 1352
global $db, $session, $paths, $template, $plugins; // Common objects
+ − 1353
if ( $session->auth_level < USER_LEVEL_ADMIN || $session->user_level < USER_LEVEL_ADMIN )
+ − 1354
{
+ − 1355
echo '<h3>Error: Not authenticated</h3><p>It looks like your administration session is invalid or you are not authorized to access this administration page. Please <a href="' . makeUrlNS('Special', 'Login/' . $paths->nslist['Special'] . 'Administration', 'level=' . USER_LEVEL_ADMIN, true) . '">re-authenticate</a> to continue.</p>';
+ − 1356
return;
+ − 1357
}
+ − 1358
+ − 1359
echo '<h2>Background information</h2>';
+ − 1360
echo '<p>
+ − 1361
The United States Childrens\' Online Privacy Protection Act (COPPA) was a law passed in 2001 that requires sites oriented towards
+ − 1362
children under 13 years old or with a significant amount of under-13 children clearly state what information is being collected
+ − 1363
in a privacy policy and obtain authorization from a parent or legal guardian before allowing children to use the site. Enano
+ − 1364
provides an easy way to allow you, as the website administrator, to obtain this authorization.
+ − 1365
</p>';
+ − 1366
+ − 1367
// Start form
+ − 1368
+ − 1369
if ( isset($_POST['coppa_address']) )
+ − 1370
{
+ − 1371
// Saving changes
+ − 1372
$enable_coppa = ( isset($_POST['enable_coppa']) ) ? '1' : '0';
+ − 1373
setConfig('enable_coppa', $enable_coppa);
+ − 1374
+ − 1375
$address = $_POST['coppa_address']; // RenderMan::preprocess_text($_POST['coppa_address'], true, false);
+ − 1376
setConfig('coppa_address', $address);
+ − 1377
+ − 1378
echo '<div class="info-box">Your changes have been saved.</div>';
+ − 1379
}
+ − 1380
+ − 1381
echo '<form action="'.makeUrl($paths->nslist['Special'].'Administration', (( isset($_GET['sqldbg'])) ? 'sqldbg&' : '') .'module='.$paths->cpage['module']).'" method="post">';
+ − 1382
+ − 1383
echo '<div class="tblholder">';
+ − 1384
echo '<table border="0" cellspacing="1" cellpadding="4">';
+ − 1385
echo '<tr>
+ − 1386
<th colspan="2">
+ − 1387
COPPA support
+ − 1388
</th>
+ − 1389
</tr>';
+ − 1390
+ − 1391
echo '<tr>
+ − 1392
<td class="row1">
+ − 1393
Enable COPPA support:
+ − 1394
</td>
+ − 1395
<td class="row2">
+ − 1396
<label><input type="checkbox" name="enable_coppa" ' . ( ( getConfig('enable_coppa') == '1' ) ? 'checked="checked"' : '' ) . ' /> COPPA enabled</label><br />
+ − 1397
<small>If this is checked, users will be asked if they are under 13 years of age before registering</small>
+ − 1398
</td>
+ − 1399
</tr>';
+ − 1400
+ − 1401
echo '<tr>
+ − 1402
<td class="row1">
+ − 1403
Your mailing address:<br />
+ − 1404
<small>This is the address to which parents will send authorization forms.</small>
+ − 1405
</td>
+ − 1406
<td class="row2">
+ − 1407
<textarea name="coppa_address" rows="7" cols="40">' . getConfig('coppa_address') . '</textarea>
+ − 1408
</td>
+ − 1409
</tr>';
+ − 1410
+ − 1411
echo '<tr>
+ − 1412
<th colspan="2" class="subhead">
+ − 1413
<input type="submit" value="Save changes" />
+ − 1414
</th>
+ − 1415
</tr>';
+ − 1416
+ − 1417
echo '</table>';
+ − 1418
+ − 1419
echo '</form>';
+ − 1420
+ − 1421
}
+ − 1422
0
+ − 1423
function page_Admin_PageManager()
+ − 1424
{
+ − 1425
global $db, $session, $paths, $template, $plugins; // Common objects
+ − 1426
if ( $session->auth_level < USER_LEVEL_ADMIN || $session->user_level < USER_LEVEL_ADMIN )
+ − 1427
{
+ − 1428
echo '<h3>Error: Not authenticated</h3><p>It looks like your administration session is invalid or you are not authorized to access this administration page. Please <a href="' . makeUrlNS('Special', 'Login/' . $paths->nslist['Special'] . 'Administration', 'level=' . USER_LEVEL_ADMIN, true) . '">re-authenticate</a> to continue.</p>';
+ − 1429
return;
+ − 1430
}
+ − 1431
+ − 1432
+ − 1433
echo '<h2>Page management</h2>';
+ − 1434
+ − 1435
if(isset($_POST['search']) || isset($_POST['select']) || ( isset($_GET['source']) && $_GET['source'] == 'ajax' )) {
+ − 1436
// The object of the game: using only the text a user entered, guess the page ID and namespace. *sigh* I HATE writing search algorithms...
+ − 1437
$source = ( isset($_GET['source']) ) ? $_GET['source'] : false;
+ − 1438
if ( $source == 'ajax' )
+ − 1439
{
+ − 1440
$_POST['search'] = true;
+ − 1441
$_POST['page_url'] = $_GET['page_id'];
+ − 1442
}
+ − 1443
if(isset($_POST['search'])) $pid = $_POST['page_url'];
+ − 1444
elseif(isset($_POST['select'])) $pid = $_POST['page_force_url'];
+ − 1445
else { echo 'Internal error selecting page search terms'; return false; }
+ − 1446
// Look for a namespace prefix in the urlname, and assign a different namespace, if necessary
+ − 1447
$k = array_keys($paths->nslist);
+ − 1448
for($i=0;$i<sizeof($paths->nslist);$i++)
+ − 1449
{
+ − 1450
$ln = strlen($paths->nslist[$k[$i]]);
+ − 1451
if(substr($pid, 0, $ln) == $paths->nslist[$k[$i]])
+ − 1452
{
+ − 1453
$ns = $k[$i];
+ − 1454
$page_id = substr($pid, $ln, strlen($pid));
+ − 1455
}
+ − 1456
}
+ − 1457
// The namespace is in $ns and the page name or ID (we don't know which yet) is in $page_id
+ − 1458
// Now, iterate through $paths->pages searching for a page with this name or ID
+ − 1459
for($i=0;$i<sizeof($paths->pages)/2;$i++)
+ − 1460
{
+ − 1461
if(!isset($final_pid))
+ − 1462
{
+ − 1463
if ($paths->pages[$i]['urlname_nons'] == str_replace(' ', '_', $page_id)) $final_pid = str_replace(' ', '_', $page_id);
+ − 1464
elseif($paths->pages[$i]['name'] == $page_id) $final_pid = $paths->pages[$i]['urlname_nons'];
+ − 1465
elseif(strtolower($paths->pages[$i]['urlname_nons']) == strtolower(str_replace(' ', '_', $page_id))) $final_pid = $paths->pages[$i]['urlname_nons'];
+ − 1466
elseif(strtolower($paths->pages[$i]['name']) == strtolower(str_replace('_', ' ', $page_id))) $final_pid = $paths->pages[$i]['urlname_nons'];
+ − 1467
if(isset($final_pid)) { $_POST['name'] = $paths->pages[$i]['name']; $_POST['urlname'] = $paths->pages[$i]['urlname_nons']; }
+ − 1468
}
+ − 1469
}
+ − 1470
if(!isset($final_pid)) { echo 'The page you searched for cannot be found. <a href="#" onclick="ajaxPage(\''.$paths->nslist['Admin'].'PageManager\'); return false;">Back</a>'; return false; }
+ − 1471
$_POST['namespace'] = $ns;
+ − 1472
$_POST['old_namespace'] = $ns;
+ − 1473
$_POST['page_id'] = $final_pid;
+ − 1474
$_POST['old_page_id'] = $final_pid;
+ − 1475
if(!isset($paths->pages[$paths->nslist[$_POST['namespace']].$_POST['urlname']])) { echo 'The page you searched for cannot be found. <a href="#" onclick="ajaxPage(\''.$paths->nslist['Admin'].'PageManager\'); return false;">Back</a>'; return false; }
+ − 1476
}
+ − 1477
+ − 1478
if(isset($_POST['page_id']) && isset($_POST['namespace']) && !isset($_POST['cancel']))
+ − 1479
{
40
+ − 1480
$cpage = $paths->pages[$paths->nslist[$_POST['old_namespace']].$_POST['old_page_id']];
0
+ − 1481
if(isset($_POST['submit']))
+ − 1482
{
22
+ − 1483
switch(true)
0
+ − 1484
{
22
+ − 1485
case true:
+ − 1486
// Create a list of things to update
+ − 1487
$page_info = Array(
+ − 1488
'name'=>$_POST['name'],
+ − 1489
'urlname'=>sanitize_page_id($_POST['page_id']),
+ − 1490
'namespace'=>$_POST['namespace'],
+ − 1491
'special'=>isset($_POST['special']) ? '1' : '0',
+ − 1492
'visible'=>isset($_POST['visible']) ? '1' : '0',
+ − 1493
'comments_on'=>isset($_POST['comments_on']) ? '1' : '0',
+ − 1494
'protected'=>isset($_POST['protected']) ? '1' : '0'
+ − 1495
);
+ − 1496
40
+ − 1497
$updating_urlname_or_namespace = ( $page_info['namespace'] != $cpage['namespace'] || $page_info['urlname'] != $cpage['urlname_nons'] );
22
+ − 1498
+ − 1499
if ( !isset($paths->nslist[ $page_info['namespace'] ]) )
+ − 1500
{
+ − 1501
echo '<div class="error-box">The namespace you selected is not properly registered.</div>';
+ − 1502
break;
+ − 1503
}
+ − 1504
if ( isset($paths->pages[ $paths->nslist[$page_info['namespace']] . $page_info[ 'urlname' ] ]) && $updating_urlname_or_namespace )
+ − 1505
{
+ − 1506
echo '<div class="error-box">There is already a page that exists with that URL string and namespace.</div>';
+ − 1507
break;
+ − 1508
}
+ − 1509
// Build the query
+ − 1510
$q = 'UPDATE '.table_prefix.'pages SET ';
+ − 1511
$k = array_keys($page_info);
+ − 1512
foreach($k as $c)
+ − 1513
{
+ − 1514
$q .= $c.'=\''.$db->escape($page_info[$c]).'\',';
+ − 1515
}
+ − 1516
$q = substr($q, 0, strlen($q)-1);
+ − 1517
// Build the WHERE statements
+ − 1518
$q .= ' WHERE ';
+ − 1519
$k = array_keys($cpage);
40
+ − 1520
if ( !isset($cpage) )
+ − 1521
die('no cpage');
22
+ − 1522
foreach($k as $c)
+ − 1523
{
+ − 1524
if($c != 'urlname_nons' && $c != 'urlname' && $c != 'really_protected')
+ − 1525
{
+ − 1526
$q .= $c.'=\''.$db->escape($cpage[$c]).'\' AND ';
+ − 1527
}
+ − 1528
else if($c == 'urlname')
+ − 1529
{
+ − 1530
$q .= $c.'=\''.$db->escape($cpage['urlname_nons']).'\' AND ';
+ − 1531
}
+ − 1532
}
+ − 1533
// Trim off the last " AND " and append a semicolon
+ − 1534
$q = substr($q, 0, strlen($q)-5) . ';';
+ − 1535
// Send the completed query to MySQL
+ − 1536
$e = $db->sql_query($q);
+ − 1537
if(!$e) $db->_die('The page data could not be updated.');
+ − 1538
// Update any additional tables
+ − 1539
$q = Array(
+ − 1540
'UPDATE '.table_prefix.'categories SET page_id=\''.$page_info['urlname'].'\',namespace=\''.$page_info['namespace'].'\' WHERE page_id=\'' . $db->escape($_POST['old_page_id']) . '\' AND namespace=\'' . $db->escape($_POST['old_namespace']) . '\';',
+ − 1541
'UPDATE '.table_prefix.'comments SET page_id=\''.$page_info['urlname'].'\',namespace=\''.$page_info['namespace'].'\' WHERE page_id=\'' . $db->escape($_POST['old_page_id']) . '\' AND namespace=\'' . $db->escape($_POST['old_namespace']) . '\';',
+ − 1542
'UPDATE '.table_prefix.'logs SET page_id=\''.$page_info['urlname'].'\',namespace=\''.$page_info['namespace'].'\' WHERE page_id=\'' . $db->escape($_POST['old_page_id']) . '\' AND namespace=\'' . $db->escape($_POST['old_namespace']) . '\';',
+ − 1543
'UPDATE '.table_prefix.'page_text SET page_id=\''.$page_info['urlname'].'\',namespace=\''.$page_info['namespace'].'\' WHERE page_id=\'' . $db->escape($_POST['old_page_id']) . '\' AND namespace=\'' . $db->escape($_POST['old_namespace']) . '\';',
72
bda11e521e8a
Fixed a few presentation bugs in installer, made installer more "legally binding", and fixed global permissions inheritance in $session->fetch_page_acl()
Dan
diff
changeset
+ − 1544
'UPDATE '.table_prefix.'acl SET page_id=\''.$page_info['urlname'].'\',namespace=\''.$page_info['namespace'].'\' WHERE page_id=\'' . $db->escape($_POST['old_page_id']) . '\' AND namespace=\'' . $db->escape($_POST['old_namespace']) . '\';'
22
+ − 1545
);
+ − 1546
foreach($q as $cq)
+ − 1547
{
+ − 1548
$e = $db->sql_query($cq);
+ − 1549
if(!$e) $db->_die('Some of the additional tables containing page information could not be updated.');
+ − 1550
}
+ − 1551
// Update $cpage
+ − 1552
$cpage = $page_info;
+ − 1553
$cpage['urlname_nons'] = $cpage['urlname'];
+ − 1554
$cpage['urlname'] = $paths->nslist[$cpage['namespace']].$cpage['urlname'];
+ − 1555
$_POST['old_page_id'] = $page_info['urlname'];
+ − 1556
$_POST['old_namespace'] = $page_info['namespace'];
+ − 1557
echo '<div class="info-box">Your changes have been saved.</div>';
+ − 1558
break;
0
+ − 1559
}
+ − 1560
} elseif(isset($_POST['delete'])) {
+ − 1561
$q = Array(
+ − 1562
'DELETE FROM '.table_prefix.'categories WHERE page_id=\'' . $db->escape($_POST['old_page_id']) . '\' AND namespace=\'' . $db->escape($_POST['old_namespace']) . '\';',
+ − 1563
'DELETE FROM '.table_prefix.'comments WHERE page_id=\'' . $db->escape($_POST['old_page_id']) . '\' AND namespace=\'' . $db->escape($_POST['old_namespace']) . '\';',
+ − 1564
'DELETE FROM '.table_prefix.'logs WHERE page_id=\'' . $db->escape($_POST['old_page_id']) . '\' AND namespace=\'' . $db->escape($_POST['old_namespace']) . '\';',
+ − 1565
'DELETE FROM '.table_prefix.'page_text WHERE page_id=\'' . $db->escape($_POST['old_page_id']) . '\' AND namespace=\'' . $db->escape($_POST['old_namespace']) . '\';',
+ − 1566
);
+ − 1567
foreach($q as $cq)
+ − 1568
{
+ − 1569
$e = $db->sql_query($cq);
+ − 1570
if(!$e) $db->_die('Some of the additional tables containing page information could not be updated.');
+ − 1571
}
+ − 1572
+ − 1573
if(!$db->sql_query(
+ − 1574
'DELETE FROM '.table_prefix.'pages WHERE urlname="'.$db->escape($_POST['old_page_id']).'" AND namespace="'.$db->escape($_POST['old_namespace']).'";'
+ − 1575
)) $db->_die('The page could not be deleted.');
+ − 1576
echo '<div class="info-box">This page has been deleted.</p><p><a href="javascript:ajaxPage(\''.$paths->nslist['Admin'].'PageManager\');">Return to Page manager</a><br /><a href="javascript:ajaxPage(\''.$paths->nslist['Admin'].'Home\');">Admin home</a></div>';
+ − 1577
return;
+ − 1578
}
+ − 1579
echo '<form action="'.makeUrl($paths->nslist['Special'].'Administration'.htmlspecialchars(urlSeparator).(( isset($_GET['sqldbg']) ) ? 'sqldbg&' : '') .'module='.$paths->cpage['module']).'" method="post">';
+ − 1580
?>
+ − 1581
<h3>Modify page: <?php echo $_POST['name']; ?></h3>
+ − 1582
<table border="0">
+ − 1583
<tr><td>Namespace:</td><td><select name="namespace"><?php $nm = array_keys($paths->nslist); foreach($nm as $ns) { if($ns != 'Special' && $ns != 'Admin') { echo '<option '; if($_POST['namespace']==$ns) echo 'selected="selected" '; echo 'value="'.$ns.'">'; if($paths->nslist[$ns] == '') echo '[No prefix]'; else echo $paths->nslist[$ns]; echo '</option>'; } } ?></select></td></tr>
+ − 1584
<tr><td>Page title:</td><td><input type="text" name="name" value="<?php echo $cpage['name']; ?>" /></td></tr>
22
+ − 1585
<tr><td>Page URL string:<br /><small>No spaces, and don't enter the namespace prefix (e.g. User:).<br />Changing this value is usually not a good idea, especially for templates and project pages.</small></td><td><input type="text" name="page_id" value="<?php echo htmlspecialchars(dirtify_page_id($cpage['urlname_nons'])); ?>" /></td></tr>
0
+ − 1586
<tr><td></td><td><input <?php if($cpage['comments_on']) echo 'checked="checked"'; ?> name="comments_on" type="checkbox" id="cmt" /> <label for="cmt">Enable comments for this page</label></td></tr>
+ − 1587
<tr><td></td><td><input <?php if($cpage['special']) echo 'checked="checked"'; ?> name="special" type="checkbox" id="spc" /> <label for="spc">Bypass the template engine for this page</label><br /><small>This option enables you to use your own HTML headers and other code. It is recommended that only advanced users enable this feature. As with other Enano pages, you may use PHP code in your pages, meaning you can use Enano's API on the page.</small></td></tr>
+ − 1588
<tr><td></td><td><input <?php if($cpage['visible']) echo 'checked="checked"'; ?> name="visible" type="checkbox" id="vis" /> <label for="vis">Allow this page to be shown in page lists</label><br /><small>Unchecking this checkbox prevents the page for being indexed for searching. The index is rebuilt each time a page is saved, and you can force an index rebuild by going to the page <?php echo $paths->nslist['Special']; ?>SearchRebuild.</small></td></tr>
+ − 1589
<tr><td></td><td><input <?php if($cpage['protected']) echo 'checked="checked"'; ?> name="protected" type="checkbox" id="prt" /> <label for="prt">Prevent non-administrators from editing this page</label><br /><small>This option only has an effect when Wiki Mode is enabled.</small></td></tr>
+ − 1590
<tr><td></td><td><input type="submit" name="delete" value="Delete page" style="color: red" onclick="return confirm('Do you REALLY want to delete this page?')" /></td></tr>
+ − 1591
<tr><td colspan="2" style="text-align: center;"><hr /></td></tr>
+ − 1592
<tr><td colspan="2" style="text-align: right;">
+ − 1593
<input type="hidden" name="old_page_id" value="<?php echo $_POST['old_page_id']; ?>" />
+ − 1594
<input type="hidden" name="old_namespace" value="<?php echo $_POST['old_namespace']; ?>" />
+ − 1595
<input type="Submit" name="submit" value="Save changes" style="font-weight: bold;" /> <input type="submit" name="cancel" value="Cancel changes" /></td></tr>
+ − 1596
</table>
+ − 1597
<?php
+ − 1598
echo '</form>';
+ − 1599
} else {
+ − 1600
echo '<h3>Please select a page</h3>';
+ − 1601
echo '<form action="'.makeUrl($paths->nslist['Special'].'Administration', 'module='.$paths->cpage['module']).'" method="post" onsubmit="if(!submitAuthorized) return false;" enctype="multipart/form-data">';
+ − 1602
?>
+ − 1603
<p>Search for page title (remember prefixes like User: and File:) <?php echo $template->pagename_field('page_url'); ?> <input type="submit" style="font-weight: bold;" name="search" value="Search" /></p>
+ − 1604
<p>Select page title from a list: <select name="page_force_url">
+ − 1605
<?php
+ − 1606
for($i=0;$i<sizeof($paths->pages)/2;$i++)
+ − 1607
{
+ − 1608
if($paths->pages[$i]['namespace'] != 'Admin' && $paths->pages[$i]['namespace'] != 'Special') echo '<option value="'.$paths->nslist[$paths->pages[$i]['namespace']].$paths->pages[$i]['urlname_nons'].'">'.$paths->nslist[$paths->pages[$i]['namespace']].$paths->pages[$i]['name'].'</option>'."\n";
+ − 1609
}
+ − 1610
?>
+ − 1611
</select> <input type="submit" name="select" value="Select" /></p>
+ − 1612
<?php
+ − 1613
echo '</form>';
+ − 1614
+ − 1615
}
+ − 1616
}
+ − 1617
+ − 1618
function page_Admin_PageEditor()
+ − 1619
{
+ − 1620
global $db, $session, $paths, $template, $plugins; // Common objects
+ − 1621
if ( $session->auth_level < USER_LEVEL_ADMIN || $session->user_level < USER_LEVEL_ADMIN )
+ − 1622
{
+ − 1623
echo '<h3>Error: Not authenticated</h3><p>It looks like your administration session is invalid or you are not authorized to access this administration page. Please <a href="' . makeUrlNS('Special', 'Login/' . $paths->nslist['Special'] . 'Administration', 'level=' . USER_LEVEL_ADMIN, true) . '">re-authenticate</a> to continue.</p>';
+ − 1624
return;
+ − 1625
}
+ − 1626
+ − 1627
+ − 1628
echo '<h2>Edit page content</h2>';
+ − 1629
+ − 1630
if(isset($_POST['search']) || isset($_POST['select'])) {
+ − 1631
// The object of the game: using only the text a user entered, guess the page ID and namespace. *sigh* I HATE writing search algorithms...
+ − 1632
if(isset($_POST['search'])) $pid = $_POST['page_url'];
+ − 1633
elseif(isset($_POST['select'])) $pid = $_POST['page_force_url'];
+ − 1634
else { echo 'Internal error selecting page search terms'; return false; }
+ − 1635
// Look for a namespace prefix in the urlname, and assign a different namespace, if necessary
+ − 1636
$k = array_keys($paths->nslist);
+ − 1637
for($i=0;$i<sizeof($paths->nslist);$i++)
+ − 1638
{
+ − 1639
$ln = strlen($paths->nslist[$k[$i]]);
+ − 1640
if(substr($pid, 0, $ln) == $paths->nslist[$k[$i]])
+ − 1641
{
+ − 1642
$ns = $k[$i];
+ − 1643
$page_id = substr($pid, $ln, strlen($pid));
+ − 1644
}
+ − 1645
}
+ − 1646
// The namespace is in $ns and the page name or ID (we don't know which yet) is in $page_id
+ − 1647
// Now, iterate through $paths->pages searching for a page with this name or ID
+ − 1648
for($i=0;$i<sizeof($paths->pages)/2;$i++)
+ − 1649
{
+ − 1650
if(!isset($final_pid))
+ − 1651
{
+ − 1652
if ($paths->pages[$i]['urlname_nons'] == str_replace(' ', '_', $page_id)) $final_pid = str_replace(' ', '_', $page_id);
+ − 1653
elseif($paths->pages[$i]['name'] == $page_id) $final_pid = $paths->pages[$i]['urlname_nons'];
+ − 1654
elseif(strtolower($paths->pages[$i]['urlname_nons']) == strtolower(str_replace(' ', '_', $page_id))) $final_pid = $paths->pages[$i]['urlname_nons'];
+ − 1655
elseif(strtolower($paths->pages[$i]['name']) == strtolower(str_replace('_', ' ', $page_id))) $final_pid = $paths->pages[$i]['urlname_nons'];
+ − 1656
if(isset($final_pid)) { $_POST['name'] = $paths->pages[$i]['name']; $_POST['urlname'] = $paths->pages[$i]['urlname_nons']; }
+ − 1657
}
+ − 1658
}
+ − 1659
if(!isset($final_pid)) { echo 'The page you searched for cannot be found. <a href="#" onclick="ajaxPage(\''.$paths->nslist['Admin'].'PageManager\'); return false;">Back</a>'; return false; }
+ − 1660
$_POST['namespace'] = $ns;
+ − 1661
$_POST['page_id'] = $final_pid;
+ − 1662
if(!isset($paths->pages[$paths->nslist[$_POST['namespace']].$_POST['urlname']])) { echo 'The page you searched for cannot be found. <a href="#" onclick="ajaxPage(\''.$paths->nslist['Admin'].'PageManager\'); return false;">Back</a>'; return false; }
+ − 1663
}
+ − 1664
+ − 1665
if(isset($_POST['page_id']) && !isset($_POST['cancel']))
+ − 1666
{
+ − 1667
echo '<form name="main" action="'.makeUrl($paths->nslist['Special'].'Administration', 'module='.$paths->cpage['module']).'" method="post">';
+ − 1668
if(!isset($_POST['content']) || isset($_POST['revert'])) $content = RenderMan::getPage($_POST['page_id'], $_POST['namespace'], 0, false, false, false, false);
+ − 1669
else $content = $_POST['content'];
+ − 1670
if(isset($_POST['save']))
+ − 1671
{
+ − 1672
$data = $content;
+ − 1673
$id = md5( microtime() . mt_rand() );
+ − 1674
+ − 1675
$minor = isset($_POST['minor']) ? 'true' : 'false';
+ − 1676
$q='INSERT INTO '.table_prefix.'logs(log_type,action,time_id,date_string,page_id,namespace,page_text,char_tag,author,edit_summary,minor_edit) VALUES(\'page\', \'edit\', '.time().', \''.date('d M Y h:i a').'\', \'' . $db->escape($_POST['page_id']) . '\', \'' . $db->escape($_POST['namespace']) . '\', \''.$data.'\', \''.$id.'\', \''.$session->username.'\', \''.$db->escape(htmlspecialchars($_POST['summary'])).'\', '.$minor.');';
+ − 1677
if(!$db->sql_query($q)) $db->_die('The history (log) entry could not be inserted into the logs table.');
+ − 1678
+ − 1679
$query = 'UPDATE '.table_prefix.'page_text SET page_text=\''.$db->escape($data).'\',char_tag=\''.$id.'\' WHERE page_id=\'' . $db->escape($_POST['page_id']) . '\' AND namespace=\'' . $db->escape($_POST['namespace']) . '\';';
+ − 1680
$e = $db->sql_query($query);
+ − 1681
if(!$e) echo '<div class="warning-box">The page data could not be saved. MySQL said: '.mysql_error().'<br /><br />Query:<br /><pre>'.$query.'</pre></div>';
+ − 1682
else echo '<div class="info-box">Your page has been saved. <a href="'.makeUrlNS($_POST['namespace'], $_POST['page_id']).'">View page...</a></div>';
+ − 1683
} elseif(isset($_POST['preview'])) {
+ − 1684
echo '<h3>Preview</h3><p><b>Reminder:</b> This is only a preview; your changes to this page have not yet been saved.</p><div style="margin: 1em; padding: 10px; border: 1px dashed #606060; background-color: #F8F8F8; max-height: 200px; overflow: auto;">'.RenderMan::render($content).'</div>';
+ − 1685
}
+ − 1686
?>
+ − 1687
<p>
+ − 1688
<textarea name="content" rows="20" cols="60" style="width: 100%;"><?php echo htmlspecialchars($content); ?></textarea><br />
+ − 1689
Edit summary: <input name="summary" value="<?php if(isset($_POST['summary'])) echo $_POST['summary']; ?>" size="40" /><br />
+ − 1690
<label><input type="checkbox" name="minor" <?php if(isset($_POST['minor'])) echo 'checked="checked" '; ?>/> This is a minor edit</label>
+ − 1691
</p>
+ − 1692
<p>
+ − 1693
<input type="hidden" name="page_id" value="<?php echo $_POST['page_id']; ?>" />
+ − 1694
<input type="hidden" name="namespace" value="<?php echo $_POST['namespace']; ?>" />
+ − 1695
<input type="submit" name="save" value="Save changes" style="font-weight: bold;" /> <input type="submit" name="preview" value="Show preview" /> <input type="submit" name="revert" value="Revert changes" onclick="return confirm('Do you really want to revert your changes?');" /> <input type="submit" name="cancel" value="Cancel" onclick="return confirm('Do you really want to cancel your changes?');" />
+ − 1696
</p>
+ − 1697
<?php
+ − 1698
echo '</form>';
+ − 1699
} else {
+ − 1700
echo '<h3>Please select a page</h3>';
+ − 1701
echo '<form action="'.makeUrl($paths->nslist['Special'].'Administration', 'module='.$paths->cpage['module']).'" method="post" onsubmit="if(!submitAuthorized) return false;" enctype="multipart/form-data">';
+ − 1702
?>
+ − 1703
<p>Search for page title (remember prefixes like User: and File:) <?php echo $template->pagename_field('page_url'); ?> <input type="submit" style="font-weight: bold;" name="search" value="Search" /></p>
+ − 1704
<p>Select page title from a list: <select name="page_force_url">
+ − 1705
<?php
73
0a74676a2f2f
Made the move to Loch Ness, and got some basic page grouping functionality working. TODO: fix some UI issues in Javascript ACL editor and change non-JS ACL editor to work with page groups too
Dan
diff
changeset
+ − 1706
for ( $i = 0; $i < sizeof($paths->pages) / 2; $i++ )
0
+ − 1707
{
+ − 1708
if($paths->pages[$i]['namespace'] != 'Admin' && $paths->pages[$i]['namespace'] != 'Special') echo '<option value="'.$paths->nslist[$paths->pages[$i]['namespace']].$paths->pages[$i]['urlname_nons'].'">'.$paths->nslist[$paths->pages[$i]['namespace']].$paths->pages[$i]['name'].'</option>'."\n";
+ − 1709
}
+ − 1710
?>
+ − 1711
</select> <input type="submit" name="select" value="Select" /></p>
+ − 1712
<?php
+ − 1713
echo '</form>';
+ − 1714
}
+ − 1715
}
+ − 1716
+ − 1717
function page_Admin_ThemeManager()
+ − 1718
{
+ − 1719
+ − 1720
global $db, $session, $paths, $template, $plugins; // Common objects
+ − 1721
if ( $session->auth_level < USER_LEVEL_ADMIN || $session->user_level < USER_LEVEL_ADMIN )
+ − 1722
{
+ − 1723
echo '<h3>Error: Not authenticated</h3><p>It looks like your administration session is invalid or you are not authorized to access this administration page. Please <a href="' . makeUrlNS('Special', 'Login/' . $paths->nslist['Special'] . 'Administration', 'level=' . USER_LEVEL_ADMIN, true) . '">re-authenticate</a> to continue.</p>';
+ − 1724
return;
+ − 1725
}
+ − 1726
+ − 1727
+ − 1728
// Get the list of styles in the themes/ dir
+ − 1729
$h = opendir('./themes');
+ − 1730
$l = Array();
+ − 1731
if(!$h) die('Error opening directory "./themes" for reading.');
+ − 1732
while(false !== ($n = readdir($h))) {
+ − 1733
if($n != '.' && $n != '..' && is_dir('./themes/'.$n))
+ − 1734
$l[] = $n;
+ − 1735
}
+ − 1736
closedir($h);
+ − 1737
echo('
+ − 1738
<h3>Theme Management</h3>
+ − 1739
<p>Install, uninstall, and manage Enano themes.</p>
+ − 1740
');
+ − 1741
if(isset($_POST['disenable'])) {
+ − 1742
$q = 'SELECT enabled FROM '.table_prefix.'themes WHERE theme_id=\'' . $db->escape($_POST['theme_id']) . '\'';
+ − 1743
$s = $db->sql_query($q);
+ − 1744
if(!$s) die('Error selecting enabled/disabled state value: '.mysql_error().'<br /><u>SQL:</u><br />'.$q);
+ − 1745
$r = $db->fetchrow_num($s);
+ − 1746
$db->free_result();
+ − 1747
if($r[0] == 1) $e = 0;
+ − 1748
else $e = 1;
+ − 1749
$s=true;
+ − 1750
if($e==0)
+ − 1751
{
+ − 1752
$c = $db->sql_query('SELECT * FROM '.table_prefix.'themes WHERE enabled=1');
+ − 1753
if(!$c) $db->_die('The backup check for having at least on theme enabled failed.');
+ − 1754
if($db->numrows() <= 1) { echo '<div class="warning-box">You cannot disable the last remaining theme.</div>'; $s=false; }
+ − 1755
}
+ − 1756
$db->free_result();
+ − 1757
if($s) {
+ − 1758
$q = 'UPDATE '.table_prefix.'themes SET enabled='.$e.' WHERE theme_id=\'' . $db->escape($_POST['theme_id']) . '\'';
+ − 1759
$a = $db->sql_query($q);
+ − 1760
if(!$a) die('Error updating enabled/disabled state value: '.mysql_error().'<br /><u>SQL:</u><br />'.$q);
+ − 1761
else echo('<div class="info-box">The theme "'.$_POST['theme_id'].'" has been '. ( ( $e == '1' ) ? 'enabled' : 'disabled' ).'.</div>');
+ − 1762
}
+ − 1763
}
+ − 1764
elseif(isset($_POST['edit'])) {
+ − 1765
+ − 1766
$dir = './themes/'.$_POST['theme_id'].'/css/';
+ − 1767
$list = Array();
+ − 1768
// Open a known directory, and proceed to read its contents
+ − 1769
if (is_dir($dir)) {
+ − 1770
if ($dh = opendir($dir)) {
+ − 1771
while (($file = readdir($dh)) !== false) {
+ − 1772
if(preg_match('#^(.*?)\.css$#is', $file) && $file != '_printable.css') {
+ − 1773
$list[$file] = capitalize_first_letter(substr($file, 0, strlen($file)-4));
+ − 1774
}
+ − 1775
}
+ − 1776
closedir($dh);
+ − 1777
}
+ − 1778
}
+ − 1779
$lk = array_keys($list);
+ − 1780
+ − 1781
$q = 'SELECT theme_name,default_style FROM '.table_prefix.'themes WHERE theme_id=\''.$db->escape($_POST['theme_id']).'\'';
+ − 1782
$s = $db->sql_query($q);
+ − 1783
if(!$s) die('Error selecting name value: '.mysql_error().'<br /><u>SQL:</u><br />'.$q);
+ − 1784
$r = $db->fetchrow_num($s);
+ − 1785
$db->free_result();
+ − 1786
echo('<form action="'.makeUrl($paths->nslist['Special'].'Administration', 'module='.$paths->cpage['module']).'" method="post">');
+ − 1787
echo('<div class="question-box">
+ − 1788
Theme name displayed to users: <input type="text" name="name" value="'.$r[0].'" /><br /><br />
+ − 1789
Default stylesheet: <select name="defaultcss">');
+ − 1790
foreach ($lk as $l)
+ − 1791
{
+ − 1792
if($r[1] == $l) $v = ' selected="selected"';
+ − 1793
else $v = '';
+ − 1794
echo "<option value='{$l}'$v>{$list[$l]}</option>";
+ − 1795
}
+ − 1796
echo('</select><br /><br />
+ − 1797
<input type="submit" name="editsave" value="OK" /><input type="hidden" name="theme_id" value="'.$_POST['theme_id'].'" />
+ − 1798
</div>');
+ − 1799
echo('</form>');
+ − 1800
}
+ − 1801
elseif(isset($_POST['editsave'])) {
+ − 1802
$q = 'UPDATE '.table_prefix.'themes SET theme_name=\'' . $db->escape($_POST['name']) . '\',default_style=\''.$db->escape($_POST['defaultcss']).'\' WHERE theme_id=\'' . $db->escape($_POST['theme_id']) . '\'';
+ − 1803
$s = $db->sql_query($q);
+ − 1804
if(!$s) die('Error updating name value: '.mysql_error().'<br /><u>SQL:</u><br />'.$q);
+ − 1805
else echo('<div class="info-box">Theme data updated.</div>');
+ − 1806
}
+ − 1807
elseif(isset($_POST['up'])) {
+ − 1808
// If there is only one theme or if the selected theme is already at the top, do nothing
+ − 1809
$q = 'SELECT theme_order FROM '.table_prefix.'themes ORDER BY theme_order;';
+ − 1810
$s = $db->sql_query($q);
+ − 1811
if(!$s) die('Error selecting order information: '.mysql_error().'<br /><u>SQL:</u><br />'.$q);
+ − 1812
$q = 'SELECT theme_order FROM '.table_prefix.'themes WHERE theme_id=\''.$db->escape($_POST['theme_id']).'\'';
+ − 1813
$sn = $db->sql_query($q);
+ − 1814
if(!$sn) die('Error selecting order information: '.mysql_error().'<br /><u>SQL:</u><br />'.$q);
+ − 1815
$r = $db->fetchrow_num($sn);
+ − 1816
if( /* check for only one theme... */ $db->numrows($s) < 2 || $r[0] == 1 /* ...and check if this theme is already at the top */ ) { echo('<div class="warning-box">This theme is already at the top of the list, or there is only one theme installed.</div>'); } else {
+ − 1817
// Get the order IDs of the selected theme and the theme before it
+ − 1818
$q = 'SELECT theme_order FROM '.table_prefix.'themes WHERE theme_id=\'' . $db->escape($_POST['theme_id']) . '\'';
+ − 1819
$s = $db->sql_query($q);
+ − 1820
if(!$s) die('Error selecting order information: '.mysql_error().'<br /><u>SQL:</u><br />'.$q);
+ − 1821
$r = $db->fetchrow_num($s);
+ − 1822
$r = $r[0];
+ − 1823
$rb = $r - 1;
+ − 1824
// Thank God for jEdit's rectangular selection and the ablity to edit multiple lines at the same time ;)
+ − 1825
$q = 'UPDATE '.table_prefix.'themes SET theme_order=0 WHERE theme_order='.$rb.''; /* Check for errors... <sigh> */ $s = $db->sql_query($q); if(!$s) die('Error updating order information: '.mysql_error().'<br /><u>SQL:</u><br />'.$q);
+ − 1826
$q = 'UPDATE '.table_prefix.'themes SET theme_order='.$rb.' WHERE theme_order='.$r.''; /* Check for errors... <sigh> */ $s = $db->sql_query($q); if(!$s) die('Error updating order information: '.mysql_error().'<br /><u>SQL:</u><br />'.$q);
+ − 1827
$q = 'UPDATE '.table_prefix.'themes SET theme_order='.$r.' WHERE theme_order=0'; /* Check for errors... <sigh> */ $s = $db->sql_query($q); if(!$s) die('Error updating order information: '.mysql_error().'<br /><u>SQL:</u><br />'.$q);
+ − 1828
echo('<div class="info-box">Theme moved up.</div>');
+ − 1829
}
+ − 1830
$db->free_result($s);
+ − 1831
$db->free_result($sn);
+ − 1832
}
+ − 1833
elseif(isset($_POST['down'])) {
+ − 1834
// If there is only one theme or if the selected theme is already at the top, do nothing
+ − 1835
$q = 'SELECT theme_order FROM '.table_prefix.'themes ORDER BY theme_order;';
+ − 1836
$s = $db->sql_query($q);
+ − 1837
if(!$s) die('Error selecting order information: '.mysql_error().'<br /><u>SQL:</u><br />'.$q);
+ − 1838
$r = $db->fetchrow_num($s);
+ − 1839
if( /* check for only one theme... */ $db->numrows($s) < 2 || $r[0] == $db->numrows($s) /* ...and check if this theme is already at the bottom */ ) { echo('<div class="warning-box">This theme is already at the bottom of the list, or there is only one theme installed.</div>'); } else {
+ − 1840
// Get the order IDs of the selected theme and the theme before it
+ − 1841
$q = 'SELECT theme_order FROM '.table_prefix.'themes WHERE theme_id=\''.$db->escape($_POST['theme_id']).'\'';
+ − 1842
$s = $db->sql_query($q);
+ − 1843
if(!$s) die('Error selecting order information: '.mysql_error().'<br /><u>SQL:</u><br />'.$q);
+ − 1844
$r = $db->fetchrow_num($s);
+ − 1845
$r = $r[0];
+ − 1846
$rb = $r + 1;
+ − 1847
// Thank God for jEdit's rectangular selection and the ablity to edit multiple lines at the same time ;)
+ − 1848
$q = 'UPDATE '.table_prefix.'themes SET theme_order=0 WHERE theme_order='.$rb.''; /* Check for errors... <sigh> */ $s = $db->sql_query($q); if(!$s) die('Error updating order information: '.mysql_error().'<br /><u>SQL:</u><br />'.$q);
+ − 1849
$q = 'UPDATE '.table_prefix.'themes SET theme_order='.$rb.' WHERE theme_order='.$r.''; /* Check for errors... <sigh> */ $s = $db->sql_query($q); if(!$s) die('Error updating order information: '.mysql_error().'<br /><u>SQL:</u><br />'.$q);
+ − 1850
$q = 'UPDATE '.table_prefix.'themes SET theme_order='.$r.' WHERE theme_order=0'; /* Check for errors... <sigh> */ $s = $db->sql_query($q); if(!$s) die('Error updating order information: '.mysql_error().'<br /><u>SQL:</u><br />'.$q);
+ − 1851
echo('<div class="info-box">Theme moved down.</div>');
+ − 1852
}
+ − 1853
}
+ − 1854
else if(isset($_POST['uninstall']))
+ − 1855
{
+ − 1856
$q = 'SELECT * FROM '.table_prefix.'themes;';
+ − 1857
$s = $db->sql_query($q);
+ − 1858
if ( !$s )
+ − 1859
{
+ − 1860
die('Error getting theme count: '.mysql_error().'<br /><u>SQL:</u><br />'.$q);
+ − 1861
}
+ − 1862
$n = $db->numrows($s);
+ − 1863
$db->free_result();
+ − 1864
+ − 1865
if ( $_POST['theme_id'] == 'oxygen' )
+ − 1866
{
+ − 1867
echo '<div class="error-box">The Oxygen theme is used by Enano for installation, upgrades, and error messages, and cannot be uninstalled.</div>';
+ − 1868
}
+ − 1869
else
+ − 1870
{
+ − 1871
if($n < 2)
+ − 1872
{
+ − 1873
echo '<div class="error-box">The theme could not be uninstalled because it is the only theme left.</div>';
+ − 1874
}
+ − 1875
else
+ − 1876
{
+ − 1877
$q = 'DELETE FROM '.table_prefix.'themes WHERE theme_id=\''.$db->escape($_POST['theme_id']).'\' LIMIT 1;';
+ − 1878
$s = $db->sql_query($q);
+ − 1879
if ( !$s )
+ − 1880
{
+ − 1881
die('Error deleting theme data: '.mysql_error().'<br /><u>SQL:</u><br />'.$q);
+ − 1882
}
+ − 1883
else
+ − 1884
{
+ − 1885
echo('<div class="info-box">Theme uninstalled.</div>');
+ − 1886
}
+ − 1887
}
+ − 1888
}
+ − 1889
}
+ − 1890
elseif(isset($_POST['install'])) {
80
cb7dde69c301
Improved and enabled HTML optimization algorithm; enabled gzip compression; added but did not test at all the tag cloud class in includes/tagcloud.php, this is still very preliminary and not ready for any type of production use
Dan
diff
changeset
+ − 1891
$q = 'SELECT theme_id FROM '.table_prefix.'themes;';
0
+ − 1892
$s = $db->sql_query($q);
+ − 1893
if(!$s) die('Error getting theme count: '.mysql_error().'<br /><u>SQL:</u><br />'.$q);
+ − 1894
$n = $db->numrows($s);
+ − 1895
$n++;
+ − 1896
$theme_id = $_POST['theme_id'];
+ − 1897
$theme = Array();
+ − 1898
include('./themes/'.$theme_id.'/theme.cfg');
80
cb7dde69c301
Improved and enabled HTML optimization algorithm; enabled gzip compression; added but did not test at all the tag cloud class in includes/tagcloud.php, this is still very preliminary and not ready for any type of production use
Dan
diff
changeset
+ − 1899
if ( !isset($theme['theme_id']) )
cb7dde69c301
Improved and enabled HTML optimization algorithm; enabled gzip compression; added but did not test at all the tag cloud class in includes/tagcloud.php, this is still very preliminary and not ready for any type of production use
Dan
diff
changeset
+ − 1900
{
cb7dde69c301
Improved and enabled HTML optimization algorithm; enabled gzip compression; added but did not test at all the tag cloud class in includes/tagcloud.php, this is still very preliminary and not ready for any type of production use
Dan
diff
changeset
+ − 1901
echo '<div class="error-box">Could not load theme.cfg (theme metadata file)</div>';
cb7dde69c301
Improved and enabled HTML optimization algorithm; enabled gzip compression; added but did not test at all the tag cloud class in includes/tagcloud.php, this is still very preliminary and not ready for any type of production use
Dan
diff
changeset
+ − 1902
}
cb7dde69c301
Improved and enabled HTML optimization algorithm; enabled gzip compression; added but did not test at all the tag cloud class in includes/tagcloud.php, this is still very preliminary and not ready for any type of production use
Dan
diff
changeset
+ − 1903
else
cb7dde69c301
Improved and enabled HTML optimization algorithm; enabled gzip compression; added but did not test at all the tag cloud class in includes/tagcloud.php, this is still very preliminary and not ready for any type of production use
Dan
diff
changeset
+ − 1904
{
cb7dde69c301
Improved and enabled HTML optimization algorithm; enabled gzip compression; added but did not test at all the tag cloud class in includes/tagcloud.php, this is still very preliminary and not ready for any type of production use
Dan
diff
changeset
+ − 1905
$default_style = false;
cb7dde69c301
Improved and enabled HTML optimization algorithm; enabled gzip compression; added but did not test at all the tag cloud class in includes/tagcloud.php, this is still very preliminary and not ready for any type of production use
Dan
diff
changeset
+ − 1906
if ( $dh = opendir('./themes/' . $theme_id . '/css') )
cb7dde69c301
Improved and enabled HTML optimization algorithm; enabled gzip compression; added but did not test at all the tag cloud class in includes/tagcloud.php, this is still very preliminary and not ready for any type of production use
Dan
diff
changeset
+ − 1907
{
cb7dde69c301
Improved and enabled HTML optimization algorithm; enabled gzip compression; added but did not test at all the tag cloud class in includes/tagcloud.php, this is still very preliminary and not ready for any type of production use
Dan
diff
changeset
+ − 1908
while ( $file = readdir($dh) )
cb7dde69c301
Improved and enabled HTML optimization algorithm; enabled gzip compression; added but did not test at all the tag cloud class in includes/tagcloud.php, this is still very preliminary and not ready for any type of production use
Dan
diff
changeset
+ − 1909
{
cb7dde69c301
Improved and enabled HTML optimization algorithm; enabled gzip compression; added but did not test at all the tag cloud class in includes/tagcloud.php, this is still very preliminary and not ready for any type of production use
Dan
diff
changeset
+ − 1910
if ( $file != '_printable.css' && preg_match('/\.css$/i', $file) )
cb7dde69c301
Improved and enabled HTML optimization algorithm; enabled gzip compression; added but did not test at all the tag cloud class in includes/tagcloud.php, this is still very preliminary and not ready for any type of production use
Dan
diff
changeset
+ − 1911
{
cb7dde69c301
Improved and enabled HTML optimization algorithm; enabled gzip compression; added but did not test at all the tag cloud class in includes/tagcloud.php, this is still very preliminary and not ready for any type of production use
Dan
diff
changeset
+ − 1912
$default_style = $file;
cb7dde69c301
Improved and enabled HTML optimization algorithm; enabled gzip compression; added but did not test at all the tag cloud class in includes/tagcloud.php, this is still very preliminary and not ready for any type of production use
Dan
diff
changeset
+ − 1913
break;
cb7dde69c301
Improved and enabled HTML optimization algorithm; enabled gzip compression; added but did not test at all the tag cloud class in includes/tagcloud.php, this is still very preliminary and not ready for any type of production use
Dan
diff
changeset
+ − 1914
}
cb7dde69c301
Improved and enabled HTML optimization algorithm; enabled gzip compression; added but did not test at all the tag cloud class in includes/tagcloud.php, this is still very preliminary and not ready for any type of production use
Dan
diff
changeset
+ − 1915
}
cb7dde69c301
Improved and enabled HTML optimization algorithm; enabled gzip compression; added but did not test at all the tag cloud class in includes/tagcloud.php, this is still very preliminary and not ready for any type of production use
Dan
diff
changeset
+ − 1916
closedir($dh);
cb7dde69c301
Improved and enabled HTML optimization algorithm; enabled gzip compression; added but did not test at all the tag cloud class in includes/tagcloud.php, this is still very preliminary and not ready for any type of production use
Dan
diff
changeset
+ − 1917
}
cb7dde69c301
Improved and enabled HTML optimization algorithm; enabled gzip compression; added but did not test at all the tag cloud class in includes/tagcloud.php, this is still very preliminary and not ready for any type of production use
Dan
diff
changeset
+ − 1918
else
cb7dde69c301
Improved and enabled HTML optimization algorithm; enabled gzip compression; added but did not test at all the tag cloud class in includes/tagcloud.php, this is still very preliminary and not ready for any type of production use
Dan
diff
changeset
+ − 1919
{
cb7dde69c301
Improved and enabled HTML optimization algorithm; enabled gzip compression; added but did not test at all the tag cloud class in includes/tagcloud.php, this is still very preliminary and not ready for any type of production use
Dan
diff
changeset
+ − 1920
die('The /css subdirectory could not be located in the theme\'s directory');
cb7dde69c301
Improved and enabled HTML optimization algorithm; enabled gzip compression; added but did not test at all the tag cloud class in includes/tagcloud.php, this is still very preliminary and not ready for any type of production use
Dan
diff
changeset
+ − 1921
}
cb7dde69c301
Improved and enabled HTML optimization algorithm; enabled gzip compression; added but did not test at all the tag cloud class in includes/tagcloud.php, this is still very preliminary and not ready for any type of production use
Dan
diff
changeset
+ − 1922
cb7dde69c301
Improved and enabled HTML optimization algorithm; enabled gzip compression; added but did not test at all the tag cloud class in includes/tagcloud.php, this is still very preliminary and not ready for any type of production use
Dan
diff
changeset
+ − 1923
if ( $default_style )
cb7dde69c301
Improved and enabled HTML optimization algorithm; enabled gzip compression; added but did not test at all the tag cloud class in includes/tagcloud.php, this is still very preliminary and not ready for any type of production use
Dan
diff
changeset
+ − 1924
{
cb7dde69c301
Improved and enabled HTML optimization algorithm; enabled gzip compression; added but did not test at all the tag cloud class in includes/tagcloud.php, this is still very preliminary and not ready for any type of production use
Dan
diff
changeset
+ − 1925
$q = 'INSERT INTO '.table_prefix.'themes(theme_id,theme_name,theme_order,enabled,default_style) VALUES(\''.$db->escape($theme['theme_id']).'\', \''.$db->escape($theme['theme_name']).'\', '.$n.', 1, \'' . $db->escape($default_style) . '\')';
cb7dde69c301
Improved and enabled HTML optimization algorithm; enabled gzip compression; added but did not test at all the tag cloud class in includes/tagcloud.php, this is still very preliminary and not ready for any type of production use
Dan
diff
changeset
+ − 1926
$s = $db->sql_query($q);
cb7dde69c301
Improved and enabled HTML optimization algorithm; enabled gzip compression; added but did not test at all the tag cloud class in includes/tagcloud.php, this is still very preliminary and not ready for any type of production use
Dan
diff
changeset
+ − 1927
if(!$s) die('Error inserting theme data: '.mysql_error().'<br /><u>SQL:</u><br />'.$q);
cb7dde69c301
Improved and enabled HTML optimization algorithm; enabled gzip compression; added but did not test at all the tag cloud class in includes/tagcloud.php, this is still very preliminary and not ready for any type of production use
Dan
diff
changeset
+ − 1928
else echo('<div class="info-box">Theme "'.$theme['theme_name'].'" installed.</div>');
cb7dde69c301
Improved and enabled HTML optimization algorithm; enabled gzip compression; added but did not test at all the tag cloud class in includes/tagcloud.php, this is still very preliminary and not ready for any type of production use
Dan
diff
changeset
+ − 1929
}
cb7dde69c301
Improved and enabled HTML optimization algorithm; enabled gzip compression; added but did not test at all the tag cloud class in includes/tagcloud.php, this is still very preliminary and not ready for any type of production use
Dan
diff
changeset
+ − 1930
else
cb7dde69c301
Improved and enabled HTML optimization algorithm; enabled gzip compression; added but did not test at all the tag cloud class in includes/tagcloud.php, this is still very preliminary and not ready for any type of production use
Dan
diff
changeset
+ − 1931
{
cb7dde69c301
Improved and enabled HTML optimization algorithm; enabled gzip compression; added but did not test at all the tag cloud class in includes/tagcloud.php, this is still very preliminary and not ready for any type of production use
Dan
diff
changeset
+ − 1932
echo '<div class="error-box">Could not determine the default style for the theme.</div>';
cb7dde69c301
Improved and enabled HTML optimization algorithm; enabled gzip compression; added but did not test at all the tag cloud class in includes/tagcloud.php, this is still very preliminary and not ready for any type of production use
Dan
diff
changeset
+ − 1933
}
cb7dde69c301
Improved and enabled HTML optimization algorithm; enabled gzip compression; added but did not test at all the tag cloud class in includes/tagcloud.php, this is still very preliminary and not ready for any type of production use
Dan
diff
changeset
+ − 1934
}
0
+ − 1935
}
+ − 1936
echo('
+ − 1937
<h3>Currently installed themes</h3>
+ − 1938
<form action="'.makeUrl($paths->nslist['Special'].'Administration', 'module='.$paths->cpage['module']).'" method="post">
+ − 1939
<p>
+ − 1940
<select name="theme_id">
+ − 1941
');
+ − 1942
$q = 'SELECT theme_id,theme_name,enabled FROM '.table_prefix.'themes ORDER BY theme_order';
+ − 1943
$s = $db->sql_query($q);
+ − 1944
if(!$s) die('Error selecting theme data: '.mysql_error().'<br /><u>Attempted SQL:</u><br />'.$q);
+ − 1945
while ( $r = $db->fetchrow_num($s) ) {
+ − 1946
if($r[2] < 1) $r[1] .= ' (disabled)';
+ − 1947
echo('<option value="'.$r[0].'">'.$r[1].'</option>');
+ − 1948
}
+ − 1949
$db->free_result();
+ − 1950
echo('
+ − 1951
</select> <input type="submit" name="disenable" value="Enable/Disable" /> <input type="submit" name="edit" value="Change settings" /> <input type="submit" name="up" value="Move up" /> <input type="submit" name="down" value="Move down" /> <input type="submit" name="uninstall" value="Uninstall" style="color: #DD3300; font-weight: bold;" />
+ − 1952
</p>
+ − 1953
</form>
+ − 1954
<h3>Install a new theme</h3>
+ − 1955
');
+ − 1956
$theme = Array();
+ − 1957
$obb = '';
+ − 1958
for($i=0;$i<sizeof($l);$i++) {
+ − 1959
if(is_file('./themes/'.$l[$i].'/theme.cfg') && file_exists('./themes/'.$l[$i].'/theme.cfg')) {
+ − 1960
include('./themes/'.$l[$i].'/theme.cfg');
+ − 1961
$q = 'SELECT * FROM '.table_prefix.'themes WHERE theme_id=\''.$theme['theme_id'].'\'';
+ − 1962
$s = $db->sql_query($q);
+ − 1963
if(!$s) die('Error selecting list of currently installed themes: '.mysql_error().'<br /><u>Attempted SQL:</u><br />'.$q);
+ − 1964
if($db->numrows($s) < 1) {
+ − 1965
$obb .= '<option value="'.$theme['theme_id'].'">'.$theme['theme_name'].'</option>';
+ − 1966
}
+ − 1967
$db->free_result();
+ − 1968
}
+ − 1969
}
+ − 1970
if($obb != '') {
+ − 1971
echo('<form action="'.makeUrl($paths->nslist['Special'].'Administration', 'module='.$paths->cpage['module']).'" method="post"><p>');
+ − 1972
echo('<select name="theme_id">');
+ − 1973
echo($obb);
+ − 1974
echo('</select>');
+ − 1975
echo('
+ − 1976
<input type="submit" name="install" value="Install this theme" />
+ − 1977
</p></form>');
+ − 1978
} else echo('<p>All themes are currently installed.</p>');
+ − 1979
}
+ − 1980
+ − 1981
function page_Admin_BanControl()
+ − 1982
{
+ − 1983
global $db, $session, $paths, $template, $plugins; // Common objects
+ − 1984
if ( $session->auth_level < USER_LEVEL_ADMIN || $session->user_level < USER_LEVEL_ADMIN )
+ − 1985
{
+ − 1986
echo '<h3>Error: Not authenticated</h3><p>It looks like your administration session is invalid or you are not authorized to access this administration page. Please <a href="' . makeUrlNS('Special', 'Login/' . $paths->nslist['Special'] . 'Administration', 'level=' . USER_LEVEL_ADMIN, true) . '">re-authenticate</a> to continue.</p>';
+ − 1987
return;
+ − 1988
}
+ − 1989
+ − 1990
if(isset($_GET['action']) && $_GET['action'] == 'delete' && isset($_GET['id']) && $_GET['id'] != '')
+ − 1991
{
+ − 1992
$e = $db->sql_query('DELETE FROM '.table_prefix.'banlist WHERE ban_id=' . $db->escape($_GET['id']) . '');
+ − 1993
if(!$e) $db->_die('The ban list entry was not deleted.');
+ − 1994
}
19
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 1995
if(isset($_POST['create']) && !defined('ENANO_DEMO_MODE'))
0
+ − 1996
{
+ − 1997
$q = 'INSERT INTO '.table_prefix.'banlist(ban_type,ban_value,reason,is_regex) VALUES( ' . $db->escape($_POST['type']) . ', \'' . $db->escape($_POST['value']) . '\', \''.$db->escape($_POST['reason']).'\'';
+ − 1998
if(isset($_POST['regex'])) $q .= ', 1';
+ − 1999
else $q .= ', 0';
+ − 2000
$q .= ');';
+ − 2001
$e = $db->sql_query($q);
+ − 2002
if(!$e) $db->_die('The banlist could not be updated.');
+ − 2003
}
19
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 2004
else if ( isset($_POST['create']) && defined('ENANO_DEMO_MODE') )
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 2005
{
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 2006
echo '<div class="error-box">This function is disabled in the demo. Just because <i>you</i> don\'t like ' . htmlspecialchars($_POST['value']) . ' doesn\'t mean <i>we</i> don\'t like ' . htmlspecialchars($_POST['value']) . '.</div>';
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 2007
}
0
+ − 2008
$q = $db->sql_query('SELECT ban_id,ban_type,ban_value,is_regex FROM '.table_prefix.'banlist ORDER BY ban_type;');
+ − 2009
if(!$q) $db->_die('The banlist data could not be selected.');
+ − 2010
echo '<table border="0" cellspacing="1" cellpadding="4">';
+ − 2011
echo '<tr><th>Type</th><th>Value</th><th>Regular Expression</th><th></th></tr>';
+ − 2012
if($db->numrows() < 1) echo '<td colspan="4">No ban rules yet.</td>';
+ − 2013
while($r = $db->fetchrow())
+ − 2014
{
+ − 2015
if($r['ban_type']==BAN_IP) $t = 'IP address';
+ − 2016
elseif($r['ban_type']==BAN_USER) $t = 'Username';
+ − 2017
elseif($r['ban_type']==BAN_EMAIL) $t = 'E-mail address';
+ − 2018
if($r['is_regex']) $g = 'Yes'; else $g = 'No';
+ − 2019
echo '<tr><td>'.$t.'</td><td>'.$r['ban_value'].'</td><td>'.$g.'</td><td><a href="'.makeUrlNS('Special', 'Administration', 'module='.$paths->nslist['Admin'].'BanControl&action=delete&id='.$r['ban_id']).'">Delete</a></td></tr>';
+ − 2020
}
+ − 2021
$db->free_result();
+ − 2022
echo '</table>';
+ − 2023
echo '<h3>Create new ban rule</h3>';
+ − 2024
echo '<form action="'.makeUrl($paths->nslist['Special'].'Administration', 'module='.$paths->cpage['module']).'" method="post">';
+ − 2025
?>
+ − 2026
Type: <select name="type"><option value="<?php echo BAN_IP; ?>">IP address</option><option value="<?php echo BAN_USER; ?>">Username</option><option value="<?php echo BAN_EMAIL; ?>">E-mail address</option></select><br />
+ − 2027
Rule: <input type="text" name="value" size="30" /><br />
+ − 2028
Reason to show to the banned user: <textarea name="reason" rows="7" cols="20"></textarea><br />
+ − 2029
<input type="checkbox" name="regex" id="regex" /> <label for="regex">This rule is a regular expression</label> (advanced users only)<br />
+ − 2030
<input type="submit" style="font-weight: bold;" name="create" value="Create new ban rule" />
+ − 2031
<?php
+ − 2032
echo '</form>';
+ − 2033
}
+ − 2034
+ − 2035
function page_Admin_MassEmail()
+ − 2036
{
+ − 2037
global $db, $session, $paths, $template, $plugins; // Common objects
+ − 2038
if ( $session->auth_level < USER_LEVEL_ADMIN || $session->user_level < USER_LEVEL_ADMIN )
+ − 2039
{
+ − 2040
echo '<h3>Error: Not authenticated</h3><p>It looks like your administration session is invalid or you are not authorized to access this administration page. Please <a href="' . makeUrlNS('Special', 'Login/' . $paths->nslist['Special'] . 'Administration', 'level=' . USER_LEVEL_ADMIN, true) . '">re-authenticate</a> to continue.</p>';
+ − 2041
return;
+ − 2042
}
+ − 2043
+ − 2044
global $enano_config;
19
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 2045
if ( isset($_POST['do_send']) && !defined('ENANO_DEMO_MODE') )
0
+ − 2046
{
+ − 2047
$use_smtp = getConfig('smtp_enabled') == '1';
+ − 2048
+ − 2049
//
+ − 2050
// Let's do some checking to make sure that mass mail functions
+ − 2051
// are working in win32 versions of php. (copied from phpBB)
+ − 2052
//
+ − 2053
if ( preg_match('/[c-z]:\\\.*/i', getenv('PATH')) && !$use_smtp)
+ − 2054
{
+ − 2055
$ini_val = ( @phpversion() >= '4.0.0' ) ? 'ini_get' : 'get_cfg_var';
+ − 2056
+ − 2057
// We are running on windows, force delivery to use our smtp functions
+ − 2058
// since php's are broken by default
+ − 2059
$use_smtp = true;
+ − 2060
$enano_config['smtp_server'] = @$ini_val('SMTP');
+ − 2061
}
+ − 2062
+ − 2063
$mail = new emailer( !empty($use_smtp) );
+ − 2064
+ − 2065
// Validate subject/message body
+ − 2066
$subject = stripslashes(trim($_POST['subject']));
+ − 2067
$message = stripslashes(trim($_POST['message']));
+ − 2068
+ − 2069
if ( empty($subject) )
+ − 2070
$errors[] = 'Please enter a subject.';
+ − 2071
if ( empty($message) )
+ − 2072
$errors[] = 'Please enter a message.';
+ − 2073
+ − 2074
// Get list of members
+ − 2075
if ( !empty($_POST['userlist']) )
+ − 2076
{
+ − 2077
$userlist = str_replace(', ', ',', $_POST['userlist']);
+ − 2078
$userlist = explode(',', $userlist);
+ − 2079
foreach ( $userlist as $k => $u )
+ − 2080
{
+ − 2081
if ( $u == $session->username )
+ − 2082
{
+ − 2083
// Message is automatically sent to the sender
+ − 2084
unset($userlist[$k]);
+ − 2085
}
+ − 2086
else
+ − 2087
{
+ − 2088
$userlist[$k] = $db->escape($u);
+ − 2089
}
+ − 2090
}
+ − 2091
$userlist = 'WHERE username=\'' . implode('\' OR username=\'', $userlist) . '\'';
+ − 2092
+ − 2093
$q = $db->sql_query('SELECT email FROM '.table_prefix.'users ' . $userlist . ';');
+ − 2094
if ( !$q )
+ − 2095
$db->_die();
+ − 2096
+ − 2097
if ( $row = $db->fetchrow() )
+ − 2098
{
+ − 2099
do {
+ − 2100
$mail->cc($row['email']);
+ − 2101
} while ( $row = $db->fetchrow() );
+ − 2102
}
+ − 2103
+ − 2104
$db->free_result();
+ − 2105
+ − 2106
}
+ − 2107
else
+ − 2108
{
+ − 2109
// Sending to a usergroup
+ − 2110
+ − 2111
$group_id = intval($_POST['group_id']);
+ − 2112
if ( $group_id < 1 )
+ − 2113
{
+ − 2114
$errors[] = 'Invalid group ID';
+ − 2115
}
+ − 2116
else
+ − 2117
{
+ − 2118
$q = $db->sql_query('SELECT u.email FROM '.table_prefix.'group_members AS g
+ − 2119
LEFT JOIN '.table_prefix.'users AS u
+ − 2120
ON (u.user_id=g.user_id)
+ − 2121
WHERE g.group_id=' . $group_id . ';');
+ − 2122
if ( !$q )
+ − 2123
$db->_die();
+ − 2124
+ − 2125
if ( $row = $db->fetchrow() )
+ − 2126
{
+ − 2127
do {
+ − 2128
$mail->cc($row['email']);
+ − 2129
} while ( $row = $db->fetchrow() );
+ − 2130
}
+ − 2131
+ − 2132
$db->free_result();
+ − 2133
}
+ − 2134
}
+ − 2135
+ − 2136
if ( sizeof($errors) < 1 )
+ − 2137
{
+ − 2138
+ − 2139
$mail->from(getConfig('contact_email'));
+ − 2140
$mail->replyto(getConfig('contact_email'));
+ − 2141
$mail->set_subject($subject);
+ − 2142
$mail->email_address(getConfig('contact_email'));
+ − 2143
+ − 2144
// Copied/modified from phpBB
+ − 2145
$email_headers = 'X-AntiAbuse: Website server name - ' . $_SERVER['SERVER_NAME'] . "\n";
+ − 2146
$email_headers .= 'X-AntiAbuse: User_id - ' . $session->user_id . "\n";
+ − 2147
$email_headers .= 'X-AntiAbuse: Username - ' . $session->username . "\n";
+ − 2148
$email_headers .= 'X-AntiAbuse: User IP - ' . $_SERVER['REMOTE_ADDR'] . "\n";
+ − 2149
+ − 2150
$mail->extra_headers($email_headers);
+ − 2151
+ − 2152
$tpl = 'The following message was mass-mailed by {SENDER}, one of the administrators from {SITE_NAME}. If this message contains spam or any comments which you find abusive or offensive, please contact the administration team at:
+ − 2153
+ − 2154
{CONTACT_EMAIL}
+ − 2155
+ − 2156
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ − 2157
{MESSAGE}
+ − 2158
';
+ − 2159
+ − 2160
$mail->use_template($tpl);
+ − 2161
+ − 2162
$mail->assign_vars(array(
+ − 2163
'SENDER' => $session->username,
+ − 2164
'SITE_NAME' => getConfig('site_name'),
+ − 2165
'CONTACT_EMAIL' => getConfig('contact_email'),
+ − 2166
'MESSAGE' => $message
+ − 2167
));
+ − 2168
+ − 2169
//echo '<pre>'.print_r($mail,true).'</pre>';
+ − 2170
+ − 2171
// All done
+ − 2172
$mail->send();
+ − 2173
$mail->reset();
+ − 2174
+ − 2175
echo '<div class="info-box">Your message has been sent.</div>';
+ − 2176
+ − 2177
}
+ − 2178
else
+ − 2179
{
+ − 2180
echo '<div class="warning-box">Could not send message for the following reason(s):<ul><li>' . implode('</li><li>', $errors) . '</li></ul></div>';
+ − 2181
}
+ − 2182
+ − 2183
}
19
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 2184
else if ( isset($_POST['do_send']) && defined('ENANO_DEMO_MODE') )
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 2185
{
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 2186
echo '<div class="error-box">This function is disabled in the demo. You think demo@enanocms.org likes getting "test" mass e-mails?</div>';
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 2187
}
0
+ − 2188
echo '<form action="'.makeUrl($paths->nslist['Special'].'Administration', 'module='.$paths->cpage['module']).'" method="post">';
+ − 2189
?>
+ − 2190
<div class="tblholder">
+ − 2191
<table border="0" cellspacing="1" cellpadding="4">
+ − 2192
<tr>
+ − 2193
<th colspan="2">Send mass e-mail</th>
+ − 2194
</tr>
+ − 2195
<tr>
+ − 2196
<td class="row2" rowspan="2" style="width: 30%; min-width: 200px;">
+ − 2197
Send message to:<br />
+ − 2198
<small>
+ − 2199
By default, this message will be sent to the group selected here. You may instead send the message to a specific
+ − 2200
list of users by entering them in the second row, with usernames separated by a single comma (no space).
+ − 2201
</small>
+ − 2202
</td>
+ − 2203
<td class="row1">
+ − 2204
<select name="group_id">
+ − 2205
<?php
+ − 2206
$q = $db->sql_query('SELECT group_name,group_id FROM '.table_prefix.'groups ORDER BY group_name ASC;');
+ − 2207
if ( !$q )
+ − 2208
$db->_die();
+ − 2209
while ( $row = $db->fetchrow() )
+ − 2210
{
+ − 2211
echo '<option value="' . $row['group_id'] . '">' . $row['group_name'] . '</option>';
+ − 2212
}
+ − 2213
?>
+ − 2214
</select>
+ − 2215
</td>
+ − 2216
</tr>
+ − 2217
<tr>
+ − 2218
<td class="row1">
+ − 2219
Usernames: <input type="text" name="userlist" size="50" />
+ − 2220
</td>
+ − 2221
</tr>
+ − 2222
<tr>
+ − 2223
<td class="row2" style="width: 30%; min-width: 200px;">
+ − 2224
Subject:
+ − 2225
</td>
+ − 2226
<td class="row1">
+ − 2227
<input name="subject" type="text" size="50" />
+ − 2228
</td>
+ − 2229
</tr>
+ − 2230
<tr>
+ − 2231
<td class="row2" style="width: 30%; min-width: 200px;">
+ − 2232
Message:
+ − 2233
</td>
+ − 2234
<td class="row1">
+ − 2235
<textarea name="message" rows="30" cols="60" style="width: 100%;"></textarea>
+ − 2236
</td>
+ − 2237
</tr>
+ − 2238
<tr>
+ − 2239
<th class="subhead" colspan="2" style="text-align: left;" valign="middle">
+ − 2240
<div style="float: right;"><input type="submit" name="do_send" value="Send message" /></div>
+ − 2241
<small style="font-weight: normal;">Please be warned: it may take a LONG time to send this message. <b>Please do not stop the script until the process is finished.</b></small>
+ − 2242
</th>
+ − 2243
</tr>
+ − 2244
+ − 2245
</table>
+ − 2246
</div>
+ − 2247
<?php
+ − 2248
echo '</form>';
+ − 2249
}
+ − 2250
+ − 2251
function page_Admin_DBBackup()
+ − 2252
{
+ − 2253
global $db, $session, $paths, $template, $plugins; // Common objects
+ − 2254
if ( $session->auth_level < USER_LEVEL_ADMIN || $session->user_level < USER_LEVEL_ADMIN )
+ − 2255
{
+ − 2256
echo '<h3>Error: Not authenticated</h3><p>It looks like your administration session is invalid or you are not authorized to access this administration page. Please <a href="' . makeUrlNS('Special', 'Login/' . $paths->nslist['Special'] . 'Administration', 'level=' . USER_LEVEL_ADMIN, true) . '">re-authenticate</a> to continue.</p>';
+ − 2257
return;
+ − 2258
}
+ − 2259
19
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 2260
if(isset($_GET['submitting']) && $_GET['submitting'] == 'yes' && defined('ENANO_DEMO_MODE') )
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 2261
{
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 2262
redirect(makeUrlComplete('Special', 'Administration'), 'Access denied', 'You\'ve got to be kidding me. Forget it, kid.', 4 );
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 2263
}
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 2264
0
+ − 2265
global $system_table_list;
+ − 2266
if(isset($_GET['submitting']) && $_GET['submitting'] == 'yes')
+ − 2267
{
+ − 2268
+ − 2269
if(defined('SQL_BACKUP_CRYPT'))
+ − 2270
// Try to increase our time limit
+ − 2271
@set_time_limit(300); // five minutes
+ − 2272
// Do the actual export
+ − 2273
$aesext = ( defined('SQL_BACKUP_CRYPT') ) ? '.tea' : '';
+ − 2274
$filename = 'enano_backup_' . date('dmy') . '.sql' . $aesext;
+ − 2275
ob_start();
+ − 2276
header('Content-disposition: attachment, filename="'.$filename.'";');
+ − 2277
header('Content-type: application/transact-sql');
+ − 2278
// Spew some headers
+ − 2279
$headdate = date('F d, Y \a\t h:i a');
+ − 2280
echo <<<HEADER
+ − 2281
-- Enano CMS SQL backup
+ − 2282
-- Generated on {$headdate} by {$session->username}
+ − 2283
+ − 2284
HEADER;
+ − 2285
// build the table list
+ − 2286
$base = ( isset($_POST['do_system_tables']) ) ? $system_table_list : Array();
+ − 2287
$add = ( isset($_POST['additional_tables'])) ? $_POST['additional_tables'] : Array();
+ − 2288
$tables = array_merge($base, $add);
+ − 2289
+ − 2290
// Log it!
+ − 2291
$e = $db->sql_query('INSERT INTO '.table_prefix.'logs(log_type,action,time_id,date_string,author,edit_summary,page_text) VALUES(\'security\', \'db_backup\', '.time().', \''.date('d M Y h:i a').'\', \''.$db->escape($session->username).'\', \''.$db->escape($_SERVER['REMOTE_ADDR']).'\', \'' . $db->escape(implode(', ', $tables)) . '\')');
+ − 2292
if ( !$e )
+ − 2293
$db->_die();
+ − 2294
+ − 2295
foreach($tables as $i => $t)
+ − 2296
{
+ − 2297
if(!preg_match('#^([a-z0-9_]+)$#i', $t))
+ − 2298
die('Hacking attempt');
+ − 2299
// if($t == table_prefix.'files' && isset($_POST['do_data']))
+ − 2300
// unset($tables[$i]);
+ − 2301
}
+ − 2302
foreach($tables as $t)
+ − 2303
{
+ − 2304
// Sorry folks - this script CAN'T backup enano_files, enano_search_index, and enano_search_cache due to the sheer size of the tables.
+ − 2305
// If encryption is enabled the log data will be excluded too.
+ − 2306
echo export_table(
+ − 2307
$t,
+ − 2308
isset($_POST['do_struct']),
+ − 2309
( isset($_POST['do_data']) /* && $t != table_prefix.'files' && $t != table_prefix.'search_index' && $t != table_prefix.'search_cache' && ( !defined('SQL_BACKUP_CRYPT') || ( defined('SQL_BACKUP_CRYPT') && $t != table_prefix.'logs' ) ) */ ),
+ − 2310
false
+ − 2311
) . "\n";
+ − 2312
}
+ − 2313
$data = ob_get_contents();
+ − 2314
ob_end_clean();
+ − 2315
if(defined('SQL_BACKUP_CRYPT'))
+ − 2316
{
+ − 2317
// Free some memory, we don't need this stuff any more
+ − 2318
$db->close();
+ − 2319
unset($paths, $db, $template, $plugins);
+ − 2320
$tea = new TEACrypt();
+ − 2321
$data = $tea->encrypt($data, $session->private_key);
+ − 2322
}
+ − 2323
header('Content-length: '.strlen($data));
+ − 2324
echo $data;
+ − 2325
exit;
+ − 2326
}
+ − 2327
else
+ − 2328
{
+ − 2329
// Show the UI
+ − 2330
echo '<form action="'.makeUrlNS('Admin', 'DBBackup', 'submitting=yes', true).'" method="post" enctype="multipart/form-data">';
+ − 2331
?>
+ − 2332
<p>This page allows you to back up your Enano database should something go miserably wrong.</p>
+ − 2333
<p><label><input type="checkbox" name="do_system_tables" checked="checked" /> Export tables that are part of the Enano core</label><p>
+ − 2334
<p>Additional tables to export:</p>
+ − 2335
<p><select name="additional_tables[]" multiple="multiple">
+ − 2336
<?php
+ − 2337
$q = $db->sql_query('SHOW TABLES;') or $db->_die('Somehow we were denied the request to get the list of tables.');
+ − 2338
while($row = $db->fetchrow_num())
+ − 2339
{
+ − 2340
if(!in_array($row[0], $system_table_list)) echo '<option value="'.$row[0].'">'.$row[0].'</option>';
+ − 2341
}
+ − 2342
?>
+ − 2343
</select>
+ − 2344
</p>
+ − 2345
<p><label><input type="checkbox" name="do_struct" checked="checked" /> Include table structure</label><br />
+ − 2346
<label><input type="checkbox" name="do_data" checked="checked" /> Include table data</label>
+ − 2347
</p>
+ − 2348
<p><input type="submit" value="Create backup" /></p>
+ − 2349
<?php
+ − 2350
echo '</form>';
+ − 2351
}
+ − 2352
}
+ − 2353
+ − 2354
function page_Admin_AdminLogout()
+ − 2355
{
+ − 2356
global $db, $session, $paths, $template, $plugins; // Common objects
+ − 2357
if ( $session->auth_level < USER_LEVEL_ADMIN || $session->user_level < USER_LEVEL_ADMIN )
+ − 2358
{
+ − 2359
echo '<h3>Error: Not authenticated</h3><p>It looks like your administration session is invalid or you are not authorized to access this administration page. Please <a href="' . makeUrlNS('Special', 'Login/' . $paths->nslist['Special'] . 'Administration', 'level=' . USER_LEVEL_ADMIN, true) . '">re-authenticate</a> to continue.</p>';
+ − 2360
return;
+ − 2361
}
+ − 2362
+ − 2363
$session->logout(USER_LEVEL_ADMIN);
+ − 2364
echo '<h3>You have now been logged out of the administration panel.</h3><p>You will continue to be logged into the website, but you will need to re-authenticate before you can access the administration panel again.</p><p>Return to the <a href="'.makeUrl(getConfig('main_page')).'">Main Page</a>.</p>';
+ − 2365
}
+ − 2366
+ − 2367
function page_Special_Administration()
+ − 2368
{
+ − 2369
global $db, $session, $paths, $template, $plugins; // Common objects
+ − 2370
+ − 2371
if($session->auth_level < USER_LEVEL_ADMIN) {
+ − 2372
redirect(makeUrlNS('Special', 'Login/'.$paths->page, 'level='.USER_LEVEL_ADMIN), 'Not authorized', 'You need an authorization level of '.USER_LEVEL_ADMIN.' to use this page, your auth level is: ' . $session->auth_level, 0);
+ − 2373
exit;
+ − 2374
}
+ − 2375
else
+ − 2376
{
+ − 2377
$template->load_theme('admin', 'default');
+ − 2378
$template->init_vars();
+ − 2379
if( !isset( $_GET['noheaders'] ) )
+ − 2380
{
+ − 2381
$template->header();
+ − 2382
}
+ − 2383
echo 'Administer your Enano website.';
+ − 2384
?>
+ − 2385
<script type="text/javascript">
+ − 2386
function ajaxPage(t)
+ − 2387
{
57
b354deeaa4c4
Vastly improved compatibility with older versions of IE, particularly 5.0, through the use of a kill switch that turns off all AJAX functions
Dan
diff
changeset
+ − 2388
if ( KILL_SWITCH )
b354deeaa4c4
Vastly improved compatibility with older versions of IE, particularly 5.0, through the use of a kill switch that turns off all AJAX functions
Dan
diff
changeset
+ − 2389
{
b354deeaa4c4
Vastly improved compatibility with older versions of IE, particularly 5.0, through the use of a kill switch that turns off all AJAX functions
Dan
diff
changeset
+ − 2390
document.getElementById('ajaxPageContainer').innerHTML = '<div class="error-box">Because of the lack of AJAX support, support for Internet Explorer versions less than 6.0 has been disabled in Runt. You can download and use Mozilla Firefox (or Seamonkey under Windows 95); both have an up-to-date standards-compliant rendering engine that has been tested thoroughly with Enano.</div>';
b354deeaa4c4
Vastly improved compatibility with older versions of IE, particularly 5.0, through the use of a kill switch that turns off all AJAX functions
Dan
diff
changeset
+ − 2391
return false;
b354deeaa4c4
Vastly improved compatibility with older versions of IE, particularly 5.0, through the use of a kill switch that turns off all AJAX functions
Dan
diff
changeset
+ − 2392
}
0
+ − 2393
if ( t == namespace_list.Admin + 'AdminLogout' )
+ − 2394
{
+ − 2395
var mb = new messagebox(MB_YESNO|MB_ICONQUESTION, 'Are you sure you want to de-authenticate?', 'If you de-authenticate, you will no longer be able to use the administration panel until you re-authenticate again. You may do so at any time using the Administration button on the sidebar.');
+ − 2396
mb.onclick['Yes'] = function() {
+ − 2397
var tigraentry = document.getElementById('i_div0_0').parentNode;
+ − 2398
var tigraobj = $(tigraentry);
+ − 2399
var div = document.createElement('div');
+ − 2400
div.style.backgroundColor = '#FFFFFF';
+ − 2401
domObjChangeOpac(70, div);
+ − 2402
div.style.position = 'absolute';
+ − 2403
var top = tigraobj.Top();
+ − 2404
var left = tigraobj.Left();
+ − 2405
var width = tigraobj.Width();
+ − 2406
var height = tigraobj.Height();
+ − 2407
div.style.top = top + 'px';
+ − 2408
div.style.left = left + 'px';
+ − 2409
div.style.width = width + 'px';
+ − 2410
div.style.height = height + 'px';
+ − 2411
var body = document.getElementsByTagName('body')[0];
+ − 2412
enlighten(true);
+ − 2413
body.appendChild(div);
+ − 2414
ajaxPageBin(namespace_list.Admin + 'AdminLogout');
+ − 2415
}
+ − 2416
return;
+ − 2417
}
+ − 2418
ajaxPageBin(t);
+ − 2419
}
+ − 2420
function ajaxPageBin(t)
+ − 2421
{
57
b354deeaa4c4
Vastly improved compatibility with older versions of IE, particularly 5.0, through the use of a kill switch that turns off all AJAX functions
Dan
diff
changeset
+ − 2422
if ( KILL_SWITCH )
b354deeaa4c4
Vastly improved compatibility with older versions of IE, particularly 5.0, through the use of a kill switch that turns off all AJAX functions
Dan
diff
changeset
+ − 2423
{
b354deeaa4c4
Vastly improved compatibility with older versions of IE, particularly 5.0, through the use of a kill switch that turns off all AJAX functions
Dan
diff
changeset
+ − 2424
document.getElementById('ajaxPageContainer').innerHTML = '<div class="error-box">Because of the lack of AJAX support, support for Internet Explorer versions less than 6.0 has been disabled in Runt. You can download and use Mozilla Firefox (or Seamonkey under Windows 95); both have an up-to-date standards-compliant rendering engine that has been tested thoroughly with Enano.</div>';
b354deeaa4c4
Vastly improved compatibility with older versions of IE, particularly 5.0, through the use of a kill switch that turns off all AJAX functions
Dan
diff
changeset
+ − 2425
return false;
b354deeaa4c4
Vastly improved compatibility with older versions of IE, particularly 5.0, through the use of a kill switch that turns off all AJAX functions
Dan
diff
changeset
+ − 2426
}
0
+ − 2427
document.getElementById('ajaxPageContainer').innerHTML = '<div class="wait-box">Loading page...</div>';
+ − 2428
ajaxGet('<?php echo scriptPath; ?>/ajax.php?title='+t+'&_mode=getpage&noheaders&auth=<?php echo $session->sid_super; ?>', function() {
+ − 2429
if(ajax.readyState == 4) {
+ − 2430
document.getElementById('ajaxPageContainer').innerHTML = ajax.responseText;
+ − 2431
fadeInfoBoxes();
+ − 2432
}
+ − 2433
});
+ − 2434
}
+ − 2435
function _enanoAdminOnload() { ajaxPage('<?php echo $paths->nslist['Admin']; ?>Home'); }
+ − 2436
var TREE_TPL = {
+ − 2437
'target' : '_self', // name of the frame links will be opened in
+ − 2438
// other possible values are: _blank, _parent, _search, _self and _top
+ − 2439
+ − 2440
'icon_e' : '<?php echo scriptPath; ?>/images/icons/empty.gif', // empty image
+ − 2441
'icon_l' : '<?php echo scriptPath; ?>/images/icons/line.gif', // vertical line
+ − 2442
'icon_32' : '<?php echo scriptPath; ?>/images/icons/base.gif', // root leaf icon normal
+ − 2443
'icon_36' : '<?php echo scriptPath; ?>/images/icons/base.gif', // root leaf icon selected
+ − 2444
'icon_48' : '<?php echo scriptPath; ?>/images/icons/base.gif', // root icon normal
+ − 2445
'icon_52' : '<?php echo scriptPath; ?>/images/icons/base.gif', // root icon selected
+ − 2446
'icon_56' : '<?php echo scriptPath; ?>/images/icons/base.gif', // root icon opened
+ − 2447
'icon_60' : '<?php echo scriptPath; ?>/images/icons/base.gif', // root icon selected
+ − 2448
'icon_16' : '<?php echo scriptPath; ?>/images/icons/folder.gif', // node icon normal
+ − 2449
'icon_20' : '<?php echo scriptPath; ?>/images/icons/folderopen.gif', // node icon selected
+ − 2450
'icon_24' : '<?php echo scriptPath; ?>/images/icons/folder.gif', // node icon opened
+ − 2451
'icon_28' : '<?php echo scriptPath; ?>/images/icons/folderopen.gif', // node icon selected opened
+ − 2452
'icon_0' : '<?php echo scriptPath; ?>/images/icons/page.gif', // leaf icon normal
+ − 2453
'icon_4' : '<?php echo scriptPath; ?>/images/icons/page.gif', // leaf icon selected
+ − 2454
'icon_8' : '<?php echo scriptPath; ?>/images/icons/page.gif', // leaf icon opened
+ − 2455
'icon_12' : '<?php echo scriptPath; ?>/images/icons/page.gif', // leaf icon selected
+ − 2456
'icon_2' : '<?php echo scriptPath; ?>/images/icons/joinbottom.gif', // junction for leaf
+ − 2457
'icon_3' : '<?php echo scriptPath; ?>/images/icons/join.gif', // junction for last leaf
+ − 2458
'icon_18' : '<?php echo scriptPath; ?>/images/icons/plusbottom.gif', // junction for closed node
+ − 2459
'icon_19' : '<?php echo scriptPath; ?>/images/icons/plus.gif', // junction for last closed node
+ − 2460
'icon_26' : '<?php echo scriptPath; ?>/images/icons/minusbottom.gif',// junction for opened node
+ − 2461
'icon_27' : '<?php echo scriptPath; ?>/images/icons/minus.gif' // junction for last opended node
+ − 2462
};
+ − 2463
<?php
+ − 2464
echo $paths->parseAdminTree(); // Make a Javascript array that defines the tree
+ − 2465
if(!isset($_GET['module'])) { echo 'addOnloadHook(_enanoAdminOnload);'; } ?>
+ − 2466
</script>
+ − 2467
<table border="0" width="100%">
+ − 2468
<tr>
+ − 2469
<td class="holder" valign="top">
+ − 2470
<div class="pad" style="padding-right: 20px;">
+ − 2471
<script type="text/javascript">
57
b354deeaa4c4
Vastly improved compatibility with older versions of IE, particularly 5.0, through the use of a kill switch that turns off all AJAX functions
Dan
diff
changeset
+ − 2472
if ( !KILL_SWITCH )
b354deeaa4c4
Vastly improved compatibility with older versions of IE, particularly 5.0, through the use of a kill switch that turns off all AJAX functions
Dan
diff
changeset
+ − 2473
{
b354deeaa4c4
Vastly improved compatibility with older versions of IE, particularly 5.0, through the use of a kill switch that turns off all AJAX functions
Dan
diff
changeset
+ − 2474
new tree(TREE_ITEMS, TREE_TPL);
b354deeaa4c4
Vastly improved compatibility with older versions of IE, particularly 5.0, through the use of a kill switch that turns off all AJAX functions
Dan
diff
changeset
+ − 2475
}
0
+ − 2476
</script>
+ − 2477
</div>
+ − 2478
</td>
+ − 2479
<td width="100%" valign="top">
+ − 2480
<div class="pad" id="ajaxPageContainer">
+ − 2481
<?php
+ − 2482
if(isset($_GET['module']))
+ − 2483
{
+ − 2484
// Look for a namespace prefix in the urlname, and assign a different namespace, if necessary
+ − 2485
$k = array_keys($paths->nslist);
+ − 2486
for ( $i = 0; $i < sizeof($paths->nslist); $i++ )
+ − 2487
{
+ − 2488
$ln = strlen( $paths->nslist[ $k[ $i ] ] );
+ − 2489
if ( substr($_GET['module'], 0, $ln) == $paths->nslist[$k[$i]] )
+ − 2490
{
+ − 2491
$ns = $k[$i];
+ − 2492
$nm = substr($_GET['module'], $ln, strlen($_GET['module']));
+ − 2493
}
+ − 2494
}
+ − 2495
$fname = 'page_'.$ns.'_'.$nm;
+ − 2496
$s = strpos($fname, '?noheaders');
+ − 2497
if($s) $fname = substr($fname, 0, $s);
+ − 2498
$paths->cpage['module'] = $_GET['module'];
+ − 2499
if ( function_exists($fname) && $_GET['module'] != $paths->nslist['Special'] . 'Administration' )
+ − 2500
{
+ − 2501
eval($fname.'();');
+ − 2502
}
+ − 2503
}
+ − 2504
else
+ − 2505
{
+ − 2506
echo '<div class="wait-box">Please wait while the administration panel loads. You need to be using a recent browser with AJAX support in order to use Runt.</div>';
+ − 2507
}
+ − 2508
?>
+ − 2509
</div>
57
b354deeaa4c4
Vastly improved compatibility with older versions of IE, particularly 5.0, through the use of a kill switch that turns off all AJAX functions
Dan
diff
changeset
+ − 2510
<script type="text/javascript">
b354deeaa4c4
Vastly improved compatibility with older versions of IE, particularly 5.0, through the use of a kill switch that turns off all AJAX functions
Dan
diff
changeset
+ − 2511
if ( KILL_SWITCH )
b354deeaa4c4
Vastly improved compatibility with older versions of IE, particularly 5.0, through the use of a kill switch that turns off all AJAX functions
Dan
diff
changeset
+ − 2512
{
b354deeaa4c4
Vastly improved compatibility with older versions of IE, particularly 5.0, through the use of a kill switch that turns off all AJAX functions
Dan
diff
changeset
+ − 2513
document.getElementById('ajaxPageContainer').innerHTML = '<div class="error-box">Because of the lack of AJAX support, support for Internet Explorer versions less than 6.0 has been disabled in Runt. You can download and use Mozilla Firefox (or Seamonkey under Windows 95); both have an up-to-date standards-compliant rendering engine that has been tested thoroughly with Enano.</div>';
b354deeaa4c4
Vastly improved compatibility with older versions of IE, particularly 5.0, through the use of a kill switch that turns off all AJAX functions
Dan
diff
changeset
+ − 2514
}
b354deeaa4c4
Vastly improved compatibility with older versions of IE, particularly 5.0, through the use of a kill switch that turns off all AJAX functions
Dan
diff
changeset
+ − 2515
</script>
0
+ − 2516
</td>
+ − 2517
</tr>
+ − 2518
</table>
+ − 2519
+ − 2520
<?php
+ − 2521
}
+ − 2522
if(!isset($_GET['noheaders']))
+ − 2523
{
+ − 2524
$template->footer();
+ − 2525
}
+ − 2526
}
+ − 2527
+ − 2528
function page_Special_EditSidebar()
+ − 2529
{
+ − 2530
global $db, $session, $paths, $template, $plugins; // Common objects
+ − 2531
+ − 2532
if($session->auth_level < USER_LEVEL_ADMIN)
+ − 2533
{
+ − 2534
redirect(makeUrlNS('Special', 'Login/'.$paths->page, 'level='.USER_LEVEL_ADMIN), '', '', false);
+ − 2535
exit;
+ − 2536
}
+ − 2537
else
+ − 2538
{
+ − 2539
+ − 2540
$template->add_header('<script type="text/javascript" src="'.scriptPath.'/includes/clientside/dbx.js"></script>');
+ − 2541
$template->add_header('<script type="text/javascript" src="'.scriptPath.'/includes/clientside/dbx-key.js"></script>');
+ − 2542
$template->add_header('<script type="text/javascript" src="'.scriptPath.'/includes/clientside/sbedit.js"></script>');
+ − 2543
$template->add_header('<link rel="stylesheet" type="text/css" href="'.scriptPath.'/includes/clientside/dbx.css" />');
+ − 2544
+ − 2545
// Knock the sidebars dead to keep javascript in plugins from interfering
+ − 2546
$template->tpl_strings['SIDEBAR_LEFT'] = '';
+ − 2547
$template->tpl_strings['SIDEBAR_RIGHT'] = '';
+ − 2548
+ − 2549
$template->load_theme('oxygen', 'bleu');
+ − 2550
$template->init_vars();
+ − 2551
+ − 2552
$template->header();
+ − 2553
+ − 2554
if(isset($_POST['save']))
+ − 2555
{
+ − 2556
// Write the new block order to the database
+ − 2557
// The only way to do this is with tons of queries (one per block + one select query at the start to count everything) but afaik its safe...
+ − 2558
// Anyone know a better way to do this?
+ − 2559
$q = $db->sql_query('SELECT item_order,item_id,sidebar_id FROM '.table_prefix.'sidebar ORDER BY sidebar_id ASC, item_order ASC;');
+ − 2560
if ( !$q )
+ − 2561
{
+ − 2562
$db->_die('The sidebar order data could not be selected.');
+ − 2563
}
+ − 2564
$orders = Array();
+ − 2565
while($row = $db->fetchrow())
+ − 2566
{
+ − 2567
$orders[] = Array(
+ − 2568
count($orders),
+ − 2569
$row['item_id'],
+ − 2570
$row['sidebar_id'],
+ − 2571
);
+ − 2572
}
+ − 2573
$db->free_result();
+ − 2574
+ − 2575
// We now have an array with each sidebar ID in its respective order. Explode the order string in $_POST['order_(left|right)'] and use it to build a set of queries.
+ − 2576
$ol = explode(',', $_POST['order_left']);
+ − 2577
$odr = explode(',', $_POST['order_right']);
+ − 2578
$om = array_merge($ol, $odr);
+ − 2579
unset($ol, $odr);
+ − 2580
$queries = Array();
+ − 2581
foreach($orders as $k => $v)
+ − 2582
{
+ − 2583
$queries[] = 'UPDATE '.table_prefix.'sidebar SET item_order='.$om[$k].' WHERE item_id='.$v[1].';';
+ − 2584
}
+ − 2585
foreach($queries as $sql)
+ − 2586
{
+ − 2587
$q = $db->sql_query($sql);
+ − 2588
if(!$q)
+ − 2589
{
+ − 2590
$t = $db->get_error();
+ − 2591
echo $t;
+ − 2592
$template->footer();
+ − 2593
exit;
+ − 2594
}
+ − 2595
}
+ − 2596
echo '<div class="info-box" style="margin: 10px 0;">The sidebar order information was updated successfully.</div>';
+ − 2597
}
+ − 2598
elseif(isset($_POST['create']))
+ − 2599
{
+ − 2600
switch((int)$_POST['type'])
+ − 2601
{
+ − 2602
case BLOCK_WIKIFORMAT:
+ − 2603
$content = $_POST['wikiformat_content'];
+ − 2604
break;
+ − 2605
case BLOCK_TEMPLATEFORMAT:
+ − 2606
$content = $_POST['templateformat_content'];
+ − 2607
break;
+ − 2608
case BLOCK_HTML:
+ − 2609
$content = $_POST['html_content'];
+ − 2610
break;
+ − 2611
case BLOCK_PHP:
+ − 2612
$content = $_POST['php_content'];
+ − 2613
break;
+ − 2614
case BLOCK_PLUGIN:
+ − 2615
$content = $_POST['plugin_id'];
+ − 2616
break;
+ − 2617
}
19
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 2618
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 2619
if ( defined('ENANO_DEMO_MODE') )
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 2620
{
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 2621
// Sanitize the HTML
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 2622
$content = sanitize_html($content, true);
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 2623
}
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 2624
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 2625
if ( defined('ENANO_DEMO_MODE') && intval($_POST['type']) == BLOCK_PHP )
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 2626
{
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 2627
echo '<div class="error-box" style="margin: 10px 0 10px 0;">Adding PHP code blocks in the Enano administration demo has been disabled for security reasons.</div>';
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 2628
$_POST['php_content'] = '?><Nulled>';
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 2629
$content = $_POST['php_content'];
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 2630
}
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 2631
0
+ − 2632
// Get the value of item_order
+ − 2633
+ − 2634
$q = $db->sql_query('SELECT * FROM '.table_prefix.'sidebar WHERE sidebar_id='.$db->escape($_POST['sidebar_id']).';');
+ − 2635
if(!$q) $db->_die('The order number could not be selected');
+ − 2636
$io = $db->numrows();
+ − 2637
+ − 2638
$db->free_result();
+ − 2639
+ − 2640
$q = 'INSERT INTO '.table_prefix.'sidebar(block_name, block_type, sidebar_id, block_content, item_order) VALUES ( \''.$db->escape($_POST['title']).'\', \''.$db->escape($_POST['type']).'\', \''.$db->escape($_POST['sidebar_id']).'\', \''.$db->escape($content).'\', '.$io.' );';
+ − 2641
$result = $db->sql_query($q);
+ − 2642
if(!$result)
+ − 2643
{
+ − 2644
echo $db->get_error();
+ − 2645
$template->footer();
+ − 2646
exit;
+ − 2647
}
+ − 2648
+ − 2649
echo '<div class="info-box" style="margin: 10px 0;">The item was added.</div>';
+ − 2650
+ − 2651
}
+ − 2652
+ − 2653
if(isset($_GET['action']) && isset($_GET['id']))
+ − 2654
{
+ − 2655
if(preg_match('#^([0-9]*)$#', $_GET['id']))
+ − 2656
{
+ − 2657
} else {
+ − 2658
echo '<div class="warning-box">Error with action: $_GET["id"] was not an integer, aborting to prevent SQL injection</div>';
+ − 2659
}
+ − 2660
switch($_GET['action'])
+ − 2661
{
+ − 2662
case 'new':
+ − 2663
?>
+ − 2664
<script type="text/javascript">
+ − 2665
function setType(input)
+ − 2666
{
+ − 2667
val = input.value;
+ − 2668
if(!val)
+ − 2669
{
+ − 2670
return false;
+ − 2671
}
+ − 2672
var divs = getElementsByClassName(document, 'div', 'sbadd_block');
+ − 2673
for(var i in divs)
+ − 2674
{
+ − 2675
if(divs[i].id == 'blocktype_'+val) divs[i].style.display = 'block';
+ − 2676
else divs[i].style.display = 'none';
+ − 2677
}
+ − 2678
}
+ − 2679
</script>
+ − 2680
+ − 2681
<form action="<?php echo makeUrl($paths->page); ?>" method="post">
+ − 2682
+ − 2683
<p>
+ − 2684
What type of block should this be?
+ − 2685
</p>
+ − 2686
<p>
+ − 2687
<select name="type" onchange="setType(this)"> <?php /* (NOT WORKING, at least in firefox 2) onload="var thingy = this; setTimeout('setType(thingy)', 500);" */ ?>
+ − 2688
<option value="<?php echo BLOCK_WIKIFORMAT; ?>">Wiki-formatted block</option>
+ − 2689
<option value="<?php echo BLOCK_TEMPLATEFORMAT; ?>">Template-formatted block (old pre-beta 3 behavior)</option>
+ − 2690
<option value="<?php echo BLOCK_HTML; ?>">Raw HTML block</option>
+ − 2691
<option value="<?php echo BLOCK_PHP; ?>">PHP code block (danger, Will Robinson!)</option>
+ − 2692
<option value="<?php echo BLOCK_PLUGIN; ?>">Use code from a plugin</option>
+ − 2693
</select>
+ − 2694
</p>
+ − 2695
+ − 2696
<p>
+ − 2697
+ − 2698
Block title: <input name="title" type="text" size="40" /><br />
+ − 2699
Which sidebar: <select name="sidebar_id"><option value="<?php echo SIDEBAR_LEFT; ?>">Left</option><option value="<?php echo SIDEBAR_RIGHT; ?>">Right</option></select>
+ − 2700
+ − 2701
</p>
+ − 2702
+ − 2703
<div class="sbadd_block" id="blocktype_<?php echo BLOCK_WIKIFORMAT; ?>">
+ − 2704
<p>
+ − 2705
Wikitext:
+ − 2706
</p>
+ − 2707
<p>
+ − 2708
<textarea style="width: 98%;" name="wikiformat_content" rows="15" cols="50"></textarea>
+ − 2709
</p>
+ − 2710
</div>
+ − 2711
+ − 2712
<div class="sbadd_block" id="blocktype_<?php echo BLOCK_TEMPLATEFORMAT; ?>">
+ − 2713
<p>
+ − 2714
Template code:
+ − 2715
</p>
+ − 2716
<p>
+ − 2717
<textarea style="width: 98%;" name="templateformat_content" rows="15" cols="50"></textarea>
+ − 2718
</p>
+ − 2719
</div>
+ − 2720
+ − 2721
<div class="sbadd_block" id="blocktype_<?php echo BLOCK_HTML; ?>">
+ − 2722
<p>
+ − 2723
HTML to place inside the sidebar:
+ − 2724
</p>
+ − 2725
<p>
+ − 2726
<textarea style="width: 98%;" name="html_content" rows="15" cols="50"></textarea>
+ − 2727
</p>
+ − 2728
</div>
+ − 2729
+ − 2730
<div class="sbadd_block" id="blocktype_<?php echo BLOCK_PHP; ?>">
19
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 2731
<?php if ( defined('ENANO_DEMO_MODE') ) { ?>
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 2732
<p>Creating PHP blocks in demo mode is disabled for security reasons.</p>
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 2733
<?php } else { ?>
0
+ − 2734
<p>
+ − 2735
<b>WARNING:</b> If you don't know what you're doing, or if you are not fluent in PHP, stop now and choose a different block type. You will brick your Enano installation if you are not careful here.
+ − 2736
ALWAYS remember to write secure code! The Enano team is not responsible if someone drops all your tables because of an SQL injection vulnerability in your sidebar code. You are probably better off using the template-formatted block type.
+ − 2737
</p>
+ − 2738
<p>
+ − 2739
<span style="color: red;">
+ − 2740
It is especially important to note that this code is NOT checked for errors! If there is a syntax error in your code here, it will prevent any pages from loading AT ALL. So you need to use an external PHP editor (like <a href="http://www.jedit.org">jEdit</a>) to check your syntax before you hit save.
+ − 2741
</span> You have been warned.
+ − 2742
</p>
+ − 2743
<p>
+ − 2744
Also, you should avoid using output buffering functions (ob_[start|end|get_contents|clean]) here, because Enano uses those to track output from this script.
+ − 2745
</p>
+ − 2746
<p>
+ − 2747
The standard <?php and ?> tags work here. Don't use an initial "<?php" or it will cause a parse error.
+ − 2748
</p>
+ − 2749
<p>
+ − 2750
PHP code:
+ − 2751
</p>
+ − 2752
<p>
+ − 2753
<textarea style="width: 98%;" name="php_content" rows="15" cols="50"></textarea>
+ − 2754
</p>
19
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 2755
<?php } ?>
0
+ − 2756
</div>
+ − 2757
+ − 2758
<div class="sbadd_block" id="blocktype_<?php echo BLOCK_PLUGIN; ?>">
+ − 2759
<p>
+ − 2760
Plugin:
+ − 2761
</p>
+ − 2762
<p>
+ − 2763
<select name="plugin_id">
+ − 2764
<?php
+ − 2765
foreach($template->plugin_blocks as $k => $c)
+ − 2766
{
+ − 2767
echo '<option value="'.$k.'">'.$k.'</option>';
+ − 2768
}
+ − 2769
?>
+ − 2770
</select>
+ − 2771
</p>
+ − 2772
</div>
+ − 2773
+ − 2774
<p>
+ − 2775
+ − 2776
<input type="submit" name="create" value="Create new block" style="font-weight: bold;" />
+ − 2777
<input type="submit" name="cancel" value="Cancel" />
+ − 2778
+ − 2779
</p>
+ − 2780
+ − 2781
</form>
+ − 2782
+ − 2783
<script type="text/javascript">
+ − 2784
var divs = getElementsByClassName(document, 'div', 'sbadd_block');
+ − 2785
for(var i in divs)
+ − 2786
{
+ − 2787
if(divs[i].id != 'blocktype_<?php echo BLOCK_WIKIFORMAT; ?>') setTimeout("document.getElementById('"+divs[i].id+"').style.display = 'none';", 500);
+ − 2788
}
+ − 2789
</script>
+ − 2790
+ − 2791
<?php
+ − 2792
$template->footer();
+ − 2793
return;
+ − 2794
break;
+ − 2795
case 'move':
+ − 2796
if( !isset($_GET['side']) || ( isset($_GET['side']) && !preg_match('#^([0-9]+)$#', $_GET['side']) ) )
+ − 2797
{
+ − 2798
echo '<div class="warning-box" style="margin: 10px 0;">$_GET[\'side\'] contained an SQL injection attempt</div>';
+ − 2799
break;
+ − 2800
}
+ − 2801
$query = $db->sql_query('UPDATE '.table_prefix.'sidebar SET sidebar_id=' . $db->escape($_GET['side']) . ' WHERE item_id=' . $db->escape($_GET['id']) . ';');
+ − 2802
if(!$query)
+ − 2803
{
+ − 2804
echo $db->get_error();
+ − 2805
$template->footer();
+ − 2806
exit;
+ − 2807
}
+ − 2808
echo '<div class="info-box" style="margin: 10px 0;">Item moved.</div>';
+ − 2809
break;
+ − 2810
case 'delete':
+ − 2811
$query = $db->sql_query('DELETE FROM '.table_prefix.'sidebar WHERE item_id=' . $db->escape($_GET['id']) . ';'); // Already checked for injection attempts ;-)
+ − 2812
if(!$query)
+ − 2813
{
+ − 2814
echo $db->get_error();
+ − 2815
$template->footer();
+ − 2816
exit;
+ − 2817
}
+ − 2818
if(isset($_GET['ajax']))
+ − 2819
{
+ − 2820
ob_end_clean();
+ − 2821
die('GOOD');
+ − 2822
}
+ − 2823
echo '<div class="error-box" style="margin: 10px 0;">Item deleted.</div>';
+ − 2824
break;
+ − 2825
case 'disenable';
+ − 2826
$q = $db->sql_query('SELECT item_enabled FROM '.table_prefix.'sidebar WHERE item_id=' . $db->escape($_GET['id']) . ';');
+ − 2827
if(!$q)
+ − 2828
{
+ − 2829
echo $db->get_error();
+ − 2830
$template->footer();
+ − 2831
exit;
+ − 2832
}
+ − 2833
$r = $db->fetchrow();
+ − 2834
$db->free_result();
+ − 2835
$e = ( $r['item_enabled'] == 1 ) ? '0' : '1';
+ − 2836
$q = $db->sql_query('UPDATE '.table_prefix.'sidebar SET item_enabled='.$e.' WHERE item_id=' . $db->escape($_GET['id']) . ';');
+ − 2837
if(!$q)
+ − 2838
{
+ − 2839
echo $db->get_error();
+ − 2840
$template->footer();
+ − 2841
exit;
+ − 2842
}
+ − 2843
if(isset($_GET['ajax']))
+ − 2844
{
+ − 2845
ob_end_clean();
+ − 2846
die('GOOD');
+ − 2847
}
+ − 2848
break;
+ − 2849
case 'getsource':
+ − 2850
$q = $db->sql_query('SELECT block_content,block_type FROM '.table_prefix.'sidebar WHERE item_id=' . $db->escape($_GET['id']) . ';');
+ − 2851
if(!$q)
+ − 2852
{
+ − 2853
echo $db->get_error();
+ − 2854
$template->footer();
+ − 2855
exit;
+ − 2856
}
+ − 2857
ob_end_clean();
+ − 2858
$r = $db->fetchrow();
+ − 2859
$db->free_result();
+ − 2860
if($r['block_type'] == BLOCK_PLUGIN) die('HOUSTON_WE_HAVE_A_PLUGIN');
+ − 2861
die($r['block_content']);
+ − 2862
break;
+ − 2863
case 'save':
19
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 2864
if ( defined('ENANO_DEMO_MODE') )
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 2865
{
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 2866
$q = $db->sql_query('SELECT block_type FROM '.table_prefix.'sidebar WHERE item_id=' . $db->escape($_GET['id']) . ';');
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 2867
if(!$q)
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 2868
{
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 2869
echo 'var status=unescape(\''.hexencode($db->get_error()).'\');';
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 2870
exit;
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 2871
}
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 2872
$row = $db->fetchrow();
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 2873
if ( $row['block_type'] == BLOCK_PHP )
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 2874
{
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 2875
$_POST['content'] = '?><Nulled>';
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 2876
}
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 2877
else
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 2878
{
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 2879
$_POST['content'] = sanitize_html($_POST['content'], true);
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 2880
}
5d003b6c9e89
Added demo mode functionality to various parts of Enano (unlocked only with a plugin) and fixed groups table
Dan
diff
changeset
+ − 2881
}
0
+ − 2882
$q = $db->sql_query('UPDATE '.table_prefix.'sidebar SET block_content=\''.$db->escape(rawurldecode($_POST['content'])).'\' WHERE item_id=' . $db->escape($_GET['id']) . ';');
+ − 2883
if(!$q)
+ − 2884
{
+ − 2885
echo 'var status=unescape(\''.hexencode($db->get_error()).'\');';
+ − 2886
exit;
+ − 2887
}
+ − 2888
$q = $db->sql_query('SELECT block_type,block_content FROM '.table_prefix.'sidebar WHERE item_id=' . $db->escape($_GET['id']) . ';');
+ − 2889
if(!$q)
+ − 2890
{
+ − 2891
echo 'var status=unescape(\''.hexencode($db->get_error()).'\');';
+ − 2892
exit;
+ − 2893
}
+ − 2894
$row = $db->fetchrow();
+ − 2895
$db->free_result();
+ − 2896
switch($row['block_type'])
+ − 2897
{
+ − 2898
case BLOCK_WIKIFORMAT:
+ − 2899
default:
+ − 2900
$c = RenderMan::render($row['block_content']);
+ − 2901
break;
+ − 2902
case BLOCK_TEMPLATEFORMAT:
+ − 2903
$c = $template->tplWikiFormat($row['block_content'], false, 'sidebar-editor.tpl');
+ − 2904
$c = preg_replace('#<a (.*?)>(.*?)</a>#is', '<a href="#" onclick="return false;">\\2</a>', $c);
+ − 2905
break;
+ − 2906
case BLOCK_HTML:
+ − 2907
$c = $row['block_content'];
+ − 2908
$c = preg_replace('#<a (.*?)>(.*?)</a>#is', '<a href="#" onclick="return false;">\\2</a>', $c);
+ − 2909
break;
+ − 2910
case BLOCK_PHP:
+ − 2911
ob_start();
+ − 2912
eval($row['block_content']);
+ − 2913
$c = ob_get_contents();
+ − 2914
ob_end_clean();
+ − 2915
$c = preg_replace('#<a (.*?)>(.*?)</a>#is', '<a href="#" onclick="return false;">\\2</a>', $c);
+ − 2916
break;
+ − 2917
case BLOCK_PLUGIN:
+ − 2918
$c = ($template->fetch_block($row['block_content'])) ? $template->fetch_block($row['block_content']) : 'Can\'t find plugin block';
+ − 2919
break;
+ − 2920
}
+ − 2921
die('var status = \'GOOD\'; var content = unescape(\''.hexencode($c).'\');');
+ − 2922
break;
+ − 2923
}
+ − 2924
}
+ − 2925
+ − 2926
$q = $db->sql_query('SELECT item_id,sidebar_id,item_enabled,block_name,block_type,block_content FROM '.table_prefix.'sidebar ORDER BY sidebar_id ASC, item_order ASC;');
+ − 2927
if(!$q) $db->_die('The sidebar text data could not be selected.');
+ − 2928
+ − 2929
$vars = $template->extract_vars('sidebar-editor.tpl');
+ − 2930
+ − 2931
$parser = $template->makeParserText($vars['sidebar_button']);
+ − 2932
$parser->assign_vars(Array(
+ − 2933
'HREF'=>'#',
+ − 2934
'FLAGS'=>'onclick="return false;"',
+ − 2935
'TEXT'=>'Change theme'
+ − 2936
));
+ − 2937
$template->tpl_strings['THEME_LINK'] = $parser->run();
+ − 2938
$parser->assign_vars(Array(
+ − 2939
'TEXT'=>'Log out',
+ − 2940
));
+ − 2941
$template->tpl_strings['LOGOUT_LINK'] = $parser->run();
+ − 2942
+ − 2943
$n1 = Array();
+ − 2944
$n2 = Array();
+ − 2945
$n =& $n1;
+ − 2946
+ − 2947
echo '<table border="0"><tr><td valign="top"><div class="dbx-group" id="sbedit_left">';
+ − 2948
//if(isset($vars['sidebar_top'])) echo $template->parse($vars['sidebar_top']);
+ − 2949
+ − 2950
// Time for the loop
+ − 2951
// what this loop does is fetch the row data, then send it out to the appropriate parser for formatting,
+ − 2952
// then puts the result into $c, which is then sent to the template compiler for insertion into the TPL code.
+ − 2953
while($row = $db->fetchrow())
+ − 2954
{
+ − 2955
if(isset($current_side))
+ − 2956
{
+ − 2957
if($current_side != $row['sidebar_id'])
+ − 2958
{
+ − 2959
// Time to switch!
+ − 2960
//if(isset($vars['sidebar_top'])) echo $template->parse($vars['sidebar_bottom']);
+ − 2961
echo '</div></td><td valign="top"><div class="dbx-group" id="sbedit_right">';
+ − 2962
//echo '</td><td valign="top">';
+ − 2963
//if(isset($vars['sidebar_top'])) echo $template->parse($vars['sidebar_top']);
+ − 2964
$n =& $n2;
+ − 2965
}
+ − 2966
}
+ − 2967
$n[] = count($n);
+ − 2968
$current_side = $row['sidebar_id'];
+ − 2969
switch($row['block_type'])
+ − 2970
{
+ − 2971
case BLOCK_WIKIFORMAT:
+ − 2972
default:
+ − 2973
$parser = $template->makeParserText($vars['sidebar_section']);
+ − 2974
$c = RenderMan::render($row['block_content']);
+ − 2975
break;
+ − 2976
case BLOCK_TEMPLATEFORMAT:
+ − 2977
$parser = $template->makeParserText($vars['sidebar_section']);
+ − 2978
$c = $template->tplWikiFormat($row['block_content'], false, 'sidebar-editor.tpl');
+ − 2979
$c = preg_replace('#<a (.*?)>(.*?)</a>#is', '<a href="#" onclick="return false;">\\2</a>', $c);
+ − 2980
break;
+ − 2981
case BLOCK_HTML:
+ − 2982
$parser = $template->makeParserText($vars['sidebar_section_raw']);
+ − 2983
$c = $row['block_content'];
+ − 2984
$c = preg_replace('#<a (.*?)>(.*?)</a>#is', '<a href="#" onclick="return false;">\\2</a>', $c);
+ − 2985
break;
+ − 2986
case BLOCK_PHP:
+ − 2987
$parser = $template->makeParserText($vars['sidebar_section_raw']);
+ − 2988
ob_start();
+ − 2989
eval($row['block_content']);
+ − 2990
$c = ob_get_contents();
+ − 2991
ob_end_clean();
+ − 2992
$c = preg_replace('#<a (.*?)>(.*?)</a>#is', '<a href="#" onclick="return false;">\\2</a>', $c);
+ − 2993
break;
+ − 2994
case BLOCK_PLUGIN:
+ − 2995
$parser = $template->makeParserText($vars['sidebar_section_raw']);
+ − 2996
$c = ($template->fetch_block($row['block_content'])) ? $template->fetch_block($row['block_content']) : 'Can\'t find plugin block';
+ − 2997
break;
+ − 2998
}
+ − 2999
$t = $template->tplWikiFormat($row['block_name']);
+ − 3000
if($row['item_enabled'] == 0) $t .= ' <span id="disabled_'.$row['item_id'].'" style="color: red;">(disabled)</span>';
+ − 3001
else $t .= ' <span id="disabled_'.$row['item_id'].'" style="color: red; display: none;">(disabled)</span>';
+ − 3002
$side = ( $row['sidebar_id'] == SIDEBAR_LEFT ) ? SIDEBAR_RIGHT : SIDEBAR_LEFT;
+ − 3003
$tb = '<a title="Enable or disable this block" href="'.makeUrl($paths->page, 'action=disenable&id='.$row['item_id'].'' , true).'" onclick="ajaxDisenableBlock(\''.$row['item_id'].'\'); return false;" ><img alt="Enable/disable this block" style="border-width: 0;" src="'.scriptPath.'/images/disenable.png" /></a>
+ − 3004
<a title="Edit the contents of this block" href="'.makeUrl($paths->page, 'action=edit&id='.$row['item_id'].'' , true).'" onclick="ajaxEditBlock(\''.$row['item_id'].'\', this); return false;"><img alt="Edit this block" style="border-width: 0;" src="'.scriptPath.'/images/edit.png" /></a>
+ − 3005
<a title="Permanently delete this block" href="'.makeUrl($paths->page, 'action=delete&id='.$row['item_id'].'' , true).'" onclick="if(confirm(\'Do you really want to delete this block?\')) { ajaxDeleteBlock(\''.$row['item_id'].'\', this); } return false;"><img alt="Delete this block" style="border-width: 0;" src="'.scriptPath.'/images/delete.png" /></a>
+ − 3006
<a title="Move this block to the other sidebar" href="'.makeUrl($paths->page, 'action=move&id='.$row['item_id'].'&side='.$side, true).'"><img alt="Move this block" style="border-width: 0;" src="'.scriptPath.'/images/move.png" /></a>';
+ − 3007
$as = '';
+ − 3008
$ae = ' '.$tb;
+ − 3009
$parser->assign_vars(Array('CONTENT'=>$c,'TITLE'=>$t,'ADMIN_START'=>$as,'ADMIN_END'=>$ae));
+ − 3010
echo $parser->run();
+ − 3011
unset($parser);
+ − 3012
+ − 3013
}
+ − 3014
$db->free_result();
+ − 3015
//if(isset($vars['sidebar_top'])) echo $template->parse($vars['sidebar_bottom']);
+ − 3016
echo '</div></td></tr></table>';
+ − 3017
echo '<form action="'.makeUrl($paths->page).'" method="post">';
+ − 3018
$order = implode(',', $n1);
+ − 3019
echo "<input type='hidden' id='divOrder_Left' name='order_left' value='{$order}' />";
+ − 3020
$order = implode(',', $n2);
+ − 3021
echo "<input type='hidden' id='divOrder_Right' name='order_right' value='{$order}' />";
+ − 3022
echo '
+ − 3023
<div style="margin: 0 auto 0 auto; text-align: center;">
+ − 3024
<input type="submit" name="save" style="font-weight: bold;" value="Save changes" />
+ − 3025
<input type="submit" name="revert" style="font-weight: normal;" value="Revert" onclick="return confirm(\'Do you really want to revert your changes?\nNote: this does not revert edits or deletions, those are saved as soon as you confirm the action.\')" />
+ − 3026
<br />
+ − 3027
<a href="'.makeUrl($paths->page, 'action=new&id=0', true).'">Create new block</a> | <a href="'.makeUrl(getConfig('main_page'), false, true).'">Main Page</a>
+ − 3028
</div>
+ − 3029
</form>
+ − 3030
';
+ − 3031
}
+ − 3032
+ − 3033
$template->footer();
+ − 3034
}
+ − 3035
+ − 3036
?>