getAssocType() public method

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