|
NAMEGantry::Control::C::Pages - Page based control adminstration. SYNOPSISuse Gantry::Control::C::Pages; DESCRIPTIONThis module is the frontend for the Gantry::Control::Authz::PageBased authentication handler. One would specify pages as well as the permissions with this frontend module. APACHESample Apache configuration. <Location /admin/pages >
SetHandler perl-script
PerlSetVar title "Page Accesst: "
PerlSetVar dbconn "dbi:Pg:dbname=..."
PerlSetVar dbuser "<database_username>"
PerlSetVar dbpass "<database_password>"
PerlSetVar dbcommit off
PerlHandler Gantry::Control::C::Pages
</Location>
DATABASEThis is the auth_pages table that is used by this module. It also uses the auth_users and auth_groups tables for reference. create table "auth_pages" (
"id" int4 default nextval('auth_pages_seq'::text) NOT NULL,
"user_perm" int4,
"group_perm" int4,
"world_perm" int4,
"owner_id" int4,
"group_id" int4,
"uri" varchar,
"title" varchar
);
METHODS
There is also one method designed to be called by template wrappers.
SEE ALSOGantry::Control(3), Gantry::Control::C::Users(3), Gantry::Control::C::Groups(3), Gantry::Control::C::Authz::PageBased(3) LIMITATIONSAUTHORTim Keefer <tkeefer@gmail.com> Nicholas Studt <nstudt@angrydwarf.org> COPYRIGHTCopyright (c) 2005-6, Tim Keefer. This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.6 or, at your option, any later version of Perl 5 you may have available.
|