X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=lib%2FMaypole%2FConfig.pm;h=2cf65daba17eca9111aa0e7ff1cdd0e515ab11bf;hb=5e09c784983b4a041e81d15e06456e0c16da5bf3;hp=cc9a9f59250b9a9faa74f4689b3629e7991c3b65;hpb=b6e2413ee413ce21b28429c05bbcc3f516a0754a;p=maypole.git diff --git a/lib/Maypole/Config.pm b/lib/Maypole/Config.pm index cc9a9f5..2cf65da 100644 --- a/lib/Maypole/Config.pm +++ b/lib/Maypole/Config.pm @@ -9,8 +9,9 @@ our $VERSION = "1." . sprintf "%04d", q$Rev$ =~ /: (\d+)/; # Public accessors. __PACKAGE__->mk_accessors( - qw( view view_options uri_base template_root model loader display_tables - ok_tables rows_per_page dsn user pass opts application_name) + qw( view view_options uri_base template_root template_extension model + loader display_tables ok_tables rows_per_page dsn user pass opts + application_name additional) ); # Should only be modified by model. @@ -46,6 +47,10 @@ Optional. Contains a list of all tables, if supported by model. +=head3 template_extension + +Optional template file extension. + =head3 template_root This is where your application can find its templates. @@ -112,6 +117,11 @@ Username to log into the database with. =head2 Adding additional configuration data +You can use the 'additional' attribute for stashing additional info, especially from additional_data method, +i.e. $r->config->additional({foo=>bar}); + +Or.. + If your modules need to store additional configuration data for their own use or to make available to templates, add a line like this to your module: