CMS-Drupal-Modules-MembershipEntity
view release on metacpan or search on metacpan
called with a single mid
Add historical count of renewal memberships
0.92 2015-07-25 15:31:43-07:00 America/Los_Angeles
Methods to provide counts from past dates
Utility methods in Stats.pm
Add tutorial Cookbook.pm
0.91 2015-07-14 09:26:24-07:00 America/Los_Angeles
Allow use of local Drupal DB in some tests
Take an array as argument to fetch_memberships
0.90 2015-07-14 05:40:04-07:00 America/Los_Angeles
Introduce basic Stats package and tests
META.yml
Makefile.PL
README
bin/notify_expiring_members/final.notification
bin/notify_expiring_members/initial.notification
bin/notify_expiring_members/notify_expiring_members.README
bin/notify_expiring_members/notify_expiring_members.config.sample
bin/notify_expiring_members/notify_expiring_members.pl
dist.ini
lib/CMS/Drupal/Modules/MembershipEntity.pm
lib/CMS/Drupal/Modules/MembershipEntity/Cookbook.pm
lib/CMS/Drupal/Modules/MembershipEntity/Membership.pm
lib/CMS/Drupal/Modules/MembershipEntity/Stats.pm
lib/CMS/Drupal/Modules/MembershipEntity/Term.pm
lib/CMS/Drupal/Modules/MembershipEntity/Test.pm
t/10_obj_and_params.t
t/20_valid_drupal.t
t/30_build_and_validate_test_db.t
t/40_fetch_memberships.t
t/50_term_object_params.t
t/55_term_object_functions.t
lib/CMS/Drupal/Modules/MembershipEntity/Cookbook.pm view on Meta::CPAN
package CMS::Drupal::Modules::MembershipEntity::Cookbook;
$CMS::Drupal::Modules::MembershipEntity::Cookbook::VERSION = '0.96';
# ABSTRACT: Guide and tutorials for using the Perl-Drupal Membership Entity interface
use strict;
use warnings;
1; # return true
__END__
=pod
=encoding UTF-8
=head1 NAME
CMS::Drupal::Modules::MembershipEntity::Cookbook - Guide and tutorials for using the Perl-Drupal Membership Entity interface
=head1 VERSION
version 0.96
=head1 SYNOPSIS
This manual contains a collection of tutorials and tips for using
the CMS::Drupal::Modules::MembershipEntity distribution.
lib/CMS/Drupal/Modules/MembershipEntity/Stats.pm view on Meta::CPAN
This module provides some basic statistical analysis about your Drupal
site Memberships. It operates on the set of Memberships contained in
$ME->{'_memberships'} in other words whichever ones you fetched with
your call to $ME->fetch_memberships().
It has some methods for doing retroactive reporting on the DB records
so you can initialize a reporting system with some statistical
baselines.
See L<CMS::Drupal::Modules::MembershipEntity::Cookbook|the Cookbook>
for more information and examples of usage.
=head1 METHODS
=head2 count_total_memberships( )
Returns the number of Memberships in the set.
=head2 count_expired_memberships( )
( run in 0.917 second using v1.01-cache-2.11-cpan-e9199f4ba4c )