PKPAssignPublicIdentifiersForm::fetch PHP Method

fetch() public method

public fetch ( $request )
    function fetch($request)
    {
        $templateMgr = TemplateManager::getManager($request);
        $pubIdPlugins = PluginRegistry::loadCategory('pubIds', true, $this->getContextId());
        $templateMgr->assign(array('pubIdPlugins' => $pubIdPlugins, 'pubObject' => $this->getPubObject(), 'approval' => $this->getApproval(), 'confirmationText' => $this->getConfirmationText()));
        return parent::fetch($request);
    }

Usage Example

 /**
  * @copydoc Form::fetch()
  */
 function fetch($request)
 {
     $templateMgr = TemplateManager::getManager($request);
     $templateMgr->assign('formParams', $this->getFormParams());
     return parent::fetch($request);
 }
All Usage Examples Of PKPAssignPublicIdentifiersForm::fetch