* Tested on Beta1 and Dev release with two different themes.
* Place any menu links block provided by Menu module in any region via a Context reaction.
* The contextual links for "configure block" appear in the hover links, but not "add item" or "configure links" links provided by Menu module.
* The same menu block placed in the same region via the blocks administration screen displays contextual links correctly.

Support from Acquia helps fund testing for Drupal Acquia logo

Comments

fearlsgroove’s picture

Title: Block placement with Context module breaks contextual links provided by Menu module » contextual links broken for blocks rendered by context
Status: Active » Needs review
FileSize
640 bytes

This problem affects any contextual link other than the configuration block link. this is caused by the editable_block() function in context_reaction_block.inc, which wraps the block "content" element in order to insert the link tag that makes it editable at the end of the content element. Further down the block rendering pipeline, contextual links is in the wrong spot, so, except for the configure block link which is added very late in the pipeline, the other links aren't rendered (views, menus, etc).

Attached is a quick fix that leaves everything still functioning by grafting the "#contextual_links" into the render array in the spot it's expected to live, but as I suspect changing this render array like this will cause additional headaches down the road, a more robust solution may be in order. Such a solution would probably require changing the javascript code for admin.

fearlsgroove’s picture

Last patch would produce errors if there were no contextual links.

thomjjames’s picture

Hi,

Also having this issue and patch in #2 seems to fix it.

Cheers
Tom

jsunsurn’s picture

I have noticed this issue as well, I added this patch to a development server I run, and it works well. Thank you!

rosberg’s picture

Hi,

Patch works for me as well.

Thanks!

e2thex’s picture

Status: Needs review » Reviewed & tested by the community

Patch fixed it for me as well

febbraro’s picture

Status: Reviewed & tested by the community » Closed (fixed)