| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 15 | public function updateCMSFields(FieldList $fields) |
||
| 16 | { |
||
| 17 | $fields->addFieldToTab( |
||
| 18 | 'Root.Cache', |
||
| 19 | NumericField::create( |
||
| 20 | 'PublicCacheDurationInSeconds', |
||
| 21 | 'Number of caching seconds for public users (0 = no caching)' |
||
| 22 | ) |
||
| 23 | ->setDescription('Use with care. This should only be used on pages that should be the same for all users and that should be accessible publicly.'), |
||
| 24 | 'Content' |
||
| 25 | ); |
||
| 28 |