|
Lines 28-40
use C4::Context;
Link Here
|
| 28 |
|
28 |
|
| 29 |
my %scrubbertypes = ( |
29 |
my %scrubbertypes = ( |
| 30 |
default => {}, # place holder, default settings are below as fallbacks in call to constructor |
30 |
default => {}, # place holder, default settings are below as fallbacks in call to constructor |
| 31 |
tag => {}, # uses defaults |
|
|
| 32 |
comment => { allow => [qw( br b i em big small strong )], }, |
31 |
comment => { allow => [qw( br b i em big small strong )], }, |
| 33 |
note => { allow => [qw[ br b i em big small strong u hr span div p ]] }, |
32 |
note => { allow => [qw[ br b i em big small strong u hr span div p ]] }, |
| 34 |
staff => { |
|
|
| 35 |
default => [ 1 => { '*' => 1 } ], |
| 36 |
comment => 1, |
| 37 |
}, |
| 38 |
); |
33 |
); |
| 39 |
|
34 |
|
| 40 |
sub new { |
35 |
sub new { |
| 41 |
- |
|
|