Skip to content
View KaiCMueller's full-sized avatar
Block or Report

Block or report KaiCMueller

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. EasyAdmin: Active entity menu items EasyAdmin: Active entity menu items
    1
    {% macro render_menu_item(item, translation_domain) %}
    2
        {% if item.type == 'divider' %}
    3
            {{ item.label|trans(domain = translation_domain) }}
    4
        {% else %}
    5
            {% set menu_params = { menuIndex: item.menu_index, submenuIndex: item.submenu_index } %}
  2. Adding page numbers to EasyAdmin lis... Adding page numbers to EasyAdmin list views
    1
    {% trans_default_domain 'EasyAdminBundle' %}
    2
    
                  
    3
    {% set _paginator_request_parameters = _request_parameters|merge({'referer': null}) %}
    4
    
                  
    5
    {% if paginator.haveToPaginate %}
  3. Doctrine Migrations Template Doctrine Migrations Template
    1
    doctrine_migrations:
    2
        dir_name: "%kernel.project_dir%/src/Migrations"
    3
        namespace: "App\\Migrations"
    4
        custom_template: "%kernel.project_dir%/src/Migrations/migration.tpl"