Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
35 | public function postSchemaChange(IOutput $output, Closure $schemaClosure, array $options) |
||
36 | { |
||
37 | $query = $this->connection->getQueryBuilder(); |
||
38 | $query->insert('analytics_whats_new') |
||
39 | ->values([ |
||
40 | 'version' => $query->createNamedParameter('4.10.0'), |
||
41 | 'data' => $query->createNamedParameter('{"changelogURL":"https:\/\/github.com\/rello\/analytics\/blob\/master\/CHANGELOG.md","whatsNew":{ |
||
42 | "en":{"regular":["Translation integration","Custom columns in column picker","List available values for input boxes"],"admin":["New Features apply to users"]}, |
||
43 | "de":{"regular":["Translation Integration","Benutzerdefinierte Spalten im Column Picker","Eingabehilfe in Formularfeldern"],"admin":["Nur User Features"]} |
||
44 | }}'), |
||
45 | ]) |
||
46 | ->executeStatement(); |
||
47 | } |
||
48 | } |