| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 32 | public function configMapping() |
||
| 33 | { |
||
| 34 | return array( |
||
| 35 | \RainLoop\Plugins\Property::NewInstance('allowed_emails')->SetLabel('Allowed emails') |
||
| 36 | ->SetType(\RainLoop\Enumerations\PluginPropertyType::STRING_TEXT) |
||
| 37 | ->SetDescription('Allowed emails, space as delimiter, wildcard supported. Example: [email protected] [email protected] *@domain2.net') |
||
| 38 | ->SetDefaultValue('*') |
||
| 39 | ); |
||
| 40 | } |
||
| 41 | } |