6d0f680f912ce21e153055a3642d5bc2f06b9860
[mailer.git] / inc / modules / admin / admin-inc.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 08/31/2003 *
4  * ===================                          Last change: 11/23/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : admin-inc.php                                    *
8  * -------------------------------------------------------------------- *
9  * Short description : Administrative related functions                 *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Fuer die Administration benoetigte Funktionen    *
12  * -------------------------------------------------------------------- *
13  * $Revision::                                                        $ *
14  * $Date::                                                            $ *
15  * $Tag:: 0.2.1-FINAL                                                 $ *
16  * $Author::                                                          $ *
17  * Needs to be in all Files and every File needs "svn propset           *
18  * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
19  * -------------------------------------------------------------------- *
20  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
21  * Copyright (c) 2009, 2010 by Mailer Developer Team                    *
22  * For more information visit: http://www.mxchange.org                  *
23  *                                                                      *
24  * This program is free software; you can redistribute it and/or modify *
25  * it under the terms of the GNU General Public License as published by *
26  * the Free Software Foundation; either version 2 of the License, or    *
27  * (at your option) any later version.                                  *
28  *                                                                      *
29  * This program is distributed in the hope that it will be useful,      *
30  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
31  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
32  * GNU General Public License for more details.                         *
33  *                                                                      *
34  * You should have received a copy of the GNU General Public License    *
35  * along with this program; if not, write to the Free Software          *
36  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
37  * MA  02110-1301  USA                                                  *
38  ************************************************************************/
39
40 // Some security stuff...
41 if (!defined('__SECURITY')) {
42         die();
43 } // END - if
44
45 // Register an administrator account
46 function addAdminAccount ($adminLogin, $passHash, $adminEmail) {
47         // Login does already exist
48         $ret = 'already';
49
50         // Lookup the admin
51         $result = SQL_QUERY_ESC("SELECT `id` FROM `{?_MYSQL_PREFIX?}_admins` WHERE `login`='%s' LIMIT 1",
52                 array($adminLogin), __FUNCTION__, __LINE__);
53
54         // Is the entry there?
55         if (SQL_NUMROWS($result) == '0') {
56                 // Ok, let's create the admin login
57                 SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_admins` (`login`, `password`, `email`) VALUES ('%s', '%s', '%s')",
58                         array(
59                                 $adminLogin,
60                                 $passHash,
61                                 $adminEmail
62                         ), __FUNCTION__, __LINE__);
63
64                 // All done
65                 $ret = 'done';
66         } // END - if
67
68         // Free memory
69         SQL_FREERESULT($result);
70
71         // Return result
72         return $ret;
73 }
74
75 // This function will be executed when the admin is not logged in and has submitted his login data
76 function ifAdminLoginDataIsValid ($adminLogin, $adminPassword) {
77         // First of all, no admin login is found
78         $ret = '404';
79
80         // Then we need to lookup the login name by getting the admin hash
81         $adminHash = getAdminHash($adminLogin);
82
83         // If this is fine, we can continue
84         if ($adminHash != '-1') {
85                 // Get admin id and set it as current
86                 setCurrentAdminId(getAdminId($adminLogin));
87
88                 // Now, we need to encode the password in the same way the one is encoded in database
89                 $testHash = generateHash($adminPassword, $adminHash);
90
91                 // If they both match, the login data is valid
92                 if ($testHash == $adminHash) {
93                         // All fine
94                         $ret = 'done';
95                 } else {
96                         // Set status
97                         $ret = 'pass';
98                 }
99         } // END - if
100
101         // Prepare data array
102         $data = array(
103                 'login'      => $adminLogin,
104                 'plain_pass' => $adminPassword,
105                 'pass_hash'  => $adminHash
106         );
107
108         // Run a special filter
109         runFilterChain('do_admin_login_' . $ret, $data);
110
111         // Return status
112         return $ret;
113 }
114
115 // Only be executed on cookie checking
116 function ifAdminCookiesAreValid ($adminLogin, $passHash) {
117         // First of all, no admin login is found
118         $ret = '404';
119
120         // Then we need to lookup the login name by getting the admin hash
121         $adminHash = getAdminHash($adminLogin);
122
123         // If this is fine, we can continue
124         if ($adminHash != '-1') {
125                 // Now, we need to encode the password in the same way the one is encoded in database
126                 $testHash = encodeHashForCookie($adminHash);
127                 //* DEBUG: */ outputHtml('adminLogin='.$adminLogin.',<br />passHash='.$passHash.',<br />adminHash='.$adminHash.',<br />testHash='.$testHash.'<br />');
128
129                 // If they both match, the login data is valid
130                 if ($testHash == $passHash) {
131                         // All fine
132                         $ret = 'done';
133                 } else {
134                         // Set status
135                         $ret = 'pass';
136                 }
137         } // END - if
138
139         // Return status
140         //* DEBUG: */ outputHtml('ret='.$ret);
141         return $ret;
142 }
143
144 // Do an admin action
145 function doAdminAction () {
146         // Get default what
147         $what = getWhat();
148
149         //* DEBUG: */ outputHtml(__LINE__.'*'.$what.'/'.getModule().'/'.getAction().'/'.getWhat().'*<br />');
150
151         // Remove any spaces from variable
152         if (empty($what)) {
153                 // Default admin action is the overview page
154                 $what = 'overview';
155         } else {
156                 // Secure it
157                 $what = secureString($what);
158         }
159
160         // Get action value
161         $action = getActionFromModuleWhat(getModule(), $what);
162
163         // Define admin login name and id number
164         $content['login'] = getSession('admin_login');
165         $content['id']    = getCurrentAdminId();
166
167         // Preload templates
168         if (isExtensionActive('admins')) {
169                 $content['welcome'] = loadTemplate('admin_welcome_admins', true, $content);
170         } else {
171                 $content['welcome'] = loadTemplate('admin_welcome', true, $content);
172         }
173         $content['footer'] = loadTemplate('admin_footer' , true, $content);
174         $content['menu']   = addAdminMenu($action, $what, true);
175
176         // Tableset header
177         loadTemplate('admin_main_header', false, $content);
178
179         // Check if action/what pair is valid
180         $result_action = SQL_QUERY_ESC("SELECT
181         `id`
182 FROM
183         `{?_MYSQL_PREFIX?}_admin_menu`
184 WHERE
185         `action`='%s' AND
186         (
187                 (
188                         `what`='%s' AND `what` != 'overview'
189                 ) OR (
190                         (
191                                 `what`='' OR `what` IS NULL
192                         ) AND (
193                                 '%s'='overview'
194                         )
195                 )
196         )
197 LIMIT 1",
198                 array(
199                         $action,
200                         $what,
201                         $what
202                 ), __FUNCTION__, __LINE__);
203
204         // Do we have an entry?
205         if (SQL_NUMROWS($result_action) == 1) {
206                 // Is valid but does the inlcude file exists?
207                 $inc = sprintf("inc/modules/admin/action-%s.php", $action);
208                 if ((isIncludeReadable($inc)) && (isMenuActionValid('admin', $action, $what)) && ($GLOBALS['acl_allow'] === true)) {
209                         // Ok, we finally load the admin action module
210                         loadInclude($inc);
211                 } elseif ($GLOBALS['acl_allow'] === false) {
212                         // Access denied
213                         loadTemplate('admin_menu_failed', false, getMaskedMessage('ADMIN_ACCESS_DENIED', $what));
214                 } else {
215                         // Include file not found! :-(
216                         loadTemplate('admin_menu_failed', false, getMaskedMessage('ADMIN_ACTION_404', $action));
217                 }
218         } else {
219                 // Invalid action/what pair found!
220                 loadTemplate('admin_menu_failed', false, getMaskedMessage('ADMIN_ACTION_INVALID', $action . '/' . $what));
221         }
222
223         // Free memory
224         SQL_FREERESULT($result_action);
225
226         // Tableset footer
227         loadTemplate('admin_main_footer', false, $content);
228 }
229
230 // Adds an admin menu
231 function addAdminMenu ($action, $what, $return=false) {
232         // Init variables
233         $SUB = false;
234         $OUT = '';
235
236         // Menu descriptions
237         $GLOBALS['menu']['description'] = array();
238         $GLOBALS['menu']['title'] = array();
239
240         // Build main menu
241         $result_main = SQL_QUERY("SELECT
242         `action`, `title`, `descr`
243 FROM
244         `{?_MYSQL_PREFIX?}_admin_menu`
245 WHERE
246         (`what`='' OR `what` IS NULL)
247 ORDER BY
248         `sort` ASC,
249         `id` DESC", __FUNCTION__, __LINE__);
250
251         // Do we have entries?
252         if (SQL_NUMROWS($result_main) > 0) {
253                 $OUT .= '<ul class="admin_menu_main">';
254                 // @TODO Rewrite this to $content = SQL_FETCHARRAY()
255                 while (list($menu, $title, $descr) = SQL_FETCHROW($result_main)) {
256                         if ((isExtensionActive('admins')) && (getExtensionVersion('admins') > '0.2.0')) {
257                                 $ACL = adminsCheckAdminAcl($menu, '');
258                         } else {
259                                 // @TODO ACL is 'allow'... hmmm
260                                 $ACL = true;
261                         }
262
263                         // Filename
264                         $inc = sprintf("inc/modules/admin/action-%s.php", $menu);
265
266                         // Is the file readable?
267                         $readable = isIncludeReadable($inc);
268
269                         if ($ACL === true) {
270                                 if ($SUB === false) {
271                                         // Insert compiled menu title and description
272                                         $GLOBALS['menu']['title'][$menu]      = $title;
273                                         $GLOBALS['menu']['description'][$menu] = $descr;
274                                 }
275                                 $OUT .= '<li class="admin_menu">
276 <div class="nobr"><strong>&middot;</strong>&nbsp;';
277
278                                 if ($readable === true) {
279                                         if (($menu == $action) && (empty($what))) {
280                                                 $OUT .= '<strong>';
281                                         } else {
282                                                 $OUT .= '[<a href="{%url=modules.php?module=admin&amp;action=' . $menu . '%}">';
283                                         }
284                                 } else {
285                                         $OUT .= '<em style="cursor:help" class="admin_note" title="{--MENU_ACTION_404--}">';
286                                 }
287
288                                 $OUT .= $title;
289
290                                 if ($readable === true) {
291                                         if (($menu == $action) && (empty($what))) {
292                                                 $OUT .= '</strong>';
293                                         } else {
294                                                 $OUT .= '</a>]';
295                                         }
296                                 } else {
297                                         $OUT .= '</em>';
298                                 }
299
300                                 $OUT .= '</div>
301 </li>';
302
303                                 // Check for menu entries
304                                 $result_what = SQL_QUERY_ESC("SELECT
305         `what`, `title`, `descr`
306 FROM
307         `{?_MYSQL_PREFIX?}_admin_menu`
308 WHERE
309         `action`='%s' AND
310         `what` != '' AND
311         `what` IS NOT NULL
312 ORDER BY
313         `sort` ASC,
314         `id` DESC",
315                                         array($menu), __FUNCTION__, __LINE__);
316
317                                 // Remember the count for later checks
318                                 setAdminMenuHasEntries($menu, ((SQL_NUMROWS($result_what) > 0) && ($action == $menu)));
319
320                                 // Do we have entries?
321                                 if ((ifAdminMenuHasEntries($menu)) && (SQL_NUMROWS($result_what) > 0)) {
322                                         $GLOBALS['menu']['description'] = array();
323                                         $GLOBALS['menu']['title'] = array(); $SUB = true;
324                                         $OUT .= '<li class="admin_menu_sub"><ul class="admin_menu_sub">';
325                                         // @TODO Rewrite this to $content = SQL_FETCHARRAY()
326                                         while (list($what_sub, $title_what, $desc_what) = SQL_FETCHROW($result_what)) {
327                                                 // Check for access level
328                                                 if ((isExtensionActive('admins')) && (getExtensionVersion('admins') > '0.2.0')) {
329                                                         $ACL = adminsCheckAdminAcl('', $what_sub);
330                                                 } else {
331                                                         // @TODO ACL is 'allow'... hmmm
332                                                         $ACL = true;
333                                                 }
334
335                                                 // Filename
336                                                 $inc = sprintf("inc/modules/admin/what-%s.php", $what_sub);
337
338                                                 // Is the file readable?
339                                                 $readable = isIncludeReadable($inc);
340
341                                                 // Access allowed?
342                                                 if ($ACL === true) {
343                                                         // Insert compiled title and description
344                                                         $GLOBALS['menu']['title'][$what_sub]      = $title_what;
345                                                         $GLOBALS['menu']['description'][$what_sub] = $desc_what;
346                                                         $OUT .= '<li class="admin_menu">
347 <div class="nobr"><strong>--&gt;</strong>&nbsp;';
348                                                         if ($readable === true) {
349                                                                 if ($what == $what_sub) {
350                                                                         $OUT .= '<strong>';
351                                                                 } else {
352                                                                         $OUT .= '[<a href="{%url=modules.php?module=admin&amp;what=' . $what_sub . '%}">';
353                                                                 }
354                                                         } else {
355                                                                 $OUT .= '<em style="cursor:help" class="admin_note" title="{--MENU_WHAT_404--}">';
356                                                         }
357
358                                                         $OUT .= $title_what;
359
360                                                         if ($readable === true) {
361                                                                 if ($what == $what_sub) {
362                                                                         $OUT .= '</strong>';
363                                                                 } else {
364                                                                         $OUT .= '</a>]';
365                                                                 }
366                                                         } else {
367                                                                 $OUT .= '</em>';
368                                                         }
369                                                         $OUT .= '</div>
370 </li>';
371                                                 } // END - if
372                                         } // END - while
373
374                                         // Free memory
375                                         SQL_FREERESULT($result_what);
376                                         $OUT .= '</ul>
377 </li>';
378                                 } // END - if
379                         } // END - if
380                 } // END - while
381
382                 // Free memory
383                 SQL_FREERESULT($result_main);
384                 $OUT .= '</ul>';
385         }
386
387         // Is there a cache instance again?
388         // Return or output content?
389         if ($return === true) {
390                 return $OUT;
391         } else {
392                 outputHtml($OUT);
393         }
394 }
395
396 // Create member selection box
397 function addMemberSelectionBox ($def=0, $add_all=false, $return=false, $none=false, $field='userid') {
398         // Output selection form with all confirmed user accounts listed
399         $result = SQL_QUERY("SELECT `userid`, `surname`, `family` FROM `{?_MYSQL_PREFIX?}_user_data` ORDER BY `userid` ASC", __FUNCTION__, __LINE__);
400
401         // Default output
402         $OUT = '';
403
404         // USe this only for adding points (e.g. adding refs really makes no sence ;-) )
405         if ($add_all === true)   $OUT = '      <option value="all">{--ALL_MEMBERS--}</option>';
406          elseif ($none === true) $OUT = '      <option value="0">{--SELECT_NONE--}</option>';
407
408         while ($content = SQL_FETCHARRAY($result)) {
409                 $OUT .= '      <option value="' . bigintval($content['userid']) . '"';
410                 if ($def == $content['userid']) $OUT .= ' selected="selected"';
411                 $OUT .= '>' . $content['surname'] . ' ' . $content['family'] . ' (' . bigintval($content['userid']) . ')</option>';
412         } // END - while
413
414         // Free memory
415         SQL_FREERESULT($result);
416
417         if ($return === false) {
418                 // Remeber options in constant
419                 $content['member_selection'] = $OUT;
420                 $content['what']             = getWhat();
421
422                 // Load template
423                 loadTemplate('admin_member_selection_box', false, $content);
424         } else {
425                 // Return content in selection frame
426                 return '<select class="admin_select" name="' . $field . '" size="1">' . $OUT . '</select>';
427         }
428 }
429
430 // Create a menu selection box for given menu system
431 // @TODO Try to rewrite this to adminAddMenuSelectionBox()
432 // @DEPRECATED
433 function adminMenuSelectionBox_DEPRECATED ($mode, $default = '', $defid = '') {
434         $what = "`what` != ''";
435         if ($mode == 'action') $what = "(`what`='' OR `what` IS NULL) AND `action` !='login'";
436
437         $result = SQL_QUERY_ESC("SELECT %s, `title` FROM `{?_MYSQL_PREFIX?}_admin_menu` WHERE ".$what." ORDER BY `sort` ASC",
438                 array($mode), __FUNCTION__, __LINE__);
439         if (SQL_NUMROWS($result) > 0) {
440                 // Load menu as selection
441                 $OUT = "<select name=\"".$mode."_menu";
442                 if ((!empty($defid)) || ($defid == '0')) $OUT .= "[".$defid."]";
443                 $OUT .= "\" size=\"1\" class=\"admin_select\">
444         <option value=\"\">{--SELECT_NONE--}</option>\n";
445                 // @TODO Try to rewrite this to $content = SQL_FETCHARRAY(). Please look some lines above for the dynamic query
446                 while (list($menu, $title) = SQL_FETCHROW($result)) {
447                         $OUT .= "  <option value=\"".$menu."\"";
448                         if ((!empty($default)) && ($default == $menu)) $OUT .= ' selected="selected"';
449                         $OUT .= ">".$title."</option>\n";
450                 } // END - while
451
452                 // Free memory
453                 SQL_FREERESULT($result);
454                 $OUT .= "</select>\n";
455         } else {
456                 // No menus???
457                 $OUT = getMessage('ADMIN_PROBLEM_NO_MENU');
458         }
459
460         // Return output
461         return $OUT;
462 }
463
464 // Wrapper for $_POST and adminSaveSettings
465 function adminSaveSettingsFromPostData ($tableName = '_config', $whereStatement = '`config`=0', $translateComma = array(), $alwaysAdd = false, $displayMessage = true) {
466         // Get the array
467         $postData = postRequestArray();
468
469         // Call the lower function
470         adminSaveSettings($postData, $tableName, $whereStatement, $translateComma, $alwaysAdd, $displayMessage);
471 }
472
473 // Save settings to the database
474 function adminSaveSettings (&$postData, $tableName = '_config', $whereStatement = '`config`=0', $translateComma = array(), $alwaysAdd = false, $displayMessage = true) {
475         // Prepare all arrays, variables
476         $tableData = array();
477         $skip = false;
478
479         // Now, walk through all entries and prepare them for saving
480         foreach ($postData as $id => $val) {
481                 // Process only formular field but not submit buttons ;)
482                 if ($id != 'ok') {
483                         // Do not save the ok value
484                         convertSelectionsToTimestamp($postData, $tableData, $id, $skip);
485
486                         // Shall we process this id? It muss not be empty, of course
487                         if (($skip === false) && (!empty($id)) && ((!isset($GLOBALS['skip_config'][$id]))) || ($tableName != '_config')) {
488                                 // Translate the value? (comma to dot!)
489                                 if ((is_array($translateComma)) && (in_array($id, $translateComma))) {
490                                         // Then do it here... :)
491                                         $val = convertCommaToDot($val);
492                                 } // END - if
493
494                                 // Shall we add numbers or strings?
495                                 $test = (float)$val;
496                                 if ('' . $val . '' == '' . $test . '') {
497                                         // Add numbers
498                                         $tableData[] = sprintf("`%s`=%s", $id, $test);
499                                 } else {
500                                         // Add strings
501                                         $tableData[] = sprintf("`%s`='%s'", $id, trim($val));
502                                 }
503
504                                 // Do not add a config entry twice
505                                 $GLOBALS['skip_config'][$id] = true;
506
507                                 // Update current configuration
508                                 setConfigEntry($id, $val);
509                         } // END - if
510                 } // END - if
511         } // END - foreach
512
513         // Check if entry does exist
514         $result = false;
515         if ($alwaysAdd === false) {
516                 if (!empty($whereStatement)) {
517                         $result = SQL_QUERY("SELECT * FROM `{?_MYSQL_PREFIX?}" . $tableName . "` WHERE " . $whereStatement . " LIMIT 1", __FUNCTION__, __LINE__);
518                 } else {
519                         $result = SQL_QUERY("SELECT * FROM `{?_MYSQL_PREFIX?}" . $tableName . "` LIMIT 1", __FUNCTION__, __LINE__);
520                 }
521         } // END - if
522
523         if (SQL_NUMROWS($result) == 1) {
524                 // "Implode" all data to single string
525                 $updatedData = implode(', ', $tableData);
526
527                 // Generate SQL string
528                 $sql = sprintf("UPDATE `{?_MYSQL_PREFIX?}%s` SET %s WHERE %s LIMIT 1",
529                         $tableName,
530                         $updatedData,
531                         $whereStatement
532                 );
533         } else {
534                 // Add Line (does only work with auto_increment!
535                 $keys = array(); $values = array();
536                 foreach ($tableData as $entry) {
537                         // Split up
538                         $line = explode('=', $entry);
539                         $keys[] = $line[0];
540                         $values[] = $line[1];
541                 } // END - foreach
542
543                 // Add both in one line
544                 $keys = implode('`, `', $keys);
545                 $values = implode(', ', $values);
546
547                 // Generate SQL string
548                 $sql = sprintf("INSERT INTO `{?_MYSQL_PREFIX?}%s` (%s) VALUES (%s)",
549                         $tableName,
550                         $keys,
551                         $values
552                 );
553         }
554
555         // Free memory
556         SQL_FREERESULT($result);
557
558         // Simply run generated SQL string
559         SQL_QUERY($sql, __FUNCTION__, __LINE__);
560
561         // Remember affected rows
562         $affected = SQL_AFFECTEDROWS();
563
564         // Rebuild cache
565         rebuildCache('config', 'config');
566
567         // Settings saved, so display message?
568         if ($displayMessage === true) loadTemplate('admin_settings_saved', false, getMessage('SETTINGS_SAVED'));
569
570         // Return affected rows
571         return $affected;
572 }
573
574 // Generate a selection box
575 function adminAddMenuSelectionBox ($menu, $type, $name, $default = '') {
576         // Open the requested menu directory
577         $menuArray = getArrayFromDirectory(sprintf("inc/modules/%s/", $menu), '', false, false);
578
579         // Init the selection box
580         $OUT = "<select name=\"".$name."\" class=\"admin_select\" size=\"1\">
581         <option value=\"\">{--IS_TOP_MENU--}</option>\n";
582
583         // Walk through all files
584         foreach ($menuArray as $file) {
585                 // Is this a PHP script?
586                 if ((!isDirectory($file)) && (strpos($file, "".$type.'-') > -1) && (strpos($file, '.php') > 0)) {
587                         // Then test if the file is readable
588                         $test = sprintf("inc/modules/%s/%s", $menu, $file);
589
590                         // Is the file there?
591                         if (isIncludeReadable($test)) {
592                                 // Extract the value for what=xxx
593                                 $part = substr($file, (strlen($type) + 1));
594                                 $part = substr($part, 0, -4);
595
596                                 // Is that part different from the overview?
597                                 if ($part != 'overview') {
598                                         $OUT .= "       <option value=\"".$part."\"";
599                                         if ($part == $default) $OUT .= ' selected="selected"';
600                                         $OUT .= ">".$part."</option>\n";
601                                 } // END - if
602                         } // END - if
603                 } // END - if
604         } // END - foreach
605
606         // Close selection box
607         $OUT .= "</select>\n";
608
609         // Return contents
610         return $OUT;
611 }
612
613 // Creates a user-profile link for the admin. This function can also be used for many other purposes
614 function generateUserProfileLink ($userid, $title = '', $what = 'list_user') {
615         if (($title == '') && ($userid > 0)) {
616                 // Set userid as title
617                 $title = $userid;
618         } elseif ($userid == 0) {
619                 // User id zero is invalid
620                 return '<strong>' . $userid . '</strong>';
621         }
622
623         if (($title == '0') && ($what == 'list_refs')) {
624                 // Return title again
625                 return $title;
626         } elseif (isExtensionActive('nickname')) {
627                 // Get nickname
628                 $nick = getNickname($userid);
629
630                 // Is it not empty, use it as title else the userid
631                 if (!empty($nick)) $title = $nick . '(' . $userid . ')'; else $title = $userid;
632         }
633
634         // Return link
635         return '[<a href="{%url=modules.php?module=admin&amp;what=' . $what . '&amp;userid=' . $userid . '%}" title="{--ADMIN_USER_PROFILE_TITLE--}">' . $title . '</a>]';
636 }
637
638 // Check "logical-area-mode"
639 function adminGetMenuMode () {
640         // Set the default menu mode as the mode for all admins
641         $mode = getConfig('admin_menu');
642         $adminMode = $mode;
643
644         // Get admin id
645         $adminId = getCurrentAdminId();
646
647         // Check individual settings of current admin
648         if (isset($GLOBALS['cache_array']['admin']['la_mode'][$adminId])) {
649                 // Load from cache
650                 $adminMode = $GLOBALS['cache_array']['admin']['la_mode'][$adminId];
651                 incrementStatsEntry('cache_hits');
652         } elseif (isExtensionInstalledAndNewer('admins', '0.6.7')) {
653                 // Load from database when version of 'admins' is enough
654                 $result = SQL_QUERY_ESC("SELECT la_mode FROM `{?_MYSQL_PREFIX?}_admins` WHERE `id`=%s LIMIT 1",
655                         array($adminId), __FUNCTION__, __LINE__);
656
657                 // Do we have an entry?
658                 if (SQL_NUMROWS($result) == 1) {
659                         // Load data
660                         list($adminMode) = SQL_FETCHROW($result);
661                 } // END - if
662
663                 // Free memory
664                 SQL_FREERESULT($result);
665         }
666
667         // Check what the admin wants and set it when it's not the default mode
668         if ($adminMode != 'global') $mode = $adminMode;
669
670         // Return admin-menu's mode
671         return $mode;
672 }
673
674 // Change activation status
675 function adminChangeActivationStatus ($IDs, $table, $row, $idRow = 'id') {
676         $cnt = '0'; $newStatus = 'Y';
677         if ((is_array($IDs)) && (count($IDs) > 0)) {
678                 // "Walk" all through and count them
679                 foreach ($IDs as $id => $selected) {
680                         // Secure the id number
681                         $id = bigintval($id);
682
683                         // Should always be set... ;-)
684                         if (!empty($selected)) {
685                                 // Determine new status
686                                 $result = SQL_QUERY_ESC("SELECT %s FROM `{?_MYSQL_PREFIX?}_%s` WHERE %s=%s LIMIT 1",
687                                 array($row, $table, $idRow, $id), __FUNCTION__, __LINE__);
688
689                                 // Row found?
690                                 if (SQL_NUMROWS($result) == 1) {
691                                         // Load the status
692                                         list($currStatus) = SQL_FETCHROW($result);
693
694                                         // And switch it N<->Y
695                                         if ($currStatus == 'Y') $newStatus = 'N'; else $newStatus = 'Y';
696
697                                         // Change this status
698                                         SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_%s` SET %s='%s' WHERE %s=%s LIMIT 1",
699                                         array($table, $row, $newStatus, $idRow, $id), __FUNCTION__, __LINE__);
700
701                                         // Count up affected rows
702                                         $cnt += SQL_AFFECTEDROWS();
703                                 } // END - if
704
705                                 // Free the result
706                                 SQL_FREERESULT($result);
707                         } // END - if
708                 } // END - foreach
709
710                 // Output status
711                 loadTemplate('admin_settings_saved', false, sprintf(getMessage('ADMIN_STATUS_CHANGED'), $cnt, count($IDs)));
712         } else {
713                 // Nothing selected!
714                 loadTemplate('admin_settings_saved', false, getMessage('ADMIN_NOTHING_SELECTED_CHANGE'));
715         }
716 }
717
718 // Send mails for del/edit/lock build modes
719 function sendAdminBuildMails ($mode, $table, $content, $id, $subjectPart = '') {
720         // Default subject is the subject part
721         $subject = $subjectPart;
722
723         // Is the subject part not set?
724         if (empty($subjectPart)) {
725                 // Then use it from the mode
726                 $subject = strtoupper($mode);
727         } // END - if
728
729         // Is the raw userid set?
730         if (postRequestParameter('userid_raw', $id) > 0) {
731                 // Generate subject
732                 $subjectLine = getMessage('MEMBER_'.strtoupper($subject).'_'.strtoupper($table).'_SUBJECT');
733
734                 // Load email template
735                 if (!empty($subjectPart)) {
736                         $mail = loadEmailTemplate('member_' . $mode . '_' . strtolower($subjectPart) . '_' . $table, $content);
737                 } else {
738                         $mail = loadEmailTemplate('member_' . $mode . '_' . $table, $content);
739                 }
740
741                 // Send email out
742                 sendEmail(postRequestParameter('userid_raw', $id), $subjectLine, $mail);
743         } // END - if
744
745         // Generate subject
746         $subjectLine = getMessage('ADMIN_'.strtoupper($subject).'_'.strtoupper($table).'_SUBJECT');
747
748         // Send admin notification out
749         if (!empty($subjectPart)) {
750                 sendAdminNotification($subjectLine, 'admin_' . $mode . '_' . strtolower($subjectPart) . '_' . $table, $content, postRequestParameter('userid_raw', $id));
751         } else {
752                 sendAdminNotification($subjectLine, 'admin_' . $mode . '_' . $table, $content, postRequestParameter('userid_raw', $id));
753         }
754 }
755
756 // Build a special template list
757 function adminListBuilder ($listType, $IDs, $table, $columns, $filterFunctions, $extraValues, $idColumn, $userIdColumn) {
758         $OUT = ''; $SW = 2;
759
760         // "Walk" through all entries
761         foreach ($IDs as $id => $selected) {
762                 // Secure id number
763                 $id = bigintval($id);
764
765                 // Get result from a given column array and table name
766                 $result = SQL_RESULT_FROM_ARRAY($table, $columns, $idColumn, $id, __FUNCTION__, __LINE__);
767
768                 // Is there one entry?
769                 if (SQL_NUMROWS($result) == 1) {
770                         // Load all data
771                         $content = SQL_FETCHARRAY($result);
772
773                         // Filter all data
774                         foreach ($content as $key => $value) {
775                                 // Search index
776                                 $idx = array_search($key, $columns, true);
777
778                                 // Do we have a userid?
779                                 if ($key == 'userid') {
780                                         // Add it again as raw id
781                                         $content['userid'] = bigintval($value);
782                                 } // END - if
783
784                                 // Handle the call in external function
785                                 $content[$key] = handleExtraValues($filterFunctions[$idx], $value, $extraValues[$idx]);
786                         } // END - foreach
787
788                         // Add color switching
789                         $content['sw'] = $SW;
790
791                         // Then list it
792                         $OUT .= loadTemplate(sprintf("admin_%s_%s_row",
793                         $listType,
794                         $table
795                         ), true, $content
796                         );
797
798                         // Switch color
799                         $SW = 3 - $SW;
800                 } // END - if
801
802                 // Free the result
803                 SQL_FREERESULT($result);
804         } // END - foreach
805
806         // Load master template
807         loadTemplate(sprintf("admin_%s_%s",
808                 $listType,
809                 $table
810                 ), false, $OUT
811         );
812 }
813
814 // Change status of "build" list
815 function adminBuilderStatusHandler ($mode, $IDs, $table, $columns, $filterFunctions, $extraValues, $idColumn, $userIdColumn, $statusArray) {
816         // All valid entries? (We hope so here!)
817         if ((is_array($IDs)) && (count($IDs) > 0) && (count($columns) == count($filterFunctions)) && (count($columns) == count($extraValues)) && (count($statusArray) > 0)) {
818                 // "Walk" through all entries
819                 foreach ($IDs as $id => $sel) {
820                         // Construct SQL query
821                         $sql = sprintf("UPDATE `{?_MYSQL_PREFIX?}_%s` SET", SQL_ESCAPE($table));
822
823                         // Load data of entry
824                         $result = SQL_QUERY_ESC("SELECT * FROM `{?_MYSQL_PREFIX?}_%s` WHERE %s=%s LIMIT 1",
825                                 array($table, $idColumn, $id), __FUNCTION__, __LINE__);
826
827                         // Fetch the data
828                         $content = SQL_FETCHARRAY($result);
829
830                         // Free the result
831                         SQL_FREERESULT($result);
832
833                         // Add all status entries (e.g. status column last_updated or so)
834                         $newStatus = 'UNKNOWN';
835                         $oldStatus = 'UNKNOWN';
836                         $statusColumn = 'unknown';
837                         foreach ($statusArray as $column => $statusInfo) {
838                                 // Does the entry exist?
839                                 if ((isset($content[$column])) && (isset($statusInfo[$content[$column]]))) {
840                                         // Add these entries for update
841                                         $sql .= sprintf(" %s='%s',", SQL_ESCAPE($column), SQL_ESCAPE($statusInfo[$content[$column]]));
842
843                                         // Remember status
844                                         if ($statusColumn == 'unknown') {
845                                                 // Always (!!!) change status column first!
846                                                 $oldStatus = $content[$column];
847                                                 $newStatus = $statusInfo[$oldStatus];
848                                                 $statusColumn = $column;
849                                         } // END - if
850                                 } elseif (isset($content[$column])) {
851                                         // Unfinished!
852                                         app_die(__FUNCTION__, __LINE__, ":UNFINISHED: id={$id}/{$column}[".gettype($statusInfo)."] = {$content[$column]}");
853                                 }
854                         } // END - foreach
855
856                         // Add other columns as well
857                         foreach (postRequestArray() as $key => $entries) {
858                                 // Skip id, raw userid and 'do_$mode'
859                                 if (!in_array($key, array($idColumn, 'userid_raw', ('do_'.$mode)))) {
860                                         // Are there brackets () at the end?
861                                         if (substr($entries[$id], -2, 2) == "()") {
862                                                 // Direct SQL command found
863                                                 $sql .= sprintf(" %s=%s,", SQL_ESCAPE($key), SQL_ESCAPE($entries[$id]));
864                                         } else {
865                                                 // Add regular entry
866                                                 $sql .= sprintf(" %s='%s',", SQL_ESCAPE($key), SQL_ESCAPE($entries[$id]));
867
868                                                 // Add entry
869                                                 $content[$key] = $entries[$id];
870                                         }
871                                 } // END - if
872                         } // END - foreach
873
874                         // Finish SQL statement
875                         $sql = substr($sql, 0, -1) . sprintf(" WHERE `%s`=%s AND `%s`='%s' LIMIT 1",
876                                 $idColumn,
877                                 bigintval($id),
878                                 $statusColumn,
879                                 $oldStatus
880                         );
881
882                         // Run the SQL
883                         SQL_QUERY($sql, __FUNCTION__, __LINE__);
884
885                         // Do we have an URL?
886                         if (isset($content['url'])) {
887                                 // Then add a framekiller test as well
888                                 $content['frametester'] = generateFrametesterUrl($content['url']);
889                         } // END - if
890
891                         // Send "build mails" out
892                         sendAdminBuildMails($mode, $table, $content, $id, $statusInfo[$content[$column]]);
893                 } // END - foreach
894         } // END - if
895 }
896
897 // Delete rows by given id numbers
898 function adminDeleteEntriesConfirm ($IDs, $table, $columns=array(), $filterFunctions=array(), $extraValues=array(), $deleteNow=false, $idColumn='id', $userIdColumn='userid') {
899         // All valid entries? (We hope so here!)
900         if ((is_array($IDs)) && (count($IDs) > 0) && (count($columns) == count($filterFunctions)) && (count($columns) == count($extraValues))) {
901                 // Shall we delete here or list for deletion?
902                 if ($deleteNow === true) {
903                         // The base SQL command:
904                         $sql = "DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_%s` WHERE %s IN (%s)";
905
906                         // Delete them all
907                         $idList = '';
908                         foreach ($IDs as $id => $sel) {
909                                 // Is there a userid?
910                                 if (isPostRequestParameterSet('userid_raw', $id)) {
911                                         // Load all data from that id
912                                         $result = SQL_QUERY_ESC("SELECT * FROM `{?_MYSQL_PREFIX?}_%s` WHERE %s=%s LIMIT 1",
913                                         array($table, $idColumn, $id), __FUNCTION__, __LINE__);
914
915                                         // Fetch the data
916                                         $content = SQL_FETCHARRAY($result);
917
918                                         // Free the result
919                                         SQL_FREERESULT($result);
920
921                                         // Send "build mails" out
922                                         sendAdminBuildMails('del', $table, $content, $id);
923                                 } // END - if
924
925                                 // Add id number
926                                 $idList .= $id . ',';
927                         } // END - foreach
928
929                         // Run the query
930                         SQL_QUERY($sql, array($table, $idColumn, substr($idList, 0, -1)), __FUNCTION__, __LINE__);
931
932                         // Was this fine?
933                         if (SQL_AFFECTEDROWS() == count($IDs)) {
934                                 // All deleted
935                                 loadTemplate('admin_settings_saved', false, getMessage('ADMIN_ALL_ENTRIES_REMOVED'));
936                         } else {
937                                 // Some are still there :(
938                                 loadTemplate('admin_settings_saved', false, sprintf(getMessage('ADMIN_SOME_ENTRIES_NOT_DELETED'), SQL_AFFECTEDROWS(), count($IDs)));
939                         }
940                 } else {
941                         // List for deletion confirmation
942                         adminListBuilder('del', $IDs, $table, $columns, $filterFunctions, $extraValues, $idColumn, $userIdColumn);
943                 }
944         } // END - if
945 }
946
947 // Edit rows by given id numbers
948 function adminEditEntriesConfirm ($IDs, $table, $columns=array(), $filterFunctions=array(), $extraValues=array(), $editNow=false, $idColumn='id', $userIdColumn='userid') {
949         // All valid entries? (We hope so here!)
950         if ((is_array($IDs)) && (count($IDs) > 0) && (count($columns) == count($filterFunctions)) && (count($columns) == count($extraValues))) {
951                 // Shall we change here or list for editing?
952                 if ($editNow === true) {
953                         // Change them all
954                         $affected = '0';
955                         foreach ($IDs as $id => $sel) {
956                                 // Prepare content array (new values)
957                                 $content = array();
958
959                                 // Prepare SQL for this row
960                                 $sql = sprintf("UPDATE `{?_MYSQL_PREFIX?}_%s` SET",
961                                         SQL_ESCAPE($table)
962                                 );
963                                 foreach (postRequestArray() as $key => $entries) {
964                                         // Skip raw userid which is always invalid
965                                         if ($key == 'userid_raw') {
966                                                 // Continue with next field
967                                                 continue;
968                                         } // END - if
969
970                                         // Is entries an array?
971                                         if (($key != $idColumn) && (is_array($entries)) && (isset($entries[$id]))) {
972                                                 // Add this entry to content
973                                                 $content[$key] = $entries[$id];
974
975                                                 // Send data through the filter function if found
976                                                 if ((isset($filterFunctions[$key])) && (isset($extraValues[$key]))) {
977                                                         // Filter function set!
978                                                         $entries[$id] = handleExtraValues($filterFunctions[$key], $entries[$id], $extraValues[$key]);
979                                                 } // END - if
980
981                                                 // Then add this value
982                                                 $sql .= sprintf(" `%s`='%s',",
983                                                 SQL_ESCAPE($key),
984                                                 SQL_ESCAPE($entries[$id])
985                                                 );
986                                         } elseif (($key != $idColumn) && (!is_array($entries))) {
987                                                 // Add normal entries as well!
988                                                 $content[$key] =  $entries;
989                                         }
990
991                                         // Do we have an URL?
992                                         if ($key == 'url') {
993                                                 // Then add a framekiller test as well
994                                                 $content['frametester'] = generateFrametesterUrl($content[$key]);
995                                         } // END - if
996                                 } // END - foreach
997
998                                 // Finish SQL command
999                                 $sql = substr($sql, 0, -1) . " WHERE `" . $idColumn . "`=" . bigintval($id) . " LIMIT 1";
1000
1001                                 // Run this query
1002                                 SQL_QUERY($sql, __FUNCTION__, __LINE__);
1003
1004                                 // Add affected rows
1005                                 $affected += SQL_AFFECTEDROWS();
1006
1007                                 // Load all data from that id
1008                                 $result = SQL_QUERY_ESC("SELECT * FROM `{?_MYSQL_PREFIX?}_%s` WHERE `%s`=%s LIMIT 1",
1009                                         array($table, $idColumn, $id), __FUNCTION__, __LINE__);
1010
1011                                 // Fetch the data and merge it into $content
1012                                 $content = merge_array($content, SQL_FETCHARRAY($result));
1013
1014                                 // Free the result
1015                                 SQL_FREERESULT($result);
1016
1017                                 // Send "build mails" out
1018                                 sendAdminBuildMails('edit', $table, $content, $id);
1019                         } // END - foreach
1020
1021                         // Was this fine?
1022                         if ($affected == count($IDs)) {
1023                                 // All deleted
1024                                 loadTemplate('admin_settings_saved', false, getMessage('ADMIN_ALL_ENTRIES_EDITED'));
1025                         } else {
1026                                 // Some are still there :(
1027                                 loadTemplate('admin_settings_saved', false, sprintf(getMessage('ADMIN_SOME_ENTRIES_NOT_EDITED'), $affected, count($IDs)));
1028                         }
1029                 } else {
1030                         // List for editing
1031                         adminListBuilder('edit', $IDs, $table, $columns, $filterFunctions, $extraValues, $idColumn, $userIdColumn);
1032                 }
1033         } // END - if
1034 }
1035
1036 // Un-/lock rows by given id numbers
1037 function adminLockEntriesConfirm ($IDs, $table, $columns=array(), $filterFunctions=array(), $extraValues=array(), $statusArray=array(), $lockNow=false, $idColumn='id', $userIdColumn='userid') {
1038         // All valid entries? (We hope so here!)
1039         if ((is_array($IDs)) && (count($IDs) > 0) && (count($columns) == count($filterFunctions)) && (count($columns) == count($extraValues)) && (($lockNow === false) || (count($statusArray) == 1))) {
1040                 // Shall we un-/lock here or list for locking?
1041                 if ($lockNow === true) {
1042                         // Un-/lock entries
1043                         adminBuilderStatusHandler('lock', $IDs, $table, $columns, $filterFunctions, $extraValues, $idColumn, $userIdColumn, $statusArray);
1044                 } else {
1045                         // List for editing
1046                         adminListBuilder('lock', $IDs, $table, $columns, $filterFunctions, $extraValues, $idColumn, $userIdColumn);
1047                 }
1048         } // END - if
1049 }
1050
1051 // Undelete rows by given id numbers
1052 function adminUndeleteEntriesConfirm ($IDs, $table, $columns=array(), $filterFunctions=array(), $extraValues=array(), $statusArray=array(), $undeleteNow=false, $idColumn='id', $userIdColumn='userid') {
1053         // All valid entries? (We hope so here!)
1054         if ((is_array($IDs)) && (count($IDs) > 0) && (count($columns) == count($filterFunctions)) && (count($columns) == count($extraValues)) && (($undeleteNow === false) || (count($statusArray) == 1))) {
1055                 // Shall we un-/lock here or list for locking?
1056                 if ($undeleteNow === true) {
1057                         // Undelete entries
1058                         adminBuilderStatusHandler('undelete', $IDs, $table, $columns, $filterFunctions, $extraValues, $idColumn, $userIdColumn, $statusArray);
1059                 } else {
1060                         // List for editing
1061                         adminListBuilder('undelete', $IDs, $table, $columns, $filterFunctions, $extraValues, $idColumn, $userIdColumn);
1062                 }
1063         } // END - if
1064 }
1065
1066 // Checks proxy settins by fetching check-updates3.php from www.mxchange.org
1067 function adminTestProxySettings ($settingsArray) {
1068         // Set temporary the new settings
1069         mergeConfig($settingsArray);
1070
1071         // Now get the test URL
1072         $content = sendGetRequest('check-updates3.php');
1073
1074         // Is the first line with "200 OK"?
1075         $valid = (strpos($content[0], '200 OK') !== false);
1076
1077         // Return result
1078         return $valid;
1079 }
1080
1081 // Sends out a link to the given email adress so the admin can reset his/her password
1082 function sendAdminPasswordResetLink ($email) {
1083         // Init output
1084         $OUT = '';
1085
1086         // Look up administator login
1087         $result = SQL_QUERY_ESC("SELECT `id`, `login`, `password` FROM `{?_MYSQL_PREFIX?}_admins` WHERE `email`='%s' LIMIT 1",
1088                 array($email), __FUNCTION__, __LINE__);
1089
1090         // Is there an account?
1091         if (SQL_NUMROWS($result) == '0') {
1092                 // No account found!
1093                 return getMessage('ADMIN_NO_LOGIN_WITH_EMAIL');
1094         } // END - if
1095
1096         // Load all data
1097         $content = SQL_FETCHARRAY($result);
1098
1099         // Free result
1100         SQL_FREERESULT($result);
1101
1102         // Generate hash for reset link
1103         $content['hash'] = generateHash(getConfig('URL') . ':' . $content['id'] . ':' . $content['login'] . ':' . $content['password'], substr($content['password'], 10));
1104
1105         // Remove some data
1106         unset($content['id']);
1107         unset($content['password']);
1108
1109         // Prepare email
1110         $mailText = loadEmailTemplate('admin_reset_password', $content);
1111
1112         // Send it out
1113         sendEmail($email, getMessage('ADMIN_RESET_PASS_LINK_SUBJ'), $mailText);
1114
1115         // Prepare output
1116         return getMessage('ADMIN_RESET_LINK_SENT');
1117 }
1118
1119 // Validate hash and login for password reset
1120 function adminResetValidateHashLogin ($hash, $login) {
1121         // By default nothing validates... ;)
1122         $valid = false;
1123
1124         // Then try to find that user
1125         $result = SQL_QUERY_ESC("SELECT `id`, `password`, `email` FROM `{?_MYSQL_PREFIX?}_admins` WHERE `login`='%s' LIMIT 1",
1126                 array($login), __FUNCTION__, __LINE__);
1127
1128         // Is an account here?
1129         if (SQL_NUMROWS($result) == 1) {
1130                 // Load all data
1131                 $content = SQL_FETCHARRAY($result);
1132
1133                 // Generate hash again
1134                 $hashFromData = generateHash(getConfig('URL') . ':' . $content['id'] . ':' . $login . ':' . $content['password'], substr($content['password'], 10));
1135
1136                 // Does both match?
1137                 $valid = ($hash == $hashFromData);
1138         } // END - if
1139
1140         // Free result
1141         SQL_FREERESULT($result);
1142
1143         // Return result
1144         return $valid;
1145 }
1146
1147 // Reset the password for the login. Do NOT call this function without calling above function first!
1148 function doResetAdminPassword ($login, $password) {
1149         // Generate hash (we already check for sql_patches in generateHash())
1150         $passHash = generateHash($password);
1151
1152         // Update database
1153         SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_admins` SET `password`='%s' WHERE `login`='%s' LIMIT 1",
1154                 array($passHash, $login), __FUNCTION__, __LINE__);
1155
1156         // Run filters
1157         runFilterChain('post_admin_reset_pass', array('login' => $login, 'hash' => $passHash));
1158
1159         // Return output
1160         return getMessage('ADMIN_PASSWORD_RESET_DONE');
1161 }
1162
1163 // Solves a task by given id number
1164 function adminSolveTask ($id) {
1165         // Update the task data
1166         adminUpdateTaskData($id, 'status', 'SOLVED');
1167 }
1168
1169 // Marks a given task as deleted
1170 function adminDeleteTask ($id) {
1171         // Update the task data
1172         adminUpdateTaskData($id, 'status', 'DELETED');
1173 }
1174
1175 // Function to update task data
1176 function adminUpdateTaskData ($id, $row, $data) {
1177         // Should be admin!
1178         if (!isAdmin()) {
1179                 // Not an admin so redirect better
1180                 redirectToUrl('modules.php?module=index');
1181         } // END - if
1182
1183         // Is the id not set, then we need a backtrace here... :(
1184         if ($id <= 0) {
1185                 // Initiate backtrace
1186                 debug_report_bug(sprintf("id is invalid: %s. row=%s, data=%s",
1187                         $id,
1188                         $row,
1189                         $data
1190                 ));
1191         } // END - if
1192
1193         // Update the task
1194         SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_task_system` SET `%s`='%s' WHERE `id`=%s LIMIT 1",
1195                 array(
1196                         $row,
1197                         $data,
1198                         bigintval($id)
1199                 ), __FUNCTION__, __LINE__);
1200 }
1201
1202 // Checks wether if the admin menu has entries
1203 function ifAdminMenuHasEntries ($action) {
1204         return (
1205                 ((
1206                         // Is the entry set?
1207                         isset($GLOBALS['admin_menu_has_entries'][$action])
1208                 ) && (
1209                         // And do we have a menu for this action?
1210                         $GLOBALS['admin_menu_has_entries'][$action] === true
1211                 )) || (
1212                         // Login has always a menu
1213                         $action == 'login'
1214                 )
1215         );
1216 }
1217
1218 // Setter for 'admin_menu_has_entries'
1219 function setAdminMenuHasEntries ($action, $hasEntries) {
1220         $GLOBALS['admin_menu_has_entries'][$action] = (bool) $hasEntries;
1221 }
1222
1223 // Creates a link to the user's admin-profile
1224 function adminCreateUserLink ($userid) {
1225         // Is the userid set correctly?
1226         if ($userid > 0) {
1227                 // Create a link to that profile
1228                 return '{%url=modules.php?module=admin&amp;what=list_user&amp;userid=' . bigintval($userid) . '%}';
1229         } // END - if
1230
1231         // Return a link to the user list
1232         return '{%url=modules.php?module=admin&amp;what=list_user%}';
1233 }
1234
1235 // Generate a "link" for the given admin id (admin_id)
1236 function generateAdminLink ($adminId) {
1237         // No assigned admin is default
1238         $adminLink = '<span class="admin_note">{--ADMIN_NO_ADMIN_ASSIGNED--}</span>';
1239
1240         // Zero? = Not assigned
1241         if (bigintval($adminId) > 0) {
1242                 // Load admin's login
1243                 $login = getAdminLogin($adminId);
1244
1245                 // Is the login valid?
1246                 if ($login != '***') {
1247                         // Is the extension there?
1248                         if (isExtensionActive('admins')) {
1249                                 // Admin found
1250                                 $adminLink = '<a href="' . generateEmailLink(getAdminEmail($adminId), 'admins') . '" title="{--ADMIN_CONTACT_LINK_TITLE--}">' . $login . '</a>';
1251                         } else {
1252                                 // Extension not found
1253                                 $adminLink = getMaskedMessage('EXTENSION_PROBLEM_NOT_INSTALLED', 'admins');
1254                         }
1255                 } else {
1256                         // Maybe deleted?
1257                         $adminLink = '<div class="admin_note">' . getMaskedMessage('ADMIN_ID_404', $adminId) . '</div>';
1258                 }
1259         } // END - if
1260
1261         // Return result
1262         return $adminLink;
1263 }
1264
1265 // Verifies if the current admin has confirmed to alter expert settings
1266 //
1267 // Return values:
1268 // 'failed'    = Something goes wrong (default)
1269 // 'agreed'    = Has verified and and confirmed it to see them
1270 // 'forbidden' = Has not the proper right to alter them
1271 // 'update'    = Need to update extension 'admins'
1272 // 'ask'       = A form was send to the admin
1273 function doVerifyExpertSettings () {
1274         // Default return status is failed
1275         $return = 'failed';
1276
1277         // Is the extension installed and recent?
1278         if (isExtensionInstalledAndNewer('admins', '0.7.3')) {
1279                 // Okay, load the status
1280                 $expertSettings = getAminsExpertSettings();
1281
1282                 // Is he allowed?
1283                 if ($expertSettings == 'Y') {
1284                         // Okay, does he want to see them?
1285                         if (getAminsExpertWarning() == 'Y') {
1286                                 // Ask for them
1287                                 if (isFormSent()) {
1288                                         // Is the element set, then we need to change the admin
1289                                         if (isPostRequestParameterSet('expert_settings')) {
1290                                                 // Get it and prepare final post data array
1291                                                 $postData['login'][getCurrentAdminId()] = getAdminLogin(getCurrentAdminId());
1292                                                 $postData['expert_warning'][getCurrentAdminId()] = 'N';
1293
1294                                                 // Change it in the admin
1295                                                 adminsChangeAdminAccount($postData, 'expert_warning');
1296
1297                                                 // Clear form
1298                                                 unsetPostRequestParameter('ok');
1299                                         } // END - if
1300
1301                                         // All fine!
1302                                         $return = 'agreed';
1303                                 } else {
1304                                         // Send form
1305                                         loadTemplate('admin_expert_settings_form');
1306
1307                                         // Asked for it
1308                                         $return = 'ask';
1309                                 }
1310                         } else {
1311                                 // Do not display
1312                                 $return = 'agreed';
1313                         }
1314                 } else {
1315                         // Forbidden
1316                         $return = 'forbidden';
1317                 }
1318         } else {
1319                 // Out-dated extension or not installed
1320                 $return = 'update';
1321         }
1322
1323         // Output message for other status than ask/agreed
1324         if (($return != 'ask') && ($return != 'agreed')) {
1325                 // Output message
1326                 loadTemplate('admin_settings_saved', false, getMessage('ADMIN_EXPERT_SETTINGS_STATUS_' . strtoupper($return)));
1327         } // END - if
1328
1329         // Return status
1330         return $return;
1331 }
1332
1333 // [EOF]
1334 ?>