87 lines
2.2 KiB
PHP
87 lines
2.2 KiB
PHP
<?php
|
|
|
|
/**
|
|
* @file classes/facades/Repo.php
|
|
*
|
|
* Copyright (c) 2014-2021 Simon Fraser University
|
|
* Copyright (c) 2000-2021 John Willinsky
|
|
* Distributed under the GNU GPL v3. For full terms see the file docs/COPYING.
|
|
*
|
|
* @class Repo
|
|
*
|
|
* @brief Extends the base Repo facade with any overrides for OJS
|
|
*/
|
|
|
|
namespace APP\facades;
|
|
|
|
use APP\decision\Repository as DecisionRepository;
|
|
use APP\doi\Repository as DoiRepository;
|
|
use APP\issue\Repository as IssueRepository;
|
|
use APP\mail\Repository as MailRepository;
|
|
use APP\publication\Repository as PublicationRepository;
|
|
use APP\section\Repository as SectionRepository;
|
|
use APP\submission\Repository as SubmissionRepository;
|
|
use APP\submissionFile\Repository as SubmissionFileRepository;
|
|
use APP\user\Repository as UserRepository;
|
|
use PKP\facades\Repo as BaseRepo;
|
|
use PKP\galley\Repository as GalleyRepository;
|
|
use PKP\highlight\Repository as HighlightRepository;
|
|
|
|
class Repo extends BaseRepo
|
|
{
|
|
public static function doi(): DoiRepository
|
|
{
|
|
return app(DoiRepository::class);
|
|
}
|
|
|
|
public static function decision(): DecisionRepository
|
|
{
|
|
return app(DecisionRepository::class);
|
|
}
|
|
|
|
public static function galley(): GalleyRepository
|
|
{
|
|
return app(GalleyRepository::class);
|
|
}
|
|
|
|
public static function highlight(): HighlightRepository
|
|
{
|
|
return app(HighlightRepository::class);
|
|
}
|
|
|
|
public static function issue(): IssueRepository
|
|
{
|
|
return app(IssueRepository::class);
|
|
}
|
|
|
|
public static function publication(): PublicationRepository
|
|
{
|
|
return app(PublicationRepository::class);
|
|
}
|
|
|
|
public static function section(): SectionRepository
|
|
{
|
|
return app(SectionRepository::class);
|
|
}
|
|
|
|
public static function submission(): SubmissionRepository
|
|
{
|
|
return app(SubmissionRepository::class);
|
|
}
|
|
|
|
public static function submissionFile(): SubmissionFileRepository
|
|
{
|
|
return app(SubmissionFileRepository::class);
|
|
}
|
|
|
|
public static function user(): UserRepository
|
|
{
|
|
return app(UserRepository::class);
|
|
}
|
|
|
|
public static function mailable(): MailRepository
|
|
{
|
|
return app(MailRepository::class);
|
|
}
|
|
}
|