Well, I am a starter programmer and recently got my hands on OTRS. I have been struggling a lot with one thing - How to retrieve variables from other modules? E.g. I want to do something like...
Code: Select all
$Statuss = $Self->Ticketsomething... ->State;
$Self->{TicketAcl}->{'ACL-Reply-State-ALL'} = {
Properties => {
Frontend => {
Action => ['CustomerTicketZoom'],
},
Ticket => {
State => ['[RegExp]^*'],
},
},
Possible => {
Ticket => {
State => [$Statuss],
},
},
};
Can anyone advise me the solution, or at least give some example, that is not so complicated as real OTRS modules, because i see that code as a dark forest.
P.S. Yes, I am already reading Perl manuals and Yes, I am reading OTRS developer manuals, but up until now unsuccessfuly
Thank You in advance!