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:
authormatt <matt@59fd770c-687e-43c8-a1e3-f5a4ff64c105>2008-08-04 03:53:22 +0400
committermatt <matt@59fd770c-687e-43c8-a1e3-f5a4ff64c105>2008-08-04 03:53:22 +0400
commit1dfc7ae2d07f99daccd432762c232b9329ea4285 (patch)
treee60f0a9ebcbc8ab2c9f45031284bec17cc532523 /plugins/CoreHome/templates/sites_selection.tpl
parent3f93985c07dcfa88d905b468692ac32b684cd558 (diff)
- renamed modules/ directory in core/
- cleaning admin UI - adding widgetize module - cleaning template architecture
Diffstat (limited to 'plugins/CoreHome/templates/sites_selection.tpl')
-rw-r--r--plugins/CoreHome/templates/sites_selection.tpl9
1 files changed, 9 insertions, 0 deletions
diff --git a/plugins/CoreHome/templates/sites_selection.tpl b/plugins/CoreHome/templates/sites_selection.tpl
new file mode 100644
index 0000000000..57287a35bd
--- /dev/null
+++ b/plugins/CoreHome/templates/sites_selection.tpl
@@ -0,0 +1,9 @@
+<span id="sitesSelection">Site <select name="idSite" onchange='javascript:this.form.submit()'>
+ <optgroup label="Sites">
+ {foreach from=$sites item=info}
+ <option label="{$info.name}" value="{$info.idsite}" {if $idSite==$info.idsite} selected="selected"{/if}>{$info.name}</option>
+ {/foreach}
+ </optgroup>
+</select>
+{hiddenurl idSite=null}
+</span> \ No newline at end of file