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

github.com/sualko/cloud_piwik.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsualko <klaus@jsxc.org>2015-09-03 17:41:15 +0300
committersualko <klaus@jsxc.org>2015-09-03 17:41:15 +0300
commit9f3b46afd2f129030536ac30f17bc054b37c27d6 (patch)
treea346af07197ced9504f58654db5fd5ac56a8af7b /templates
parent813a63762283aad03e832b1cee93e110e83f7df9 (diff)
add admin settings
Diffstat (limited to 'templates')
-rw-r--r--templates/settings-admin.php22
1 files changed, 22 insertions, 0 deletions
diff --git a/templates/settings-admin.php b/templates/settings-admin.php
new file mode 100644
index 0000000..4dc3ae6
--- /dev/null
+++ b/templates/settings-admin.php
@@ -0,0 +1,22 @@
+<div id="piwikSettings" class="section">
+ <h2>Piwik Tracking</h2>
+ <form>
+ <table style="width: auto">
+ <tr>
+ <td><label for="piwikSiteId">Site ID </label></td>
+ <td><input type="text" name="siteId" id="piwikSiteId" pattern="[0-9]+" /></td>
+ <td></td>
+ </tr>
+ <tr>
+ <td><label for="piwikUrl">Piwik Url </label></td>
+ <td><input type="text" name="url" id="piwikUrl" /></td>
+ <td></td>
+ </tr>
+ <tr>
+ <td><label for="piwikInternal">Use internal piwik library </label></td>
+ <td><input type="checkbox" name="internal" id="piwikInternal" /></td>
+ <td></td>
+ </tr>
+ </table>
+ </form>
+</div>