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

Contents of /lib/Arh/Model/Place.pm

Parent Directory Parent Directory | Revision Log Revision Log


Revision 10 - (show annotations)
Thu Nov 29 17:17:16 2007 UTC (16 years, 5 months ago) by dpavlin
File size: 604 byte(s)
added users/passowrds all over the place
1 use strict;
2 use warnings;
3
4 package Arh::Model::Place;
5 use Jifty::DBI::Schema;
6
7 use Arh::Record schema {
8
9 column name =>
10 label is _("Name of place"),
11 is mandatory;
12
13 column note =>
14 label is _("Note");
15
16 };
17
18 #use Jifty::Plugin::ActorMetadata::Mixin::Model::ActorMetadata; # created_by, created_on, updated_on
19
20 # Your model-specific methods go here.
21
22 sub since { '0.0.3' }
23
24 sub current_user_can {
25 my ( $self, $action,$item,$name ) = @_;
26 return 1 if $self->current_user->superuser || $self->current_user->administrator;
27 return 1 if $self->current_user->id && $action eq 'read';
28 return 0;
29 }
30
31 1;
32

  ViewVC Help
Powered by ViewVC 1.1.26