getDelegateClassNames() public method

Return the available delegates mapped by lower case class names.
public getDelegateClassNames ( ) : array
return array a list of fully qualified class names indexed by the lower case class name of the file implementation they serve. NB: Be careful to order class names such that they can be called in the given order to delete files without offending foreign key constraints, i.e. place the sub-classes before the super-classes.
 /**
  * @copydoc PKPSubmissionFileDAO::getDelegateClassNames()
  */
 function getDelegateClassNames()
 {
     return array_replace(parent::getDelegateClassNames(), array('monographartworkfile' => 'classes.monograph.ArtworkFileDAODelegate', 'monographfile' => 'classes.monograph.MonographFileDAODelegate'));
 }