/[Arh]/lib/Arh/Model/Picture.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

Diff of /lib/Arh/Model/Picture.pm

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 4 by dpavlin, Thu Nov 29 11:20:24 2007 UTC revision 53 by dpavlin, Sun Apr 6 20:49:32 2008 UTC
# Line 3  use warnings; Line 3  use warnings;
3    
4  package Arh::Model::Picture;  package Arh::Model::Picture;
5  use Jifty::DBI::Schema;  use Jifty::DBI::Schema;
6    use File::Find;
7    use Data::Dump qw/dump/;
8    
9  use Arh::Record schema {  use Arh::Record schema {
10    
11            column filename =>
12                    label is _("Picture filename");
13    #               is immutable,
14    #               is indexed,
15    #               is unique;
16    
17            column content =>
18                    label is _('Picture'),
19                    type is 'bytea',
20    #               render as 'Upload',
21                    render as 'Arh::Web::Form::Field::Upload',
22                    is mandatory;
23    
24          column campaign =>          column campaign =>
25                  label is _("Part of campaign"),                  label is _("Part of campaign"),
26                  refers_to Arh::Model::Campaign,                  refers_to Arh::Model::Campaign,
27                  is required,                  is mandatory,
28                  is indexed,                  is indexed,
                 render_as 'select',  
29                  since '0.0.4';                  since '0.0.4';
30                    
         column filename =>  
                 label is _("Picture filename"),  
                 is required,  
                 is indexed;  
   
31          column type =>          column type =>
32                  label is _("Type of picture"),                  label is _("Type of picture"),
33                  refers_to Arh::Model::PictureType,                  refers_to Arh::Model::PictureType,
34                  is required,                  is mandatory,
35                  is indexed,                  is indexed,
36                  render_as 'select',                  since '0.0.4';
37                  since '0.0.4',  
38            column unit =>
39                    label is _('Unit'),
40                    refers_to Arh::Model::Unit,
41                    is mandatory,
42                    is indexed;
43    
44  };  };
45    
46  # Your model-specific methods go here.  # Your model-specific methods go here.
47    
48  sub since { '0.0.3' }  sub all_filenames {
49    
50            my @files;
51            my $path = Jifty::Util->app_root . '/share/web/static/pics';
52    
53    #       warn "## path = $path";
54    
55            find({ wanted => sub {
56                    my $f = $File::Find::name;
57                    return unless -f $f;
58                    push @files, $_;
59            }, follow => 0 }, $path);
60    
61    #       warn "## all_filenames = ",dump( @files );
62    
63            return @files;
64    }
65    
66    #use Jifty::Plugin::ActorMetadata::Mixin::Model::ActorMetadata; # created_by, created_on, updated_on
67    
68    use Arh::DefaultACL;
69    
70  1;  1;
71    

Legend:
Removed from v.4  
changed lines
  Added in v.53

  ViewVC Help
Powered by ViewVC 1.1.26