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:
Diffstat (limited to 'core/SmartyPlugins/function.ajaxErrorDiv.php')
-rw-r--r--core/SmartyPlugins/function.ajaxErrorDiv.php30
1 files changed, 30 insertions, 0 deletions
diff --git a/core/SmartyPlugins/function.ajaxErrorDiv.php b/core/SmartyPlugins/function.ajaxErrorDiv.php
new file mode 100644
index 0000000000..b143fae09e
--- /dev/null
+++ b/core/SmartyPlugins/function.ajaxErrorDiv.php
@@ -0,0 +1,30 @@
+<?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 SmartyPlugins
+ */
+
+/**
+ * Outputs the generic Ajax error div (displayed when ajax requests are throwing exceptions and returning error messages)
+ *
+ * @param id=$ID_NAME ID of the HTML div, defaults to ajaxError
+ * @return string Html of the error message div, hidden by defayult
+ */
+function smarty_function_ajaxErrorDiv($params, &$smarty)
+{
+ if(empty($params['id']))
+ {
+ $id = 'ajaxError';
+ }
+ else
+ {
+ $id = $params['id'];
+ }
+ return '<div class="ajaxError" id="'.$id.'" style="display:none"></div>';
+}