You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fatal error: Class 'IslandoraCompoundBatch' not found in /opt/mounts/drupal/ldl/sites/all/modules/islandora_compound_batch/includes/batch.form.inc on line 75
$preprocessor = new IslandoraCompoundBatch($connection, $parameters);
The class IslandoraCompoundBatch is not defined. I'm seeing the previous commit of this line was:
$preprocessor = new IslandoraNewspaperBatch($connection, $parameters);
which referenced islandora_compound_batch.inc:
class IslandoraNewspaperBatch extends IslandoraScanBatch .....
The file islandora_compound_batch.inc was removed in later commits. Along with it, the class IslandoraNewspaperBatch (or IslandoraCompoundBatch) was eliminated.
The GUI won't work until there is an IslandoraCompoundBatch class defined.
Any advice on your reasoning before I try to craft my own IslandoraCompoundBatch class?
The text was updated successfully, but these errors were encountered:
@GarrettArm From the Introduction we have that this module provides a "... Drush command to ingest compound objects." The inclusion of batch.form.inc was partial work from initial development. Sorry to have mislead you. If someone is able to get the batch GUI working like for other content models, a pull-request would be most welcome. Thanks!
I've added a GUI batch ingest feature to a new solution pack I'm working on and would like to point out the salient bits that make it work. They might be applicable to creating a GUI for this batch module.
Fatal error: Class 'IslandoraCompoundBatch' not found in /opt/mounts/drupal/ldl/sites/all/modules/islandora_compound_batch/includes/batch.form.inc on line 75
$preprocessor = new IslandoraCompoundBatch($connection, $parameters);
The class IslandoraCompoundBatch is not defined. I'm seeing the previous commit of this line was:
$preprocessor = new IslandoraNewspaperBatch($connection, $parameters);
which referenced islandora_compound_batch.inc:
class IslandoraNewspaperBatch extends IslandoraScanBatch .....
The file islandora_compound_batch.inc was removed in later commits. Along with it, the class IslandoraNewspaperBatch (or IslandoraCompoundBatch) was eliminated.
The GUI won't work until there is an IslandoraCompoundBatch class defined.
Any advice on your reasoning before I try to craft my own IslandoraCompoundBatch class?
The text was updated successfully, but these errors were encountered: