PKPSubmissionMetadataFormImplementation::__construct PHP Méthode

__construct() public méthode

Constructor.
public __construct ( $parentForm = null )
$parentForm Form A form that can use this form.
    function __construct($parentForm = null)
    {
        assert(is_a($parentForm, 'Form'));
        $this->_parentForm = $parentForm;
    }

Usage Example

 /**
  * Constructor.
  * @param $parentForm Form A form that can use this form.
  */
 function __construct($parentForm = null)
 {
     parent::__construct($parentForm);
 }