CatalystX::Usul::Model::Config::Keys - Class definition for keys configuration element


CatalystX-Usul documentation Contained in the CatalystX-Usul distribution.

Index


Code Index:

Name

Top

CatalystX::Usul::Model::Config::Keys - Class definition for keys configuration element

Version

Top

0.3.$Revision: 591 $

Synopsis

Top

   # Instantiated by Catalyst when the application starts

Description

Top

Defines the attributes for the <keys> element in the configuration files

Defines one language independent attribute; vals

Subroutines/Methods

Top

None

Diagnostics

Top

None

Configuration and Environment

Top

None

Dependencies

Top

CatalystX::Usul::Model::Config

Incompatibilities

Top

There are no known incompatibilities in this module

Bugs and Limitations

Top

There are no known bugs in this module. Please report problems to the address below. Patches are welcome

Author

Top

Peter Flanigan, <Support at RoxSoft.co.uk>

License and Copyright

Top


CatalystX-Usul documentation Contained in the CatalystX-Usul distribution.

# @(#)$Id: Keys.pm 591 2009-06-13 13:34:41Z pjf $

package CatalystX::Usul::Model::Config::Keys;

use strict;
use warnings;
use version; our $VERSION = qv( sprintf '0.3.%d', q$Rev: 591 $ =~ /\d+/gmx );
use parent qw(CatalystX::Usul::Model::Config);

__PACKAGE__->config
   ( create_msg_key    => q(Keys [_1]/[_2] created),
     delete_msg_key    => q(Keys [_1]/[_2] deleted),
     keys_attr         => q(key),
     schema_attributes => {
        attributes     => [ qw(vals) ],
        defaults       => { vals => {} },
        element        => q(keys),
        lang_dep       => q(), },
     table_data        => { vals => { align  => { name => q(left),
                                                  key  => q(left) },
                                      flds   => [ qw(name key) ],
                                      labels => { name => q(Key),
                                                  key  => q(Default) },
                                      sizes  => { name => 16,
                                                  key  => 32 } } },
     typelist          => {},
     update_msg_key    => q(Keys [_1]/[_2] updated), );

1;

__END__

# Local Variables:
# mode: perl
# tab-width: 3
# End: