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/modifier.inlineHelp.php')
-rw-r--r--core/SmartyPlugins/modifier.inlineHelp.php26
1 files changed, 0 insertions, 26 deletions
diff --git a/core/SmartyPlugins/modifier.inlineHelp.php b/core/SmartyPlugins/modifier.inlineHelp.php
deleted file mode 100644
index bbd9892e61..0000000000
--- a/core/SmartyPlugins/modifier.inlineHelp.php
+++ /dev/null
@@ -1,26 +0,0 @@
-<?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
- */
-
-/**
- * Displays inline help using the jquery UI CSS
- */
-function smarty_modifier_inlineHelp($text)
-{
- return
- '<div class="ui-widget">'.
- '<div class="ui-inline-help ui-state-highlight ui-corner-all">'.
- '<p style="font-size:8pt;"><span class="ui-icon ui-icon-info" style="float:left;margin-right:.3em;"></span>'.
- $text.
- '</p>'.
- '</div>'.
- '</div>';
-}