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.ajaxLoadingDiv.php')
-rw-r--r--core/SmartyPlugins/function.ajaxLoadingDiv.php35
1 files changed, 35 insertions, 0 deletions
diff --git a/core/SmartyPlugins/function.ajaxLoadingDiv.php b/core/SmartyPlugins/function.ajaxLoadingDiv.php
new file mode 100644
index 0000000000..86b624f7f6
--- /dev/null
+++ b/core/SmartyPlugins/function.ajaxLoadingDiv.php
@@ -0,0 +1,35 @@
+<?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 Loading div (displayed when ajax requests are triggered)
+ *
+ * @param id=$ID_NAME ID of the HTML div, defaults to ajaxLoading
+ * @return string Html of the Loading... div
+ */
+function smarty_function_ajaxLoadingDiv($params, &$smarty)
+{
+ if(empty($params['id']))
+ {
+ $id = 'ajaxLoading';
+ }
+ else
+ {
+ $id = $params['id'];
+ }
+ return '<div id="'.$id.'" style="display:none">'.
+ '<div id="loadingPiwik"><img src="themes/default/images/loading-blue.gif" alt="" /> '.
+ Piwik_Translate('General_LoadingData') .
+ ' </div>'.
+ '</div>';
+ ;
+}