1 | <?php |
||
14 | class ThreemaGateway_DataWriter_Keystore extends XenForo_DataWriter |
||
15 | { |
||
16 | /** |
||
17 | * Gets the fields that are defined for the table. See parent for explanation. |
||
18 | * |
||
19 | * @see XenForo_DataWriter::_getFields() |
||
20 | * @return array |
||
21 | */ |
||
22 | protected function _getFields() |
||
39 | |||
40 | /** |
||
41 | * Gets the actual existing data out of data that was passed in. See parent for explanation. |
||
42 | * |
||
43 | * As an update cannot happen in the keystore anyway, this function is not |
||
44 | * implemented in any way. |
||
45 | * |
||
46 | * @param mixed $data |
||
47 | * @see XenForo_DataWriter::_getExistingData() |
||
48 | * @return array |
||
49 | */ |
||
50 | protected function _getExistingData($data) |
||
54 | |||
55 | /** |
||
56 | * Gets SQL condition to update the existing record. |
||
57 | * |
||
58 | * As an update cannot happen in the keystore anyway, this function is not |
||
59 | * implemented in any way. |
||
60 | * |
||
61 | * @param string $tableName |
||
62 | * @see XenForo_DataWriter::_getUpdateCondition() |
||
63 | * @return string |
||
64 | */ |
||
65 | protected function _getUpdateCondition($tableName) |
||
69 | } |
||
70 |