/
home
/
assocoweys
/
sompe
/
administrator
/
components
/
com_mails
/
src
/
Table
/
Upload File
HOME
<?php /** * @package Joomla.Administrator * @subpackage com_mails * * @copyright (C) 2019 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ namespace Joomla\Component\Mails\Administrator\Table; use Joomla\CMS\Table\Table; use Joomla\Database\DatabaseDriver; use Joomla\Event\DispatcherInterface; // phpcs:disable PSR1.Files.SideEffects \defined('_JEXEC') or die; // phpcs:enable PSR1.Files.SideEffects /** * Mail Table class. * * @since 4.0.0 */ class TemplateTable extends Table { /** * An array of key names to be json encoded in the bind function * * @var array * @since 4.0.0 */ protected $_jsonEncode = ['attachments', 'params']; /** * Constructor * * @param DatabaseDriver $db Database connector object * @param ?DispatcherInterface $dispatcher Event dispatcher for this table * * @since 4.0.0 */ public function __construct(DatabaseDriver $db, ?DispatcherInterface $dispatcher = null) { parent::__construct('#__mail_templates', ['template_id', 'language'], $db, $dispatcher); } }