aboutsummaryrefslogtreecommitdiff
path: root/IkiWiki/Plugin/signinedit.pm
blob: 08932e2f6bb69a13f064ea8a17796a241862a5f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/usr/bin/perl
package IkiWiki::Plugin::signinedit;

use warnings;
use strict;
use IkiWiki 2.00;

sub import { #{{{
	hook(type => "canedit", id => "signinedit", call => \&canedit,
	     last => 1);
} # }}}

sub canedit ($$$) { #{{{
	my $page=shift;
	my $cgi=shift;
	my $session=shift;

	# Have the user sign in, if they are not already. This is why the
	# hook runs last, so that any hooks that don't need the user to
	# signin can override this.
	IkiWiki::needsignin($cgi, $session);
	return "";
} #}}}

1