mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-07-27 07:44:35 +02:00
13385-Fix hint in module regex
This commit is contained in:
parent
55be5b5208
commit
e2bde2373b
@ -1454,7 +1454,7 @@ $class = 'databox filters';
|
|||||||
<td class="bolder">
|
<td class="bolder">
|
||||||
<?php
|
<?php
|
||||||
echo __('Module').ui_print_help_tip(
|
echo __('Module').ui_print_help_tip(
|
||||||
__('Case insensitive regular expression or string for module name. For example: if you use this field with "Module exact match" enabled then this field has to be fulfilled with the literally string of the module name, if not you can use a regular expression. Example: .*usage.* will match: cpu_usage, vram usage in matchine 1.'),
|
__('Case insensitive regular expression or string for module name. For example: if you use this field with "Module exact match" enabled then this field has to be fulfilled with the literally string of the module name, if not you can use a regular expression. Example: %s will match: cpu_usage, vram usage in matchine 1.', '.*usage.*'),
|
||||||
true
|
true
|
||||||
);
|
);
|
||||||
?>
|
?>
|
||||||
|
@ -238,7 +238,7 @@ class TopNWidget extends Widget
|
|||||||
// Module.
|
// Module.
|
||||||
$inputs[] = [
|
$inputs[] = [
|
||||||
'label' => __('Module').ui_print_help_tip(
|
'label' => __('Module').ui_print_help_tip(
|
||||||
__('Case insensitive regular expression or string for module name. For example: .*usage.* will match: cpu_usage, vram usage.'),
|
__('Case insensitive regular expression or string for module name. For example: %s will match: cpu_usage, vram usage.', '.*usage.*'),
|
||||||
true
|
true
|
||||||
),
|
),
|
||||||
'arguments' => [
|
'arguments' => [
|
||||||
|
Loading…
x
Reference in New Issue
Block a user