getAssocType() public méthode

Get assoc type of the given object.
public getAssocType ( $pubObject ) : integer
$pubObject
Résultat integer ASSOC_TYPE_
 /**
  * @copydoc PKPPublicIdentifiersForm::execute()
  */
 function getAssocType($pubObject)
 {
     if (is_a($pubObject, 'Issue')) {
         return ASSOC_TYPE_ISSUE;
     }
     return parent::getAssocType($pubObject);
 }