javascript and api to stop and display active records (#772)

This commit is contained in:
Kevin Papst
2019-05-10 13:45:09 +02:00
committed by GitHub
parent e619b5fd31
commit 09da7cd242
86 changed files with 918 additions and 449 deletions

View File

@@ -199,13 +199,10 @@ kimai:
# --------------------------------------------------------------------------------
# Theme related settings, will be available as twig globals at "kimai_context.*".
# See documentation at https://www.kimai.org/documentation/theme.html
theme:
#theme:
# BETA test: If you set this to 'selectpicker' the customer/project/activity select boxes will be transformed
# into a searchable and javascript enhanced input type
select_type: ~
# fallback color for all widgets that don't have a dedicated color
# possible options: blue, black, purple, yellow, red, green
box_color: 'green'
#select_type: ~
# --------------------------------------------------------------------------------
# Dashboard widget sections.

View File

@@ -61,6 +61,10 @@ services:
arguments:
$settings: "%kimai.config%"
App\Configuration\ThemeConfiguration:
arguments:
$settings: "%kimai.theme%"
App\Utils\MPdfConverter:
arguments: ['%kernel.cache_dir%']
@@ -97,19 +101,6 @@ services:
App\Form\Type\LanguageType:
arguments: ["%app_locales%"]
App\Form\Extension\DocumentationLinkExtension:
tags:
- { name: form.type_extension, extended_type: Symfony\Component\Form\Extension\Core\Type\FormType }
App\Form\Extension\EnhancedChoiceTypeExtension:
arguments: ["%kimai.theme.select_type%"]
tags:
- { name: form.type_extension, extended_type: Symfony\Bridge\Doctrine\Form\Type\EntityType }
App\Form\Extension\SelectWithApiDataExtension:
tags:
- { name: form.type_extension, extended_type: Symfony\Bridge\Doctrine\Form\Type\EntityType }
# ================================================================================
# THEME
# ================================================================================