Zeile 3 | Zeile 3 |
---|
* MyBB 1.2 * Copyright � 2006 MyBB Group, All Rights Reserved *
|
* MyBB 1.2 * Copyright � 2006 MyBB Group, All Rights Reserved *
|
* Website: http://www.mybboard.com * License: http://www.mybboard.com/eula.html
| * Website: http://www.mybboard.net * License: http://www.mybboard.net/eula.html
|
*
|
*
|
* $Id: adminfunctions.php 2263 2006-09-26 09:24:25Z chris $
| * $Id: adminfunctions.php 2964 2007-03-26 03:03:33Z Tikitiki $
|
*/
$cssselectors = array(
| */
$cssselectors = array(
|
Zeile 116 | Zeile 116 |
---|
echo "<tr><td class=\"hoptobuttons\">"; if(!is_array($links)) {
|
echo "<tr><td class=\"hoptobuttons\">"; if(!is_array($links)) {
|
$links[] = $links;
| $links = array($links);
|
} foreach($links as $key => $val) {
| } foreach($links as $key => $val) {
|
Zeile 369 | Zeile 369 |
---|
} if(!is_array($options)) {
|
} if(!is_array($options)) {
|
$options[] = $options;
| $options = array($options);
|
} foreach($options as $value => $label) {
| } foreach($options as $value => $label) {
|
Zeile 891 | Zeile 891 |
---|
{ $mybbversion = $mybb->version; }
|
{ $mybbversion = $mybb->version; }
|
echo "<font size=\"1\" face=\"Verdana,Arial,Helvetica\">\n".$lang->footer_powered_by."\n<b>\n<a href=\"http://www.mybboard.com\" target=\"_blank\">MyBB</a> $mybbversion\n</b>\n<br />\n".$lang->footer_copyright." © 2002-".my_date("Y")." <a href=\"http://www.mybboard.com\">MyBB Group</a>\n<br />\n".$lang->footer_stats."\n</font>\n</div>\n";
| echo "<font size=\"1\" face=\"Verdana,Arial,Helvetica\">\n".$lang->footer_powered_by."\n<b>\n<a href=\"http://www.mybboard.net\" target=\"_blank\">MyBB</a> $mybbversion\n</b>\n<br />\n".$lang->footer_copyright." © 2002-".my_date("Y")." <a href=\"http://www.mybboard.net\">MyBB Group</a>\n<br />\n".$lang->footer_stats."\n</font>\n</div>\n";
|
echo "</body>\n"; echo "</html>"; }
| echo "</body>\n"; echo "</html>"; }
|
Zeile 971 | Zeile 971 |
---|
{ if(!is_array($values)) {
|
{ if(!is_array($values)) {
|
$values[] = $values;
| $values = array($values);
|
} foreach($values as $action => $title) {
| } foreach($values as $action => $title) {
|
Zeile 980 | Zeile 980 |
---|
$buttononchange = ""; if($onchange) {
|
$buttononchange = ""; if($onchange) {
|
$buttononchange = " onclick=\"{$onchange} this.form.submit(); return false;\""; $onchange .= " "; }
| $buttononchange = " onclick=\"{$onchange} this.form.submit(); return false;\""; $onchange .= " "; }
|
return "<select name=\"$name\" onchange=\"{$onchange}this.form.submit();\">\n$options</select>\n \n<input type=\"submit\" value=\"Go\"$buttononchange />\n"; }
| return "<select name=\"$name\" onchange=\"{$onchange}this.form.submit();\">\n$options</select>\n \n<input type=\"submit\" value=\"Go\"$buttononchange />\n"; }
|
Zeile 1119 | Zeile 1119 |
---|
{ $startforum = $cforumcache['fid'][$fid]; $forumchecklist .= "$depth<input type=\"checkbox\" name=\"{$name}[]\" value=\"$startforum[fid]\"";
|
{ $startforum = $cforumcache['fid'][$fid]; $forumchecklist .= "$depth<input type=\"checkbox\" name=\"{$name}[]\" value=\"$startforum[fid]\"";
|
if(in_array($startforum['fid'], $selected) || (is_array($selected) && in_array($forum['fid'], $selected)))
| if(is_array($selected) && (in_array($startforum['fid'], $selected) || in_array($forum['fid'], $selected)))
|
{ $forumchecklist .= ' checked="checked"'; }
| { $forumchecklist .= ' checked="checked"'; }
|
Zeile 1152 | Zeile 1152 |
---|
function getadminpermissions($get_uid="", $get_gid="") { global $db, $mybb;
|
function getadminpermissions($get_uid="", $get_gid="") { global $db, $mybb;
|
|
|
// Set UID and GID if none $uid = $get_uid; $gid = $get_gid;
|
// Set UID and GID if none $uid = $get_uid; $gid = $get_gid;
|
| $gid_array = array();
|
if($uid === "") { $uid = $mybb->user['uid']; }
|
if($uid === "") { $uid = $mybb->user['uid']; }
|
|
|
if(!$gid) {
|
if(!$gid) {
|
$gid = $mybb->usergroup['gid'];
| // Prepare user's groups since the group isn't specified $gid_array[] = (-1) * intval($mybb->user['usergroup']); $additional_groups = explode(',', $mybb->user['additionalgroups']); // Make sure gids are negative foreach($additional_groups as $g) { $gid_array[] = (-1) * abs($g); } } else { // Group is specified // Make sure gid is negative $gid = (-1) * abs($gid);
|
}
|
}
|
// Make sure gid is negative $gid = (-1) * abs($gid);
| |
// What are we trying to find? if($get_gid && !$get_uid) {
|
// What are we trying to find? if($get_gid && !$get_uid) {
|
| // A group only
|
$options = array( "order_by" => "uid", "order_dir" => "ASC", "limit" => "1" );
|
$options = array( "order_by" => "uid", "order_dir" => "ASC", "limit" => "1" );
|
// A group only
| |
$query = $db->simple_select(TABLE_PREFIX."adminoptions", "*", "(uid='$gid' OR uid='0') AND permsset != ''", $options); $perms = $db->fetch_array($query); return $perms; } else
|
$query = $db->simple_select(TABLE_PREFIX."adminoptions", "*", "(uid='$gid' OR uid='0') AND permsset != ''", $options); $perms = $db->fetch_array($query); return $perms; } else
|
{
| { // A user and/or group
|
$options = array( "order_by" => "uid", "order_dir" => "DESC" );
|
$options = array( "order_by" => "uid", "order_dir" => "DESC" );
|
// A user and/or group $query = $db->simple_select(TABLE_PREFIX."adminoptions", "*", "(uid='$uid' OR uid='0' OR uid='$gid') AND permsset != ''", $options);
| // Prepare user's groups into SQL format $group_sql = ''; foreach($gid_array as $gid) { $group_sql .= " OR uid='{$gid}'"; } $perms_group = array(); $query = $db->simple_select(TABLE_PREFIX."adminoptions", "*", "(uid='{$uid}'{$group_sql}) AND permsset != ''", $options);
|
while($perm = $db->fetch_array($query)) { // Sorting out which permission is which if($perm['uid'] > 0) { $perms_user = $perm;
|
while($perm = $db->fetch_array($query)) { // Sorting out which permission is which if($perm['uid'] > 0) { $perms_user = $perm;
|
| return $perms_user;
|
} elseif($perm['uid'] < 0) {
|
} elseif($perm['uid'] < 0) {
|
$perms_group = $perm;
| $perms_group[] = $perm;
|
} else
|
} else
|
{
| {
|
$perms_def = $perm;
|
$perms_def = $perm;
|
| } } // Figure out group permissions...ugh. foreach($perms_group as $gperms) { if(!isset($final_group_perms)) { // Use this group as the base for admin group permissions $final_group_perms = $gperms; continue; } // Loop through each specific permission to find the highest permission foreach($gperms as $perm_name => $perm_value) { if($final_group_perms[$perm_name] != 'yes' && $perm_value == 'yes') { $final_group_perms[$perm_name] = 'yes'; }
|
} }
// Send specific user, or group permissions before default.
|
} }
// Send specific user, or group permissions before default.
|
if(isset($perms_user)) { return $perms_user; } elseif(isset($perms_group)) { return $perms_group; }
| // If user's permission are explicitly set, they've already been returned above. if(isset($final_group_perms)) { return $final_group_perms; }
|
else { return $perms_def;
| else { return $perms_def;
|
Zeile 1242 | Zeile 1285 |
---|
} } $now = time();
|
} } $now = time();
|
|
|
$insertquery = array( "uid" => $mybbadmin['uid'], "dateline" => $now,
| $insertquery = array( "uid" => $mybbadmin['uid'], "dateline" => $now,
|
Zeile 1290 | Zeile 1333 |
---|
}
function addacpnav($name, $url="")
|
}
function addacpnav($name, $url="")
|
{
| {
|
global $navbits; $navsize = count($navbits); $navbits[$navsize]['name'] = $name;
| global $navbits; $navsize = count($navbits); $navbits[$navsize]['name'] = $name;
|
Zeile 1305 | Zeile 1348 |
---|
if(!is_array($forum_cache)) { cache_forums();
|
if(!is_array($forum_cache)) { cache_forums();
|
}
| }
|
reset($forum_cache); foreach($forum_cache as $key => $val) {
| reset($forum_cache); foreach($forum_cache as $key => $val) {
|
Zeile 1368 | Zeile 1411 |
---|
chk = getElemRefs("canpostreplies:"+id); chk.checked = master.checked; chk = getElemRefs("canpostpolls:"+id);
|
chk = getElemRefs("canpostreplies:"+id); chk.checked = master.checked; chk = getElemRefs("canpostpolls:"+id);
|
chk.checked = master.checked;
| chk.checked = master.checked;
|
chk = getElemRefs("canpostattachments:"+id); chk.checked = master.checked;
| chk = getElemRefs("canpostattachments:"+id); chk.checked = master.checked;
|
Zeile 1617 | Zeile 1660 |
---|
$theme = $tcache[$tid]; $cssbits = $theme['cssbits']; if(!$cssbits[$selector])
|
$theme = $tcache[$tid]; $cssbits = $theme['cssbits']; if(!$cssbits[$selector])
|
{ if($theme['pid'] > 0) {
| { if($theme['pid'] > 0) {
|
$cssbit = build_css_selector_array($theme['pid'], $selector, $addinherited);
|
$cssbit = build_css_selector_array($theme['pid'], $selector, $addinherited);
|
}
| }
|
} else // Is customized in this theme {
| } else // Is customized in this theme {
|
Zeile 1635 | Zeile 1678 |
---|
}
function build_theme_array($tid, $addinherited=1)
|
}
function build_theme_array($tid, $addinherited=1)
|
{
| {
|
global $db, $tcache, $themebitlist; if(!is_array($tcache)) {
| global $db, $tcache, $themebitlist; if(!is_array($tcache)) {
|
Zeile 1698 | Zeile 1741 |
---|
if(!$css || $isnew) { $css = unserialize($parent['cssbits']);
|
if(!$css || $isnew) { $css = unserialize($parent['cssbits']);
|
}
| }
|
} // Build the actual css
| } // Build the actual css
|
Zeile 1713 | Zeile 1756 |
---|
$parentbit = $parentbits[$themebit]; $childbit = $themebits[$themebit]; if(($parentbit == $childbit || $revert_themebits[$themebit]) && $themebit != "extracss")
|
$parentbit = $parentbits[$themebit]; $childbit = $themebits[$themebit]; if(($parentbit == $childbit || $revert_themebits[$themebit]) && $themebit != "extracss")
|
{
| {
|
$themebits['inherited'][$themebit] = $parentbits['inherited'][$themebit]; $themebits[$themebit] = $parentbit; }
| $themebits['inherited'][$themebit] = $parentbits['inherited'][$themebit]; $themebits[$themebit] = $parentbit; }
|
Zeile 1744 | Zeile 1787 |
---|
unset($cssbits); $themebits = build_theme_array($pid); unset($themebits['extracss']);
|
unset($cssbits); $themebits = build_theme_array($pid); unset($themebits['extracss']);
|
}
| }
|
$csscontents = build_css($css); return array("css" => $csscontents, "cssbits" => $cssbits, "themebits" => $themebits); }
| $csscontents = build_css($css); return array("css" => $csscontents, "cssbits" => $cssbits, "themebits" => $themebits); }
|
Zeile 1870 | Zeile 1913 |
---|
"order_by" => "title", "order_dir" => "ASC" );
|
"order_by" => "title", "order_dir" => "ASC" );
|
|
|
$query = $db->simple_select(TABLE_PREFIX."templatesets", "*", "", $options);
while($templateset = $db->fetch_array($query))
| $query = $db->simple_select(TABLE_PREFIX."templatesets", "*", "", $options);
while($templateset = $db->fetch_array($query))
|
Zeile 1902 | Zeile 1945 |
---|
{ echo "</td>"; if($custom == 1)
|
{ echo "</td>"; if($custom == 1)
|
{
| {
|
echo "<td><small><input type=\"checkbox\" name=\"revert_themebits[$name]\" id=\"revert_themebit_$name\" value=\"1\" /><label for=\"revert_themebit_$name\">".$lang->revert_customizations."</label></small></td>\n</tr>"; echo "<tr>\n<td colspan=\"2\" align=\"center\"><span class=\"smalltext\">$customnote</span></td>\n"; }
| echo "<td><small><input type=\"checkbox\" name=\"revert_themebits[$name]\" id=\"revert_themebit_$name\" value=\"1\" /><label for=\"revert_themebit_$name\">".$lang->revert_customizations."</label></small></td>\n</tr>"; echo "<tr>\n<td colspan=\"2\" align=\"center\"><span class=\"smalltext\">$customnote</span></td>\n"; }
|
Zeile 1917 | Zeile 1960 |
---|
function cache_themes() { global $db, $tcache;
|
function cache_themes() { global $db, $tcache;
|
|
|
$options = array( "order_by" => "pid, name" );
| $options = array( "order_by" => "pid, name" );
|
Zeile 1949 | Zeile 1992 |
---|
while($userstyle = $db->fetch_array($query)) { $tcache[$userstyle['style']]['users'] = $userstyle['users'];
|
while($userstyle = $db->fetch_array($query)) { $tcache[$userstyle['style']]['users'] = $userstyle['users'];
|
}
| }
|
foreach($tcache as $theme) { $tcache2[$theme['pid']][$theme['tid']] = $theme;
| foreach($tcache as $theme) { $tcache2[$theme['pid']][$theme['tid']] = $theme;
|
Zeile 1995 | Zeile 2038 |
---|
} echo "<option value=\"\" style=\"font-weight: bold;\">$lang->theme_style</option>"; echo "<option value=\"edit\" selected>- $lang->edit_theme_style</option>\n";
|
} echo "<option value=\"\" style=\"font-weight: bold;\">$lang->theme_style</option>"; echo "<option value=\"edit\" selected>- $lang->edit_theme_style</option>\n";
|
| |
} echo "<option value=\"\" style=\"font-weight: bold;\">$lang->other_options</option>\n"; echo "<option value=\"download\">- $lang->export_theme</option>\n";
| } echo "<option value=\"\" style=\"font-weight: bold;\">$lang->other_options</option>\n"; echo "<option value=\"download\">- $lang->export_theme</option>\n";
|