示例#1
0
文件: OAIDAO.inc.php 项目: NateWr/omp
 /**
  * Constructor.
  */
 function __construct()
 {
     parent::__construct();
     $this->_publicationFormatDao = DAORegistry::getDAO('PublicationFormatDAO');
     $this->_publishedMonographDao = DAORegistry::getDAO('PublishedMonographDAO');
     $this->_seriesDao = DAORegistry::getDAO('SeriesDAO');
     $this->_pressDao = DAORegistry::getDAO('PressDAO');
 }
示例#2
0
文件: OAIDAO.inc.php 项目: pkp/ojs
 /**
  * Constructor.
  */
 function __construct()
 {
     parent::__construct();
     $this->journalDao = DAORegistry::getDAO('JournalDAO');
     $this->sectionDao = DAORegistry::getDAO('SectionDAO');
     $this->publishedArticleDao = DAORegistry::getDAO('PublishedArticleDAO');
     $this->articleGalleyDao = DAORegistry::getDAO('ArticleGalleyDAO');
     $this->issueDao = DAORegistry::getDAO('IssueDAO');
     $this->authorDao = DAORegistry::getDAO('AuthorDAO');
     $this->journalSettingsDao = DAORegistry::getDAO('JournalSettingsDAO');
     $this->journalCache = array();
     $this->sectionCache = array();
 }