/[Arh]/lib/Arh/Model/Campaign.pm
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Annotation of /lib/Arh/Model/Campaign.pm

Parent Directory Parent Directory | Revision Log Revision Log


Revision 10 - (hide annotations)
Thu Nov 29 17:17:16 2007 UTC (16 years, 6 months ago) by dpavlin
File size: 1026 byte(s)
added users/passowrds all over the place
1 dpavlin 4 use strict;
2     use warnings;
3    
4     package Arh::Model::Campaign;
5     use Jifty::DBI::Schema;
6    
7     use Arh::Record schema {
8    
9     column place =>
10     refers_to Arh::Model::Place,
11     is mandatory,
12     is indexed,
13     since '0.0.5';
14    
15     column name =>
16     label is _("Name of campaign"),
17     is mandatory;
18    
19     column date_from =>
20 dpavlin 5 label is _("From date"),
21 dpavlin 4 type is 'date',
22 dpavlin 5 filters are qw( Jifty::DBI::Filter::Date ),
23     render as 'date',
24 dpavlin 4 is mandatory;
25    
26     column date_to =>
27 dpavlin 5 label is _("To date"),
28 dpavlin 4 type is 'date',
29 dpavlin 5 filters are qw( Jifty::DBI::Filter::Date ),
30     render as 'date',
31 dpavlin 4 is mandatory;
32    
33     column note =>
34     label is _("Note"),
35 dpavlin 5 render as 'textarea';
36 dpavlin 4
37     };
38    
39 dpavlin 10 #use Jifty::Plugin::ActorMetadata::Mixin::Model::ActorMetadata; # created_by, created_on, updated_on
40    
41 dpavlin 4 # Your model-specific methods go here.
42    
43     sub since { '0.0.3' }
44    
45 dpavlin 10 sub current_user_can {
46     my ( $self, $action,$item,$name ) = @_;
47     return 1 if $self->current_user->superuser || $self->current_user->administrator;
48     return 1 if $self->current_user->id && $action eq 'read';
49     return 0;
50     }
51    
52 dpavlin 4 1;
53    

  ViewVC Help
Powered by ViewVC 1.1.26