in reply to Calling a class method
Then your handler sub becomes a full-fledged object method:twig_handlers => { mybutton => sub { $self->_twig_handle_button(@_) }, },
sub _twig_handle_button { my ( $self, $t, $section ) = @_; my $parsed_href = {}; $self->_handle_parsed_href( $parsed_href ); }
|
|---|