Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision 0bc6d28c

Von Thomas Heck vor mehr als 11 Jahren hinzugefügt

  • ID 0bc6d28c1a54fe96651f95405ce2b5ae4452af21
  • Vorgänger 6c82d505
  • Nachfolger a12274fd

Validity-Accessor für CVars

Unterschiede anzeigen:

SL/DB/CustomVariable.pm
6 6
use strict;
7 7

  
8 8
use SL::DB::MetaSetup::CustomVariable;
9
use SL::DB::CustomVariableValidity;
9 10

  
10 11
__PACKAGE__->meta->initialize;
11 12

  
......
22 23
  goto &text_value; # text and select
23 24
}
24 25

  
26
sub is_valid {
27
  my ($self) = @_;
28

  
29
  return SL::DB::Manager::CustomVariableValidity->get_all_count(config_id => $self->config_id, trans_id => $self->trans_id) == 0;
30
}
31

  
25 32
1;

Auch abrufbar als: Unified diff