root/branches/feature-narrow-tables/t/plugins/Awesome/lib/MT/Awesome/Image.pm @ 1836

Revision 1836, 236 bytes (checked in by bchoate, 20 months ago)

Updates to support expressing meta columns in 'column_defs' structure.
Changes to registry lookup to support handler declarations.
Added meta type aliases for MT type names ('string', 'integer', etc.). BugId:68749

Line 
1package MT::Awesome::Image;
2
3our @ISA = qw( MT::Awesome );
4
5__PACKAGE__->install_properties({
6    class_type => 'image',
7    column_defs => {
8        'width' => 'integer meta',
9        'height' => 'integer meta indexed',
10    },
11});
12
131;
Note: See TracBrowser for help on using the browser.