Added label enabled dashboard setting (#7096)

* Added label enabled dashboard setting
This commit is contained in:
Alex
2024-08-14 16:44:11 -07:00
committed by GitHub
parent 62d2e3e9a6
commit 43d102b51c
23 changed files with 474 additions and 359 deletions
+20 -11
View File
@@ -117,25 +117,34 @@
$apps[$x]['db'][$y]['fields'][$z]['search_by'] = '';
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = 'Enter the chart type.';
$z++;
$apps[$x]['db'][$y]['fields'][$z]['name'] = 'dashboard_heading_text_color';
$apps[$x]['db'][$y]['fields'][$z]['type'] = 'text';
$apps[$x]['db'][$y]['fields'][$z]['search_by'] = '';
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = 'Enter the heading text color.';
$apps[$x]['db'][$y]['fields'][$z]['name'] = 'dashboard_label_enabled';
$apps[$x]['db'][$y]['fields'][$z]['type'] = 'boolean';
$apps[$x]['db'][$y]['fields'][$z]['toggle'] = ['true','false'];
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = 'Enter the label enabled';
$z++;
$apps[$x]['db'][$y]['fields'][$z]['name'] = 'dashboard_heading_text_color_hover';
$apps[$x]['db'][$y]['fields'][$z]['name']['text'] = "dashboard_label_text_color";
$apps[$x]['db'][$y]['fields'][$z]['name']['deprecated'] = "dashboard_heading_text_color";
$apps[$x]['db'][$y]['fields'][$z]['type'] = 'text';
$apps[$x]['db'][$y]['fields'][$z]['search_by'] = '';
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = 'Enter the heading text color hover.';
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = 'Enter the label text color.';
$z++;
$apps[$x]['db'][$y]['fields'][$z]['name'] = 'dashboard_heading_background_color';
$apps[$x]['db'][$y]['fields'][$z]['name'] = 'dashboard_label_text_color_hover';
$apps[$x]['db'][$y]['fields'][$z]['name']['deprecated'] = "dashboard_heading_text_color_hover";
$apps[$x]['db'][$y]['fields'][$z]['type'] = 'text';
$apps[$x]['db'][$y]['fields'][$z]['search_by'] = '';
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = 'Enter the heading background color.';
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = 'Enter the label text color hover.';
$z++;
$apps[$x]['db'][$y]['fields'][$z]['name'] = 'dashboard_heading_background_color_hover';
$apps[$x]['db'][$y]['fields'][$z]['name'] = 'dashboard_label_background_color';
$apps[$x]['db'][$y]['fields'][$z]['name']['deprecated'] = "dashboard_heading_background_color";
$apps[$x]['db'][$y]['fields'][$z]['type'] = 'text';
$apps[$x]['db'][$y]['fields'][$z]['search_by'] = '';
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = 'Enter the heading background color hover.';
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = 'Enter the label background color.';
$z++;
$apps[$x]['db'][$y]['fields'][$z]['name'] = 'dashboard_label_background_color_hover';
$apps[$x]['db'][$y]['fields'][$z]['name']['deprecated'] = "dashboard_heading_background_color_hover";
$apps[$x]['db'][$y]['fields'][$z]['type'] = 'text';
$apps[$x]['db'][$y]['fields'][$z]['search_by'] = '';
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = 'Enter the label background color hover.';
$z++;
$apps[$x]['db'][$y]['fields'][$z]['name'] = 'dashboard_number_text_color';
$apps[$x]['db'][$y]['fields'][$z]['type'] = 'text';
@@ -284,4 +293,4 @@
$apps[$x]['default_settings'][$y]['default_setting_enabled'] = "false";
$apps[$x]['default_settings'][$y]['default_setting_description'] = "";
?>
?>