X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=FS%2FFS%2Faccess_group.pm;h=a2b9774096779de7634aa42e016f83449a9d6ffa;hp=9d870e57fb5c6306efdfe429b414751911063e57;hb=f822e27a1e00594332ffa487a1c284234c5580a6;hpb=2c757d7db4cb6a7b9655de13206fcc84fb7ce61f diff --git a/FS/FS/access_group.pm b/FS/FS/access_group.pm index 9d870e57f..a2b977409 100644 --- a/FS/FS/access_group.pm +++ b/FS/FS/access_group.pm @@ -1,10 +1,9 @@ package FS::access_group; +use base qw( FS::m2m_Common FS::m2name_Common FS::Record ); use strict; -use vars qw( @ISA ); use FS::Record qw( qsearch qsearchs ); - -@ISA = qw(FS::Record); +use FS::access_right; =head1 NAME @@ -27,15 +26,14 @@ FS::access_group - Object methods for access_group records =head1 DESCRIPTION -An FS::access_group object represents an example. FS::access_group inherits from +An FS::access_group object represents an access group. FS::access_group inherits from FS::Record. The following fields are currently supported: =over 4 =item groupnum - primary key -=item groupname - - +=item groupname - Access group name =back @@ -45,7 +43,7 @@ FS::Record. The following fields are currently supported: =item new HASHREF -Creates a new example. To add the example to the database, see L<"insert">. +Creates a new access group. To add the access group to the database, see L<"insert">. Note that this stores the hash reference, not a distinct copy of the hash it points to. You can ask the object for a copy with the I method. @@ -84,7 +82,7 @@ returns the error, otherwise returns false. =item check -Checks all fields to make sure this is a valid example. If there is +Checks all fields to make sure this is a valid access group. If there is an error, returns the error, otherwise returns false. Called by the insert and replace methods. @@ -105,12 +103,44 @@ sub check { $self->SUPER::check; } +=item access_groupagent + +Returns all associated FS::access_groupagent records. + +=item access_rights + +Returns all associated FS::access_right records. + +=cut + +sub access_rights { + my $self = shift; + qsearch('access_right', { 'righttype' => 'FS::access_group', + 'rightobjnum' => $self->groupnum + } + ); +} + +=item access_right RIGHTNAME + +Returns the specified FS::access_right record. Can be used as a boolean, to +test if this group has the given RIGHTNAME. + +=cut + +sub access_right { + my( $self, $name ) = @_; + qsearchs('access_right', { 'righttype' => 'FS::access_group', + 'rightobjnum' => $self->groupnum, + 'rightname' => $name, + } + ); +} + =back =head1 BUGS -The author forgot to customize this manpage. - =head1 SEE ALSO L, schema.html from the base documentation.