Maybe I'm looking in all the wrong places, but I can't seem to figure out how to access the stash ref from a Template plugin.
For example:

sub new { my( $class, $context ) = @_; #Stash my $stash = $context->{'STASH'} or die( "No stash given" ); #Bless object ref my $self = bless( { CONTEXT => $context, DBH => $stash->get('DBH') }, $class ); return $self; }

...dies as if the stash does not exist. However, when I get a dump of the @_ array, it does appear:

'STASH' => bless( { #...megabytes of data omitted for brevity }, 'Template::Stash' );

However, the docs state in Template::Plugin that the second argument(including the class name) is a Template::Context object, which contains the stash. And the dump above includes a full stash.
I have tried the following as well:

my $stash = $context->stash; #Returns a TT2 undef error "Can't call me +thod "stash" on an undefined value"

So my question is:

  1. How do I access the stash from a plugin?
  2. Why can't I access the stash like I am now?

~Thomas~

In reply to Stash access for a Template::Plugin plugin by thomas895

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.