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.php8
1 files changed, 8 insertions, 0 deletions
diff --git a/core/Settings/FieldConfig.php b/core/Settings/FieldConfig.php
index f7f6bf97b3..ef8a6155e2 100644
--- a/core/Settings/FieldConfig.php
+++ b/core/Settings/FieldConfig.php
@@ -92,6 +92,14 @@ class FieldConfig
public $uiControl = null;
/**
+ * Defines a custom template file for a UI control. This file should render a UI control and expose the value in a
+ * "formField.value" angular model. For an example see "plugins/CorePluginsAdmin/angularjs/form-field/field-text.html"
+ *
+ * @var string
+ */
+ public $customUiControlTemplateFile = '';
+
+ /**
* Name-value mapping of HTML attributes that will be added HTML form control, eg,
* `array('size' => 3)`. Attributes will be escaped before outputting.
*