forked from r3h6/TYPO3.EXT.error404page
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclass.ext_update.php
More file actions
96 lines (85 loc) · 3.14 KB
/
Copy pathclass.ext_update.php
File metadata and controls
96 lines (85 loc) · 3.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<?php
/* *
* This script is part of the TYPO3 project - inspiring people to share! *
* *
* TYPO3 is free software; you can redistribute it and/or modify it under *
* the terms of the GNU General Public License version 3 as published by *
* the Free Software Foundation. *
* *
* This script is distributed in the hope that it will be useful, but *
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHAN- *
* TABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General *
* Public License for more details. *
* */
use TYPO3\CMS\Core\Messaging\FlashMessage;
use TYPO3\CMS\Core\Utility\GeneralUtility;
/**
* Extension update script
*/
class ext_update
{
/**
* Main update function called by the extension manager.
*
* @return string
*/
public function main()
{
$this->generateUrlHashes();
return $this->generateOutput();
}
protected function generateUrlHashes()
{
$title = 'Generate url hashes';
$query = 'UPDATE tx_error404page_domain_model_error SET url_hash=SHA1(url) WHERE url_hash=""';
$result = $this->getDatabasConnection()->sql_query($query);
if ($this->getDatabasConnection()->sql_errno()) {
$this->messageArray[] = array(FlashMessage::ERROR, $title, 'Please update your database first through the install tool or deactivate and activate the extension once!');
return;
}
$count = $this->getDatabasConnection()->sql_affected_rows($result);
if ($count > 0) {
$this->messageArray[] = array(FlashMessage::OK, $title, sprintf('Updated %s records!', $count));
} else {
$this->messageArray[] = array(FlashMessage::INFO, $title, 'Nothing to do!');
}
}
/**
* @return TYPO3\CMS\Core\Database\DatabaseConnection
*/
protected function getDatabasConnection()
{
return $GLOBALS['TYPO3_DB'];
}
/**
* Called by the extension manager to determine if the update menu entry
* should by showed.
*
* @return bool
* @todo find a better way to determine if update is needed or not.
*/
public function access()
{
return true;
}
/**
* Generates output by using flash messages
*
* @return string
*/
protected function generateOutput()
{
$output = '';
foreach ($this->messageArray as $messageItem) {
/** @var \TYPO3\CMS\Core\Messaging\FlashMessage $flashMessage */
$flashMessage = GeneralUtility::makeInstance(
'TYPO3\\CMS\\Core\\Messaging\\FlashMessage',
$messageItem[2],
$messageItem[1],
$messageItem[0]
);
$output .= $flashMessage->render();
}
return $output;
}
}