1 | <?php |
||
13 | class Database |
||
14 | { |
||
15 | |||
16 | /** |
||
17 | * Add the smart object SQL string the the signal below |
||
18 | * |
||
19 | * @signalClass \TYPO3\CMS\Install\Service\SqlExpectedSchemaService |
||
20 | * @signalName tablesDefinitionIsBeingBuilt |
||
21 | * |
||
22 | * @param array $sqlString |
||
23 | * |
||
24 | * @return array |
||
25 | */ |
||
26 | public function loadTables(array $sqlString) |
||
31 | |||
32 | /** |
||
33 | * Add the smart object SQL string the the signal below |
||
34 | * |
||
35 | * @signalClass \TYPO3\CMS\Extensionmanager\Utility\InstallUtility |
||
36 | * @signalName tablesDefinitionIsBeingBuilt |
||
37 | * |
||
38 | * @param array $sqlString |
||
39 | * @param string $extensionKey |
||
40 | * |
||
41 | * @return array |
||
42 | */ |
||
43 | public function updateTables(array $sqlString, $extensionKey) |
||
51 | |||
52 | /** |
||
53 | * Get the tagger string for the registered tables |
||
54 | * |
||
55 | * @return string |
||
56 | */ |
||
57 | protected function getDatabaseString() |
||
68 | } |
||
69 |