Validity-Accessor für CVars
authorThomas Heck <theck@linet-services.de>
Fri, 3 May 2013 13:52:14 +0000 (15:52 +0200)
committerThomas Heck <theck@linet-services.de>
Tue, 16 Jul 2013 12:23:51 +0000 (14:23 +0200)
SL/DB/CustomVariable.pm

index 09718de..83ee89d 100644 (file)
@@ -6,6 +6,7 @@ package SL::DB::CustomVariable;
 use strict;
 
 use SL::DB::MetaSetup::CustomVariable;
+use SL::DB::CustomVariableValidity;
 
 __PACKAGE__->meta->initialize;
 
@@ -22,4 +23,10 @@ sub value {
   goto &text_value; # text and select
 }
 
+sub is_valid {
+  my ($self) = @_;
+
+  return SL::DB::Manager::CustomVariableValidity->get_all_count(config_id => $self->config_id, trans_id => $self->trans_id) == 0;
+}
+
 1;