only pass named parameters to the canremove hook
Signed-off-by: intrigeri <intrigeri@boum.org>master
parent
f02672c113
commit
78a095aa42
|
@ -442,10 +442,10 @@ sub checkcontent (@) {
|
|||
return undef;
|
||||
}
|
||||
|
||||
sub canremove ($$$) {
|
||||
my ($page, $cgi, $session) = (shift, shift, shift);
|
||||
sub canremove (@) {
|
||||
my %params = @_;
|
||||
|
||||
if (istranslation($page)) {
|
||||
if (istranslation($params{page})) {
|
||||
return gettext("Can not remove a translation. Removing the master page, ".
|
||||
"though, removes its translations as well.");
|
||||
}
|
||||
|
|
|
@ -58,7 +58,7 @@ sub check_canremove ($$$) {
|
|||
my $canremove;
|
||||
IkiWiki::run_hooks(canremove => sub {
|
||||
return if defined $canremove;
|
||||
my $ret=shift->($page, $q, $session);
|
||||
my $ret=shift->(page => $page, cgi => $q, session => $session);
|
||||
if (defined $ret) {
|
||||
if ($ret eq "") {
|
||||
$canremove=1;
|
||||
|
|
|
@ -183,10 +183,8 @@ sub canedit ($$$) {
|
|||
debug("skeleton plugin running in canedit");
|
||||
}
|
||||
|
||||
sub canremove ($$$) {
|
||||
my $page=shift;
|
||||
my $cgi=shift;
|
||||
my $session=shift;
|
||||
sub canremove (@) {
|
||||
my %params=@_;
|
||||
|
||||
debug("skeleton plugin running in canremove");
|
||||
}
|
||||
|
|
|
@ -325,9 +325,11 @@ user can edit.
|
|||
|
||||
hook(type => "canremove", id => "foo", call => \&canremove);
|
||||
|
||||
This hook can be used to implement arbitrary access methods to control when
|
||||
a page can be removed using the web interface (commits from revision control
|
||||
bypass it). It works exactly like the `canedit` hook.
|
||||
This hook can be used to implement arbitrary access methods to control
|
||||
when a page can be removed using the web interface (commits from
|
||||
revision control bypass it). It works exactly like the `canedit` hook,
|
||||
but is passed the named parameters `cgi` (a CGI object), `session`
|
||||
(a session object) and `page` (the page subject to deletion).
|
||||
|
||||
### canrename
|
||||
|
||||
|
@ -335,7 +337,7 @@ bypass it). It works exactly like the `canedit` hook.
|
|||
|
||||
This hook can be used to implement arbitrary access methods to control when
|
||||
a page can be renamed using the web interface (commits from revision control
|
||||
bypass it). It works exactly like the `canedit` and `canremove` hook,
|
||||
bypass it). It works exactly like the `canedit` hook,
|
||||
but is passed the named parameters `cgi` (a CGI object), `session` (a
|
||||
session object), `src`, `srcfile`, `dest` and `destfile`.
|
||||
|
||||
|
|
Loading…
Reference in New Issue