Revision a97574b8
Von Sven Schöling vor fast 7 Jahren hinzugefügt
SL/Controller/Project.pm | ||
---|---|---|
297 | 297 |
project_type => { sub => sub { $_[0]->project_type->description } }, |
298 | 298 |
project_status => { sub => sub { $_[0]->project_status->description }, text => t8('Status') }, |
299 | 299 |
customer => { sub => sub { !$_[0]->customer_id ? '' : $_[0]->customer->name }, |
300 |
raw_data => sub { !$_[0]->customer_id ? '' : $self->presenter->customer($_[0]->customer, display => 'table-cell', callback => $callback) } },
|
|
300 |
raw_data => sub { !$_[0]->customer_id ? '' : $_[0]->customer->presenter->customer(display => 'table-cell', callback => $callback) } },
|
|
301 | 301 |
active => { sub => sub { $_[0]->active ? $::locale->text('Active') : $::locale->text('Inactive') }, |
302 | 302 |
text => $::locale->text('Active') }, |
303 | 303 |
valid => { sub => sub { $_[0]->valid ? $::locale->text('Valid') : $::locale->text('Invalid') }, |
Auch abrufbar als: Unified diff
Presenter: Neue Struktur in den restlichen Bereichen umgesetzt