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

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrobocoder <anthon.pang@gmail.com>2011-08-01 19:56:53 +0400
committerrobocoder <anthon.pang@gmail.com>2011-08-01 19:56:53 +0400
commit86d0aa98b28d1afa2b2cb662d04ae4650bc781c0 (patch)
tree347a63e15194343369f9badb2e9f1ac403a7845f /plugins/Proxy
parent039a04d1af4f3e05d3266820369ba3eebaffd94b (diff)
remove getPieHtc controller method; refs #2485
git-svn-id: http://dev.piwik.org/svn/trunk@5067 59fd770c-687e-43c8-a1e3-f5a4ff64c105
Diffstat (limited to 'plugins/Proxy')
-rw-r--r--plugins/Proxy/Controller.php20
1 files changed, 7 insertions, 13 deletions
diff --git a/plugins/Proxy/Controller.php b/plugins/Proxy/Controller.php
index 3b4c9446cd..3db935bf8a 100644
--- a/plugins/Proxy/Controller.php
+++ b/plugins/Proxy/Controller.php
@@ -22,6 +22,8 @@ class Piwik_Proxy_Controller extends Piwik_Controller
/**
* Display the "Export Image" window.
*
+ * @deprecated 1.5.1
+ *
* @param string $imageData Base-64 encoded image data (via $_POST)
*/
static public function exportImageWindow()
@@ -41,6 +43,8 @@ class Piwik_Proxy_Controller extends Piwik_Controller
/**
* Output binary image from base-64 encoded data.
*
+ * @deprecated 1.5.1
+ *
* @param string $imageData Base-64 encoded image data (via $_POST)
*/
static public function outputBinaryImage()
@@ -95,7 +99,7 @@ class Piwik_Proxy_Controller extends Piwik_Controller
*
* @see core/AssetManager.php
*/
- public function getCss ()
+ public function getCss()
{
$cssMergedFile = Piwik_AssetManager::getMergedCssFileLocation();
Piwik::serveStaticFile($cssMergedFile, "text/css");
@@ -107,23 +111,13 @@ class Piwik_Proxy_Controller extends Piwik_Controller
*
* @see core/AssetManager.php
*/
- public function getJs ()
+ public function getJs()
{
$jsMergedFile = Piwik_AssetManager::getMergedJsFileLocation();
Piwik::serveStaticFile($jsMergedFile, "application/javascript; charset=UTF-8");
}
/**
- * Output the CSS3PIE PIE.htc file
- *
- * @see /libs/CSS3PIE
- */
- public function getPieHtc ()
- {
- Piwik::serveStaticFile(PIWIK_INCLUDE_PATH ."/libs/CSS3PIE/PIE.htc", "text/x-component");
- }
-
- /**
* Output redirection page instead of linking directly to avoid
* exposing the referrer on the Piwik demo.
*
@@ -164,7 +158,7 @@ class Piwik_Proxy_Controller extends Piwik_Controller
{
return true;
}
+
return false;
}
-
}