Skip to content

Commit

Permalink
pkp/pkp-lib#8845 Added missing methods
Browse files Browse the repository at this point in the history
  • Loading branch information
jonasraoni committed Mar 25, 2023
1 parent 98b1665 commit e1c66ea
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions classes/plugins/PubObjectsExportPlugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
use APP\notification\NotificationManager;
use APP\server\ServerDAO;
use APP\template\TemplateManager;
use Exception;
use PKP\context\Context;
use PKP\core\JSONMessage;
use PKP\db\DAORegistry;
Expand Down Expand Up @@ -803,6 +804,14 @@ public function _instantiateSettingsForm($context)
return $settingsForm;
}

/**
* Retrieve the form class
*/
public function getSettingsFormClassName()
{
throw new Exception('Not implemented');
}

/**
* Get the DAOs for objects that need to be augmented with additional settings.
*
Expand Down Expand Up @@ -835,6 +844,26 @@ protected function _checkForExportAction(string $exportAction): bool

return false;
}

/**
* Get pub ID type
*
* @return string
*/
public function getPubIdType()
{
throw new Exception('Not implemented');
}

/**
* Get pub ID display type
*
* @return string
*/
public function getPubIdDisplayType()
{
throw new Exception('Not implemented');
}
}

if (!PKP_STRICT_MODE) {
Expand Down

0 comments on commit e1c66ea

Please sign in to comment.