PKPSubmissionMetadataFormImplementation::__construct PHP Method

__construct() public method

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

コード例 #1
0
 /**
  * Constructor.
  * @param $parentForm Form A form that can use this form.
  */
 function __construct($parentForm = null)
 {
     parent::__construct($parentForm);
 }