first commit

This commit is contained in:
CHIEFSOFT\ameye
2024-06-08 17:09:23 -04:00
commit df3a033196
17887 changed files with 8637778 additions and 0 deletions
@@ -0,0 +1,35 @@
{**
* templates/management/additionalDistributionTabs.tpl
*
* Copyright (c) 2014-2021 Simon Fraser University
* Copyright (c) 2003-2021 John Willinsky
* Distributed under the GNU GPL v3. For full terms see the file docs/COPYING.
*
* @brief OJS-specific tabs for the distribution settings page
*}
<tab id="access" label="{translate key="manager.distribution.access"}">
{help file="settings/distribution-settings" section="access" class="pkp_help_tab"}
<pkp-form
v-bind="components.{$smarty.const.FORM_ACCESS}"
@set="set"
/>
</tab>
<tab id="archive" label="{translate key="manager.website.archiving"}">
{help file="settings/distribution-settings" section="archiving" class="pkp_help_tab"}
<tabs :is-side-tabs="true" :track-history="true">
<tab id="pln" label="{translate key="manager.setup.plnPluginArchiving"}">
<pkp-form
v-bind="components.archivePn"
@set="set"
/>
</tab>
<tab id="lockss" label="{translate key="manager.setup.otherLockss"}">
<pkp-form
v-bind="components.{$smarty.const.FORM_ARCHIVING_LOCKSS}"
@set="set"
/>
</tab>
{call_hook name="Template::Settings::distribution::archiving"}
</tabs>
</tab>
+55
View File
@@ -0,0 +1,55 @@
{**
* templates/management/context.tpl
*
* Copyright (c) 2014-2021 Simon Fraser University
* Copyright (c) 2003-2021 John Willinsky
* Distributed under the GNU GPL v3. For full terms see the file docs/COPYING.
*
* The journal settings page.
*}
{extends file="layouts/backend.tpl"}
{block name="page"}
<h1 class="app__pageHeading">
{translate key="manager.setup"}
</h1>
{if $newVersionAvailable}
<notification>
{translate key="site.upgradeAvailable.manager" currentVersion=$currentVersion latestVersion=$latestVersion siteAdminName=$siteAdmin->getFullName() siteAdminEmail=$siteAdmin->getEmail()}
</notification>
{/if}
{if $currentContext->getData('disableSubmissions')}
<notification>
{translate key="manager.setup.disableSubmissions.notAccepting"}
</notification>
{/if}
<tabs :track-history="true">
<tab id="masthead" label="{translate key="manager.setup.masthead"}">
{help file="settings/journal-settings" class="pkp_help_tab"}
<pkp-form
v-bind="components.{$smarty.const.FORM_MASTHEAD}"
@set="set"
/>
</tab>
<tab id="contact" label="{translate key="about.contact"}">
{help file="settings/journal-settings" section="contact" class="pkp_help_tab"}
<pkp-form
v-bind="components.{$smarty.const.FORM_CONTACT}"
@set="set"
/>
</tab>
<tab id="sections" label="{translate key="section.sections"}">
{help file="settings/journal-settings" section="sections" class="pkp_help_tab"}
{capture assign=sectionsGridUrl}{url router=\PKP\core\PKPApplication::ROUTE_COMPONENT component="grid.settings.sections.SectionGridHandler" op="fetchGrid" escape=false}{/capture}
{load_url_in_div id="sectionsGridContainer" url=$sectionsGridUrl}
</tab>
<tab id="categories" label="{translate key="grid.category.categories"}">
{help file="settings/journal-settings" section="categories" class="pkp_help_tab"}
{capture assign=categoriesUrl}{url router=\PKP\core\PKPApplication::ROUTE_COMPONENT component="grid.settings.category.CategoryCategoryGridHandler" op="fetchGrid" escape=false}{/capture}
{load_url_in_div id="categoriesContainer" url=$categoriesUrl}
</tab>
</tabs>
{/block}
+33
View File
@@ -0,0 +1,33 @@
{extends file="layouts/backend.tpl"}
{block name="page"}
<!-- Add page content here -->
<h1 class="app__pageHeading">
{translate key="doi.manager.displayName"}
</h1>
{if $currentContext->getData('enableDois') && !$currentContext->getData('doiPrefix')}
{capture assign=doiSettingsUrl}{url page="management" op="settings" path="distribution" anchor="dois"}{/capture}
<notification class="pkpNotification--backendPage__header" type="warning">{translate key="manager.dois.settings.prefixRequired" doiSettingsUrl=$doiSettingsUrl}</notification>
{/if}
<tabs :track-history="true">
{if $displaySubmissionsTab}
<tab id="submission-doi-management" label="{translate key="article.articles"}">
<h1>{translate key="article.articles"}</h1>
<doi-list-panel
v-bind="components.submissionDoiListPanel"
@set="set"
/>
</tab>
{/if}
{if $displayIssuesTab}
<tab id="issue-doi-management" label="{translate key="issue.issues"}">
<h1>{translate key="issue.issues"}</h1>
<doi-list-panel
v-bind="components.issueDoiListPanel"
@set="set"
/>
</tab>
{/if}
</tabs>
{/block}