| Server IP : 10.10.92.66 / Your IP : 104.23.243.85 Web Server : Apache/2.4.52 (Ubuntu) System : Linux jurnalpolinema 5.15.0-177-generic #187-Ubuntu SMP Sat Apr 11 22:54:33 UTC 2026 x86_64 User : jurnal ( 1001) PHP Version : 7.4.33 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/jurnal/public_html/lib/pkp/classes/plugins/ |
Upload File : |
<?php
/**
* @file classes/plugins/LazyLoadPlugin.inc.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 CachedPlugin
* @ingroup plugins
*
* @brief Abstract class for plugins that optionally
* support lazy load.
*/
import('lib.pkp.classes.plugins.Plugin');
abstract class LazyLoadPlugin extends Plugin {
//
// Override public methods from Plugin
//
/**
* @copydoc Plugin::register()
*/
function register($category, $path, $mainContextId = null) {
if (!parent::register($category, $path, $mainContextId)) return false;
$this->addLocaleData();
return true;
}
//
// Override protected methods from Plugin
//
/**
* @see Plugin::getName()
*/
function getName() {
// Lazy load enabled plug-ins always use the plugin's class name
// as plug-in name. Legacy plug-ins will override this method so
// this implementation is backwards compatible.
// NB: strtolower was required for PHP4 compatibility.
return strtolower_codesafe(get_class($this));
}
//
// Public methods required to support lazy load.
//
/**
* Determine whether or not this plugin is currently enabled.
* @param $contextId integer To identify if the plugin is enabled
* we need a context. This context is usually taken from the
* request but sometimes there is no context in the request
* (e.g. when executing CLI commands). Then the main context
* can be given as an explicit ID.
* @return boolean
*/
function getEnabled($contextId = null) {
if ($contextId == null) {
$contextId = $this->getCurrentContextId();
if ($this->isSitePlugin()) {
$contextId = 0;
}
}
return $this->getSetting($contextId, 'enabled');
}
/**
* Set whether or not this plugin is currently enabled.
* @param $enabled boolean
*/
function setEnabled($enabled) {
$contextId = $this->getCurrentContextId();
if ($this->isSitePlugin()) {
$contextId = 0;
}
$this->updateSetting($contextId, 'enabled', $enabled, 'bool');
}
/**
* @copydoc Plugin::getCanEnable()
*/
function getCanEnable() {
return true;
}
/**
* @copydoc Plugin::getCanDisable()
*/
function getCanDisable() {
return true;
}
/**
* Get the current context ID or the site-wide context ID (0) if no context
* can be found.
*/
function getCurrentContextId() {
$context = Application::get()->getRequest()->getContext();
return is_null($context) ? 0 : $context->getId();
}
}