Mr.Fn4ticHz Shell
Server IP : 10.10.92.66  /  Your IP : 104.23.197.230
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/mail/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME ]     

Current File : /home/jurnal/public_html/lib/pkp/classes/mail/EmailTemplate.inc.php
<?php

/**
 * @file classes/mail/EmailTemplate.inc.php
 *
 * Copyright (c) 2014-2021 Simon Fraser University
 * Copyright (c) 2000-2021 John Willinsky
 * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING.
 *
 * @class EmailTemplate
 * @ingroup mail
 * @see EmailTemplateDAO
 *
 * @brief Describes basic email template properties.
 */

class EmailTemplate extends DataObject {

	//
	// Get/set methods
	//

	/**
	 * Get ID of journal/conference/...
	 * @deprecated 3.2
	 * @return int
	 */
	function getAssocId() {
		return $this->getData('contextId');
	}

	/**
	 * Set ID of journal/conference/...
	 * @deprecated 3.2
	 * @param $assocId int
	 */
	function setAssocId($assocId) {
		$this->setData('contextId', $assocId);
	}

	/**
	 * Determine whether or not this is a custom email template
	 * (ie one that was created by the journal/conference/... manager and
	 * is not part of the system upon installation)
	 * @deprecated 3.2
	 */
	function isCustomTemplate() {
		return false;
	}

	/**
	 * Get sender role ID.
	 * @deprecated 3.2
	 */
	function getFromRoleId() {
		return $this->getData('fromRoleId');
	}

	/**
	 * Set sender role ID.
	 * @param $fromRoleId int
	 * @deprecated 3.2
	 */
	function setFromRoleId($fromRoleId) {
		$this->setData('fromRoleId', $fromRoleId);
	}

	/**
	 * Get recipient role ID.
	 * @deprecated 3.2
	 */
	function getToRoleId() {
		return $this->getData('toRoleId');
	}

	/**
	 * Set recipient role ID.
	 * @deprecated 3.2
	 * @param $toRoleId int
	 */
	function setToRoleId($toRoleId) {
		$this->setData('toRoleId', $toRoleId);
	}

	/**
	 * Get ID of email template.
	 * @deprecated 3.2
	 * @return int
	 */
	function getEmailId() {
		return $this->getData('id');
	}

	/**
	 * Set ID of email template.
	 * @deprecated 3.2
	 * @param $emailId int
	 */
	function setEmailId($emailId) {
		$this->setData('id', $emailId);
	}

	/**
	 * Get key of email template.
	 * @deprecated 3.2
	 * @return string
	 */
	function getEmailKey() {
		return $this->getData('key');
	}

	/**
	 * Set key of email template.
	 * @deprecated 3.2
	 * @param $key string
	 */
	function setEmailKey($key) {
		$this->setData('key', $key);
	}

	/**
	 * Get the enabled setting of email template.
	 * @deprecated 3.2
	 * @return boolean
	 */
	function getEnabled() {
		return $this->getData('enabled');
	}

	/**
	 * Set the enabled setting of email template.
	 * @deprecated 3.2
	 * @param $enabled boolean
	 */
	function setEnabled($enabled) {
		$this->setData('enabled', $enabled);
	}

	/**
	 * Check if email template is allowed to be disabled.
	 * @deprecated 3.2
	 * @return boolean
	 */
	function getCanDisable() {
		return $this->getData('canDisable');
	}

	/**
	 * Set whether or not email template is allowed to be disabled.
	 * @deprecated 3.2
	 * @param $canDisable boolean
	 */
	function setCanDisable($canDisable) {
		$this->setData('canDisable', $canDisable);
	}

	/**
	 * Get subject of email template.
	 * @deprecated 3.2
	 * @return string
	 */
	function getSubject() {
		return $this->getData('subject');
	}

	/**
	 * Set subject of email.
	 * @deprecated 3.2
	 * @param $subject string
	 */
	function setSubject($subject) {
		$this->setData('subject', $subject);
	}

	/**
	 * Get body of email template.
	 * @deprecated 3.2
	 * @return string
	 */
	function getBody() {
		return $this->getData('body');
	}

	/**
	 * Set body of email template.
	 * @deprecated 3.2
	 * @param $body string
	 */
	function setBody($body) {
		$this->setData('body', $body);
	}
}



Mr.F4ticHz - 2022
Mr.Fn4tcHzam