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/Settings/FieldConfig.php')
-rw-r--r--core/Settings/FieldConfig.php10
1 files changed, 10 insertions, 0 deletions
diff --git a/core/Settings/FieldConfig.php b/core/Settings/FieldConfig.php
index ef8a6155e2..7b2ce1df03 100644
--- a/core/Settings/FieldConfig.php
+++ b/core/Settings/FieldConfig.php
@@ -27,6 +27,16 @@ class FieldConfig
const UI_CONTROL_TEXT = 'text';
/**
+ * Shows an email text field. To use this field assign it to the `$uiControl` property.
+ */
+ const UI_CONTROL_EMAIL = 'email';
+
+ /**
+ * Shows a URL text field. To use this field assign it to the `$uiControl` property.
+ */
+ const UI_CONTROL_URL = 'url';
+
+ /**
* Shows a text area. To use this field assign it to the `$uiControl` property.
*/
const UI_CONTROL_TEXTAREA = 'textarea';