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 'plugins/CustomDimensions/angularjs/manage/manage.directive.html')
m---------plugins/CustomDimensions0
-rw-r--r--plugins/CustomDimensions/angularjs/manage/manage.directive.html30
2 files changed, 30 insertions, 0 deletions
diff --git a/plugins/CustomDimensions b/plugins/CustomDimensions
deleted file mode 160000
-Subproject 318661a2fb1ef3b3e5d6d999ae8b9628cb5a113
diff --git a/plugins/CustomDimensions/angularjs/manage/manage.directive.html b/plugins/CustomDimensions/angularjs/manage/manage.directive.html
new file mode 100644
index 0000000000..db1727e592
--- /dev/null
+++ b/plugins/CustomDimensions/angularjs/manage/manage.directive.html
@@ -0,0 +1,30 @@
+<div class="manageCustomDimensions">
+
+ <div ng-show="!manageDimensions.editMode">
+ <div piwik-custom-dimensions-list></div>
+
+ <div piwik-content-block content-title="{{ 'CustomDimensions_IncreaseAvailableCustomDimensionsTitle'|translate }}" id="customDimensionsCreateMoreDimensions">
+
+ <p>
+ {{ 'CustomDimensions_IncreaseAvailableCustomDimensionsTakesLong'|translate }}
+ <br><br>{{ 'CustomDimensions_HowToCreateCustomDimension'|translate }}
+ <br><br>
+ </p>
+ <pre piwik-select-on-focus><code>./console customdimensions:add-custom-dimension --scope=action
+./console customdimensions:add-custom-dimension --scope=visit</code></pre>
+ <p>
+ {{ 'CustomDimensions_HowToManyCreateCustomDimensions'|translate }}
+
+ {{ 'CustomDimensions_ExampleCreateCustomDimensions'|translate:5 }}
+ </p>
+ <pre piwik-select-on-focus><code>./console customdimensions:add-custom-dimension --scope=action --count=5</code></pre>
+
+ </div>
+
+ </div>
+ <div ng-show="manageDimensions.editMode">
+ <div piwik-custom-dimensions-edit
+ dimension-id="manageDimensions.dimensionId"
+ dimension-scope="manageDimensions.dimensionScope"></div>
+ </div>
+</div>