uawdijnntqw1x1x1
IP : 216.73.216.158
Hostname : webm002.cluster123.gra.hosting.ovh.net
Kernel : Linux webm002.cluster123.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64
Disable Function : _dyuweyrj4,_dyuweyrj4r,dl
OS : Linux
PATH:
/
home
/
megadansyp
/
www
/
eace8
/
..
/
components
/
com_fields
/
..
/
com_eventgallery
/
library
/
emailtemplate.php
/
/
<?php /** * @package Sven.Bluege * @subpackage com_eventgallery * * @copyright Copyright (C) 2005 - 2019 Sven Bluege All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ // Check to ensure this file is included in Joomla! defined('_JEXEC') or die(); class EventgalleryLibraryEmailtemplate extends EventgalleryLibraryDatabaseObject { /** * @var int */ protected $_emailtemplate_id = NULL; /** * @var EventgalleryTableEmailtemplate */ protected $_emailtemplate = NULL; /** * @param object $object */ public function __construct($object) { if (!is_object($object)) { throw new InvalidArgumentException("can't create instance of email template because the given object is not an Object"); } $this->_emailtemplate = $object; $this->_emailtemplate_id = $object->id; parent::__construct(); } /** * @return int */ public function getId() { return $this->_emailtemplate->id; } /** * @return bool */ public function isPublished() { return $this->_emailtemplate->published==1; } /** * @return string */ public function getSubject() { return $this->_emailtemplate->subject; } /** * @return string */ public function getBody() { return $this->_emailtemplate->body; } /** * @return string */ public function getLanguage() { return $this->_emailtemplate->language; } /** * @return string */ public function getKey() { return $this->_emailtemplate->key; } /** * @return array */ public function getAttachments() { $registry = new JRegistry; $registry->loadString($this->_emailtemplate->attachments); return $registry->toArray(); } }
/home/megadansyp/www/eace8/../components/com_fields/../com_eventgallery/library/emailtemplate.php