73 lines
1.8 KiB
PHP
73 lines
1.8 KiB
PHP
<?php
|
|
|
|
/**
|
|
* @file plugins/blocks/information/InformationBlockPlugin.php
|
|
*
|
|
* 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.
|
|
*
|
|
* @class InformationBlockPlugin
|
|
*
|
|
* @brief Class for information block plugin
|
|
*/
|
|
|
|
namespace APP\plugins\blocks\information;
|
|
|
|
use PKP\plugins\BlockPlugin;
|
|
|
|
class InformationBlockPlugin extends BlockPlugin
|
|
{
|
|
/**
|
|
* Install default settings on journal creation.
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getContextSpecificPluginSettingsFile()
|
|
{
|
|
return $this->getPluginPath() . '/settings.xml';
|
|
}
|
|
|
|
/**
|
|
* Get the display name of this plugin.
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getDisplayName()
|
|
{
|
|
return __('plugins.block.information.displayName');
|
|
}
|
|
|
|
/**
|
|
* Get a description of the plugin.
|
|
*/
|
|
public function getDescription()
|
|
{
|
|
return __('plugins.block.information.description');
|
|
}
|
|
|
|
/**
|
|
* @see BlockPlugin::getContents
|
|
*
|
|
* @param null|mixed $request
|
|
*/
|
|
public function getContents($templateMgr, $request = null)
|
|
{
|
|
$journal = $request->getJournal();
|
|
if (!$journal) {
|
|
return '';
|
|
}
|
|
|
|
$templateMgr->assign([
|
|
'forReaders' => $journal->getLocalizedData('readerInformation'),
|
|
'forAuthors' => $journal->getLocalizedData('authorInformation'),
|
|
'forLibrarians' => $journal->getLocalizedData('librarianInformation'),
|
|
]);
|
|
return parent::getContents($templateMgr, $request);
|
|
}
|
|
}
|
|
|
|
if (!PKP_STRICT_MODE) {
|
|
class_alias('\APP\plugins\blocks\information\InformationBlockPlugin', '\InformationBlockPlugin');
|
|
}
|