summaryrefslogtreecommitdiff
path: root/modules/box.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2001-06-29 22:08:57 +0000
committerDries Buytaert <dries@buytaert.net>2001-06-29 22:08:57 +0000
commit9c43e8fc7a192dfe768c76a539373915bddaa0aa (patch)
tree32dfe7f04171c2600be4164ca529d7f42766ec32 /modules/box.module
parent124694ee4dbcc1df5dfc2d419ed2393619883071 (diff)
downloadbrdo-9c43e8fc7a192dfe768c76a539373915bddaa0aa.tar.gz
brdo-9c43e8fc7a192dfe768c76a539373915bddaa0aa.tar.bz2
Extremely large commit:
- Fixed tiny quote problem in account.php. - Fixed tiny bug in comment.inc. - Fixed tiny bug in comment.module. - Fixed tiny bug in meta.module. - Simplified user_access() API. - Rewrote link system: still needs fine-tuning and testing so don't upgrade if you are running a production site. ;) Updated all modules and themes to reflect this change. All other themes and modules need updating too!
Diffstat (limited to 'modules/box.module')
-rw-r--r--modules/box.module14
1 files changed, 11 insertions, 3 deletions
diff --git a/modules/box.module b/modules/box.module
index c8e4330e2..8bac56138 100644
--- a/modules/box.module
+++ b/modules/box.module
@@ -30,7 +30,15 @@ function box_help() {
}
function box_perm() {
- return array("add and edit boxes");
+ return array("administer boxes");
+}
+
+function box_link($type) {
+ if ($type == "admin" && user_access("administer boxes")) {
+ $links[] = "<a href=\"admin.php?mod=box\">boxes</a>";
+ }
+
+ return $links ? $links : array();
}
function box_block() {
@@ -142,9 +150,9 @@ function box_admin_save($id, $subject, $content, $info, $link, $type) {
}
function box_admin() {
- global $user, $op, $id, $subject, $content, $info, $link, $type;
+ global $op, $id, $subject, $content, $info, $link, $type;
- if (user_access($user, "add and edit boxes")) {
+ if (user_access("administer boxes")) {
print "<SMALL><A HREF=\"admin.php?mod=box&op=add\">add new box</A> | <A HREF=\"admin.php?mod=box\">overview</A> | <A HREF=\"admin.php?mod=box&op=help\">help</A></SMALL><HR>\n";