Hi everyone,
I’m currently updating the ARK PubId Plugin for OJS 3.4.0-x. Most of the functionality (generation and assignment in publications, see old ARKs…) is working, but I’m facing two specific blockers regarding the management of existing identifiers and the Issue Identifiers tab.
1. 404 Error when clearing PubIds (Galleys/Articles): When attempting to use LinkAction with RemoteActionConfirmationModal to trigger clearPubId, OJS 3.4 returns a 404. It seems the request is being directed to the Grid Handler (e.g., article-galley-grid) which doesn’t recognize the clearPubId operation.
- Question: In OJS 3.4, what is the recommended way to point
LinkActionto the proper controller for deleting a PubId? Should we still usegrid.settings.pubIds.PubIdPluginGridHandleror has this been moved to a different component?
2. 500 Error on Issue Identifiers Tab: When opening the “Identifiers” tab in the Issue Management modal, the console shows a 500 error: GET .../grid/issues/back-issue-grid/identifiers?issueId=XX This seems to happen because the plugin’s hooks into the identifier forms are expecting a Publication object which is absent in the Issue context.
3. Fatal Error - Abstract Methods: I’ve noticed that PKPPubIdPlugin now requires several abstract methods that were optional or different in 3.3 (e.g., getSuffixPatternsFieldNames).
Current Code Snippet (getLinkActions):
PHP
public function getLinkActions($pubObject) {
$linkActions = array();
$request = PKPApplication::get()->getRequest();
$dispatcher = $request->getDispatcher();
$userVars = array('pubIdPlugIn' => 'ARKPubIdPlugin');
// Logic to define $handler based on $pubObject...
$linkActions['clearPubIdLinkActionARK'] = new LinkAction(
'clearPubId',
new RemoteActionConfirmationModal(
$request->getSession(),
__('plugins.pubIds.ark.editor.clearObjectsARK.confirm'),
__('common.delete'),
$dispatcher->url($request, PKPApplication::ROUTE_COMPONENT, null, $handler, 'clearPubId', null, $userVars),
'modal_delete'
),
__('plugins.pubIds.ark.editor.clearObjectsARK'),
'delete'
);
return $linkActions;
}
Could someone point me to a reference implementation or documentation on how the PubId clearing workflow has changed for 3.4?
I using: OJS 3.4.0-10
Thanks in advance for your help!