Ignore:
Timestamp:
05/29/12 10:25:51 (12 years ago)
Author:
nanardon
Message:
  • complete POD

This patch a basic documentation to all functions.
It also add two test to ensure all POD syntax are correct and coverage is full.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/LATMOS-Accounts/lib/LATMOS/Accounts/Maintenance.pm

    r1014 r1023  
    1010 
    1111    LATMOS::Accounts::Maintenance 
     12 
     13=head1 FUNCTIONS 
    1214 
    1315=cut 
     
    2022    return $self->{_maintenance_base} = $base 
    2123} 
     24 
     25=head2 find_next_expire_users ($expire) 
     26 
     27Return The list of users going to expire in C<$expire> delay. 
     28 
     29=cut 
    2230 
    2331sub find_next_expire_users { 
     
    155163} 
    156164 
     165=head2 find_expired_users ($expire) 
     166 
     167See L<LATMOS::Accounts::Base/find_expired_users> 
     168 
     169=cut 
     170 
    157171sub find_expired_users { 
    158172    my ($self, $expire) = @_; 
    159173    $self->_base->find_expired_users($expire); 
    160174} 
     175 
     176=head2 expired_account_reminder ( %options) 
     177 
     178Search account expired for more than C<$options{delay}> (default is 6 month) 
     179send mail to manager and summary to admin to aknoledge destruction. 
     180 
     181=cut 
    161182 
    162183sub expired_account_reminder { 
     
    240261 
    2412621; 
     263 
     264__END__ 
     265 
     266=head1 SEE ALSO 
     267 
     268L<LATMOS::Accounts::Bases> 
     269 
     270=head1 AUTHOR 
     271 
     272Thauvin Olivier, E<lt>olivier.thauvin@latmos.ipsl.frE<gt> 
     273 
     274=head1 COPYRIGHT AND LICENSE 
     275 
     276Copyright (C) 2009, 2010, 2011, 2012 by Thauvin Olivier 
     277 
     278This library is free software; you can redistribute it and/or modify 
     279it under the same terms as Perl itself, either Perl version 5.10.0 or, 
     280at your option, any later version of Perl 5 you may have available. 
     281 
     282=cut 
Note: See TracChangeset for help on using the changeset viewer.