MonographDAO::__construct PHP Method

__construct() public method

Constructor.
public __construct ( )
    function __construct()
    {
        parent::__construct();
    }

Usage Example

Example #1
0
 /**
  * Constructor.
  */
 function __construct()
 {
     parent::__construct();
     $this->authorDao = DAORegistry::getDAO('AuthorDAO');
     $this->userDao = DAORegistry::getDAO('UserDAO');
     $this->reviewAssignmentDao = DAORegistry::getDAO('ReviewAssignmentDAO');
     $this->submissionFileDao = DAORegistry::getDAO('SubmissionFileDAO');
     $this->submissionCommentDao = DAORegistry::getDAO('SubmissionCommentDAO');
 }
All Usage Examples Of MonographDAO::__construct