Using ECK 7.x-2.0-rc8 (latest version)

According to the instruction video of this Replicate UI module, a replicate tab should appear for the users which are authorized.

However, the tab does not show up, not for admins either.

The replicate functionality works though, using the url /replicate/$entity_type/$entity_id

Support from Acquia helps fund testing for Drupal Acquia logo

Comments

Yuri created an issue. See original summary.

btopro’s picture

ECK is a bit of an anomoly which would require specific integration. hook_menu has UI integration for different contrib projects like this:

if (module_exists('entityform')) {
    $items['entityform/%entityform/replicate'] = array(
      'title' => 'Replicate',
      'page callback' => 'drupal_get_form',
      'page arguments' => array('replicate_ui_confirm', 0, 1),
      'access callback' => 'replicate_ui_access',
      'access arguments' => array(0, 1),
      'type' => MENU_LOCAL_TASK,
    );
  }
firfin’s picture

@btopro: does the same go for entityform? Cause I am not seeing a replicate form on those either unfortunately.

btopro’s picture

firfin’s picture

@btopro: I do have the replicate_entityform module enabled. But there is no replicate tab on my entityforms. But I will create an issue in that module's queue.

paranojik’s picture

This patch provides support for ECK entities...

Yuri’s picture

Patch #6 works, thank you.
However I had to apply it manually, patching doesnt work any more.

Murz’s picture

Status: Active » Reviewed & tested by the community

paranojik, thanks - patch works well! Will be good to see it in core!