revbank/plugins/edit
Juerd Waalboer da523f8daa v3.6: products overhaul
New features, new documentation.
2022-12-25 05:32:00 +01:00

13 lines
270 B
Perl

#!perl
HELP "edit" => "Edit product list";
my $filename = 'revbank.products';
sub command :Tab(edit) ($self, $cart, $command, @) {
$command eq 'edit' or return NEXT;
require RevBank::TextEditor;
RevBank::TextEditor::edit($filename);
return ACCEPT;
}