comparison Lib/IMPL/Object/Autofill.pm @ 229:47f77e6409f7

heavily reworked the resource model of the web application: *some ResourcesContraact functionality moved to Resource +Added CustomResource *Corrected action handlers
author sergey
date Sat, 29 Sep 2012 02:34:47 +0400
parents c8fe3f84feba
children 6253872024a4
comparison
equal deleted inserted replaced
228:431db7034a88 229:47f77e6409f7
21 } 21 }
22 22
23 sub DisableAutofill { 23 sub DisableAutofill {
24 my $self = shift; 24 my $self = shift;
25 25
26 no strict 'refs';
26 my $class = ref $self || $self; 27 my $class = ref $self || $self;
27 28
28 *{"${class}::_impl_object_autofill"} = sub {}; 29 *{"${class}::_impl_object_autofill"} = sub {};
29 } 30 }
30 31