- 🇺🇸United States smustgrave
Thank you for creating this issue to improve Drupal.
We are working to decide if this task is still relevant to a currently supported version of Drupal. There hasn't been any discussion here for over 8 years which suggests that this has either been implemented or is no longer relevant. Your thoughts on this will allow a decision to be made.
Since we need more information to move forward with this issue, the status is now Postponed (maintainer needs more info). If we don't receive additional information to help with the issue, it may be closed after three months.
Thanks!
- 🇺🇸United States smustgrave
Thank you for sharing your idea for improving Drupal.
We are working to decide if this proposal meets the Criteria for evaluating proposed changes. There hasn't been any discussion here for over 8 years which suggests that this has either been implemented or there is no community support. Your thoughts on this will allow a decision to be made.
Since we need more information to move forward with this issue, the status is now Postponed (maintainer needs more info). If we don't receive additional information to help with the issue, it may be closed after three months.
Thanks!
- 🇩🇪Germany Istari
I tried to find a solution to exclude eca and the bpmn_io modeller from using gin_everwhyere and as far as I understood shouldn't the bpmn io modeller use gin_everywhere.
When we take a look into gin_everywhere_gin_content_form_routes_alter
function gin_everywhere_gin_content_form_routes_alter(array &$routes) { $routes = []; foreach (\Drupal::entityTypeManager()->getDefinitions() as $entity_type_id => $entity_type) { if ($entity_type->getGroup() == 'content') { $routes[] = "entity.$entity_type_id.create_form"; $routes[] = "entity.$entity_type_id.edit_form"; $routes[] = "entity.$entity_type_id.override_form"; $routes[] = "$entity_type_id.add"; $routes[] = "entity.$entity_type_id.add_form"; $routes[] = "entity.$entity_type_id.revision"; $routes[] = "entity.$entity_type_id.content_translation_add"; } } // Extra routes that does not fit the pattern. $routes[] = 'block_content.add_page'; $routes[] = 'block_content.add_form'; $routes[] = 'entity.block_content.canonical'; $routes[] = 'entity.media.canonical'; $routes[] = 'entity.menu.add_link_form'; $routes[] = 'entity.menu_link_content.canonical'; }
When iterating through the entity type definitions we can see that the entity type
eca
as well aseca_model
are both of type of a configuration entity, so they don't appear in the$routes[]
array.
So far so good.Why does gin_everywhere appear on bpmn_io modeller?
Lets take a look at the paths and routes:
When using
admin/config/workflow/eca/add (eca.add)
we get redirected to/admin/config/workflow/eca/add/bpmn-io (bpmn_io.add)
which is no entity, so therefore this route will not be included into the$route
array.But when checking for those two routes in gin_everywhere_form_alter with
if (\Drupal::routeMatch()->getRouteName() == 'entity.eca.edit_form' || \Drupal::routeMatch()->getRouteName() == 'bpmn_io.add') { return; }
the function return happens and the gets stopped at this point.
But even if the check for the routes would pass, the hook is stopped by// Make sure we are on a gin form. if (!\Drupal::classResolver(GinContentFormHelper::class)->isContentForm($form, $form_state, $form_id)) { return; }
but gin_everywhere is still shown in the bpmn_io modeller and I'm not sure in which direction to take further investigation.
If you could give me some advise, it would be highly appreciated :)
- 🇨🇦Canada joelpittet Vancouver
gitlab-ci is the successor, I don't believe this is relevant (cleaning up issues I was following)
Created MR for setting progress bar with to 2%
Added with for Olivero theme as only, as in Claro it is working fine.
Added Screenshot for 2% width Progress bar.Please review.
- @sheetalpathak opened merge request.
Automatically closed - issue fixed for 2 weeks with no activity.
Automatically closed - issue fixed for 2 weeks with no activity.
Automatically closed - issue fixed for 2 weeks with no activity.
- Issue created by @sproets
- 🇺🇸United States smustgrave
Since it's been 3+ months without a follow up going to close out. If still a valid issue please please re-open!
Thanks all!
Automatically closed - issue fixed for 2 weeks with no activity.
Automatically closed - issue fixed for 2 weeks with no activity.
Automatically closed - issue fixed for 2 weeks with no activity.
- @mysdiir opened merge request.
- 🇩🇪Germany Hydra
For me it looks like Jürgen already integrated ECA perfectly with gin, so gin_everywhere maybe should just ignore the ECA Entity Type forms?
Automatically closed - issue fixed for 2 weeks with no activity.
-
avpaderno →
committed 8c5730c1 on 2.0.x
Issue #3197902: Body overflows when a link text is too long
-
avpaderno →
committed 8c5730c1 on 2.0.x
-
avpaderno →
committed edfdafd9 on 1.0.x authored by
immaculatexavier →
Issue #3197902: Body overflows when a link text is too long
-
avpaderno →
committed edfdafd9 on 1.0.x authored by
immaculatexavier →