X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=eg%2Fpart_event-Action-template.pm;fp=eg%2Fpart_event-Action-template.pm;h=c2f5ba58f5835fd6d057cab8c79b80772edb5fbd;hp=0000000000000000000000000000000000000000;hb=eb4ff7f73c5d4bdf74a3472448b5a195598ff4cd;hpb=32b5d3a31f112a381f0a15ac5e3a2204242f3405 diff --git a/eg/part_event-Action-template.pm b/eg/part_event-Action-template.pm new file mode 100644 index 000000000..c2f5ba58f --- /dev/null +++ b/eg/part_event-Action-template.pm @@ -0,0 +1,55 @@ +package FS::part_event::Action::myaction; + +use strict; + +use base qw( FS::part_event::Action ); + +# see the FS::part_event::Action manpage for full documentation on each +# of the required and optional methods. + +sub description { + 'New action (the author forgot to change this description)'; +} + +#sub eventtable_hashref { +# { 'cust_main' => 1, +# 'cust_bill' => 1, +# 'cust_pkg' => 1, +# }; +#} + +#sub option_fields { +# ( +# 'field' => 'description', +# +# 'another_field' => { 'label'=>'Amount', 'type'=>'money', }, +# +# 'third_field' => { 'label' => 'Types', +# 'type' => 'select', +# 'options' => [ 'h', 's' ], +# 'option_labels' => { 'h' => 'Happy', +# 's' => 'Sad', +# }, +# ); +#} + +#sub default_weight { +# 100; +#} + + +sub do_action { + my( $self, $object ) = @_; + + my $cust_main = $self->cust_main($object); + + my $value_of_field = $self->option('field'); + + #do your action + + #die "Error: $error"; + return 'Null example action completed sucessfully.'; + +} + +1;