Something is wrong with the CTools Export UI Implementation. Need to investigate this and iron it out.

Comments

lkacenja’s picture

Admin interface now appears again. Had to change hook_ctools_plugin_directory from:

function spritely_js_ctools_plugin_directory($module, $plugin) {
  if ($module == 'spritely_js' && !empty($plugin)) {
    return "includes/$plugin";
  }
}

to

function spritely_js_ctools_plugin_directory($module, $plugin) {
  // This is a little hacky. Not sure why, but if I combine these two export_ui doesn't work.
  if ($plugin =='export_ui') {
    return 'includes/export_ui';
  }
  if ($module == 'spritely_js') {
    return "includes/$plugin";
  }
}

Not sure exactly why export_ui wasn't getting included. Now I just need to polish up the form and the admin form based implementation method will be complete.

lkacenja’s picture

Spritley interface is now up and running fine. Clone, Export and Import are working well. Need to see if there is a good way to remove some of the extra stuff we don't need.

lkacenja’s picture

Version: » 7.x-1.x-dev
Status: Active » Closed (fixed)