MonographDAO::__construct PHP 메소드

__construct() 공개 메소드

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

Usage 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