RT# 78356 - Updated documentation
[freeside.git] / FS / FS / part_event / Condition / payby.pm
1 package FS::part_event::Condition::payby;
2 use base qw( FS::part_event::Condition );
3
4 use strict;
5
6 #this has no meaning in 4.x, but we need some sort of stub to upgrade
7
8 sub description {
9   '(Deprecated) Customer payment type';
10 }
11
12 #never true, so never run?  that seems right.  this condition should have been
13 # migrated in your upgrade.  if not, not running is safter than running for all
14 # customers
15 sub condition { 0; }
16
17 sub disabled { 1; }
18
19 1;