| Total Complexity | 3 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 22 | class VersionFeedSiteConfig extends DataExtension { |
||
| 23 | |||
| 24 | private static $db = array( |
||
|
|
|||
| 25 | 'AllChangesEnabled' => 'Boolean(true)' |
||
| 26 | ); |
||
| 27 | |||
| 28 | private static $defaults = array( |
||
| 29 | 'AllChangesEnabled' => true |
||
| 30 | ); |
||
| 31 | |||
| 32 | public function updateFieldLabels(&$labels) { |
||
| 34 | } |
||
| 35 | |||
| 36 | public function updateCMSFields(FieldList $fields) { |
||
| 50 |