kivitendo/SL/Controller/Test.pm @ d387713c
c19b1e03 | Moritz Bunkus | package SL::Controller::Test;
|
||
use strict;
|
||||
use parent qw(SL::Controller::Base);
|
||||
use Data::Dumper;
|
||||
use SL::ClientJS;
|
||||
sub action_dump_form {
|
||||
my ($self) = @_;
|
||||
my $output = Dumper($::form);
|
||||
$self->render(\$output, { type => 'text' });
|
||||
}
|
||||
59469062 | Sven Schöling | sub action_ckeditor_test_page {
|
||
my ($self) = @_;
|
||||
$self->render("test/ckeditor");
|
||||
}
|
||||
c19b1e03 | Moritz Bunkus | 1;
|