Welcome to mirror list, hosted at ThFree Co, Russian Federation.

OneClickDone.php « View « core - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 41da7b1fc2d2333427fb5f71c19028413c661b99 (plain)
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
<?php
/**
 * Piwik - Open source web analytics
 * 
 * @link http://piwik.org
 * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
 * @version $Id$
 * 
 * @category Piwik
 * @package Piwik
 */

/**
 * Post-update view
 *
 * During a Piwik software update, there will be instances of old classes
 * loaded in memory.  This is problematic as we will start to instantiate
 * new classes which may not be backward compatible.  This class provides
 * a clean bridge/transition by forcing a new request.
 *
 * This class needs to be self-contained, with no external dependencies.
 *
 * @package Piwik
 */
class Piwik_View_OneClickDone
{
	/**
	 * @var string
	 */
	private $tokenAuth;

	/**
	 * @var string
	 */
	public $coreError;

	/**
	 * @var array
	 */
	public $feedbackMessages;

	public function __construct($tokenAuth)
	{
		$this->tokenAuth = $tokenAuth;
	}

	/**
	 * Outputs the data.
	 *
	 * @return string html
	 */
	public function render()
	{
		// set response headers
		@header('Content-Type: text/html; charset=UTF-8');
		@header('Pragma: ');
		@header('Expires: ');
		@header('Cache-Control: must-revalidate');
		@header('X-Frame-Options: deny');

		$error = htmlspecialchars($this->coreError, ENT_QUOTES, 'UTF-8');
		$messages = htmlspecialchars(serialize($this->feedbackMessages), ENT_QUOTES, 'UTF-8');
		$tokenAuth = $this->tokenAuth;

		// use a heredoc instead of an external file
		echo <<<END_OF_TEMPLATE
<!DOCTYPE html>
<html>
 <head>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  <meta charset="utf-8" />
  <title></title>
 </head>
 <body>
  <form name="myform" method="post" action="?module=CoreUpdater&amp;action=oneClickResults">
   <input type="hidden" name="token_auth" value="$tokenAuth" />
   <input type="hidden" name="error" value="$error" />
   <input type="hidden" name="messages" value="$messages" />
   <noscript>
    <button type="submit" value="Continue" />
   </noscript>
  </form>
  <script type="text/javascript">
   document.myform.submit();
  </script>
 </body>
</html>
END_OF_TEMPLATE;
	}
}