/**
  * Constructor
  */
 function __construct($submission, $stageId)
 {
     $this->_submission = $submission;
     $this->_stageId = $stageId;
     parent::__construct();
 }
 /**
  * Constructor
  */
 function __construct()
 {
     parent::__construct();
 }
 /**
  * Constructor
  * @param $submission Submission
  * @param $cellProvider GridCellProvider
  */
 function __construct($submission, $cellProvider)
 {
     $this->_submission = $submission;
     parent::__construct();
     $this->setCellProvider($cellProvider);
 }
Esempio n. 4
0
 /**
  * Constructor
  */
 function __construct($monograph, $readOnly = false)
 {
     $this->_monograph = $monograph;
     $this->_readOnly = $readOnly;
     parent::__construct();
 }
 /**
  * Constructor
  */
 function __construct($context)
 {
     $this->_context =& $context;
     parent::__construct();
 }