Файл: contao-3.5.8/system/modules/newsletter/dca/tl_newsletter_channel.php
Строк: 325
<?php
/**
* Contao Open Source CMS
*
* Copyright (c) 2005-2016 Leo Feyer
*
* @license LGPL-3.0+
*/
/**
* Table tl_newsletter_channel
*/
$GLOBALS['TL_DCA']['tl_newsletter_channel'] = array
(
// Config
'config' => array
(
'dataContainer' => 'Table',
'ctable' => array('tl_newsletter', 'tl_newsletter_recipients'),
'switchToEdit' => true,
'enableVersioning' => true,
'onload_callback' => array
(
array('tl_newsletter_channel', 'checkPermission')
),
'sql' => array
(
'keys' => array
(
'id' => 'primary'
)
)
),
// List
'list' => array
(
'sorting' => array
(
'mode' => 1,
'fields' => array('title'),
'flag' => 1,
'panelLayout' => 'search,limit'
),
'label' => array
(
'fields' => array('title'),
'format' => '%s'
),
'global_operations' => array
(
'all' => array
(
'label' => &$GLOBALS['TL_LANG']['MSC']['all'],
'href' => 'act=select',
'class' => 'header_edit_all',
'attributes' => 'onclick="Backend.getScrollOffset()" accesskey="e"'
)
),
'operations' => array
(
'edit' => array
(
'label' => &$GLOBALS['TL_LANG']['tl_newsletter_channel']['edit'],
'href' => 'table=tl_newsletter',
'icon' => 'edit.gif'
),
'editheader' => array
(
'label' => &$GLOBALS['TL_LANG']['tl_newsletter_channel']['editheader'],
'href' => 'act=edit',
'icon' => 'header.gif',
'button_callback' => array('tl_newsletter_channel', 'editHeader')
),
'copy' => array
(
'label' => &$GLOBALS['TL_LANG']['tl_newsletter_channel']['copy'],
'href' => 'act=copy',
'icon' => 'copy.gif',
'button_callback' => array('tl_newsletter_channel', 'copyChannel')
),
'delete' => array
(
'label' => &$GLOBALS['TL_LANG']['tl_newsletter_channel']['delete'],
'href' => 'act=delete',
'icon' => 'delete.gif',
'attributes' => 'onclick="if(!confirm('' . $GLOBALS['TL_LANG']['MSC']['deleteConfirm'] . ''))return false;Backend.getScrollOffset()"',
'button_callback' => array('tl_newsletter_channel', 'deleteChannel')
),
'show' => array
(
'label' => &$GLOBALS['TL_LANG']['tl_newsletter_channel']['show'],
'href' => 'act=show',
'icon' => 'show.gif'
),
'recipients' => array
(
'label' => &$GLOBALS['TL_LANG']['tl_newsletter_channel']['recipients'],
'href' => 'table=tl_newsletter_recipients',
'icon' => 'mgroup.gif'
)
)
),
// Palettes
'palettes' => array
(
'__selector__' => array('useSMTP'),
'default' => '{title_legend},title,jumpTo;{smtp_legend:hide},useSMTP'
),
// Subpalettes
'subpalettes' => array
(
'useSMTP' => 'smtpHost,smtpUser,smtpPass,smtpEnc,smtpPort'
),
// Fields
'fields' => array
(
'id' => array
(
'sql' => "int(10) unsigned NOT NULL auto_increment"
),
'tstamp' => array
(
'sql' => "int(10) unsigned NOT NULL default '0'"
),
'title' => array
(
'label' => &$GLOBALS['TL_LANG']['tl_newsletter_channel']['title'],
'search' => true,
'exclude' => true,
'inputType' => 'text',
'eval' => array('mandatory'=>true, 'decodeEntities'=>true, 'maxlength'=>255),
'sql' => "varchar(255) NOT NULL default ''"
),
'jumpTo' => array
(
'label' => &$GLOBALS['TL_LANG']['tl_newsletter_channel']['jumpTo'],
'exclude' => true,
'inputType' => 'pageTree',
'foreignKey' => 'tl_page.title',
'eval' => array('fieldType'=>'radio'),
'sql' => "int(10) unsigned NOT NULL default '0'",
'relation' => array('type'=>'hasOne', 'load'=>'lazy')
),
'useSMTP' => array
(
'label' => &$GLOBALS['TL_LANG']['tl_newsletter_channel']['useSMTP'],
'exclude' => true,
'inputType' => 'checkbox',
'eval' => array('submitOnChange'=>true),
'sql' => "char(1) NOT NULL default ''"
),
'smtpHost' => array
(
'label' => &$GLOBALS['TL_LANG']['tl_newsletter_channel']['smtpHost'],
'exclude' => true,
'inputType' => 'text',
'eval' => array('mandatory'=>true, 'maxlength'=>64, 'nospace'=>true, 'doNotShow'=>true, 'tl_class'=>'long'),
'sql' => "varchar(64) NOT NULL default ''"
),
'smtpUser' => array
(
'label' => &$GLOBALS['TL_LANG']['tl_newsletter_channel']['smtpUser'],
'exclude' => true,
'inputType' => 'text',
'eval' => array('decodeEntities'=>true, 'maxlength'=>128, 'doNotShow'=>true, 'tl_class'=>'w50'),
'sql' => "varchar(128) NOT NULL default ''"
),
'smtpPass' => array
(
'label' => &$GLOBALS['TL_LANG']['tl_newsletter_channel']['smtpPass'],
'exclude' => true,
'inputType' => 'textStore',
'eval' => array('decodeEntities'=>true, 'maxlength'=>32, 'doNotShow'=>true, 'tl_class'=>'w50'),
'sql' => "varchar(32) NOT NULL default ''"
),
'smtpEnc' => array
(
'label' => &$GLOBALS['TL_LANG']['tl_newsletter_channel']['smtpEnc'],
'exclude' => true,
'inputType' => 'select',
'options' => array(''=>'-', 'ssl'=>'SSL', 'tls'=>'TLS'),
'eval' => array('doNotShow'=>true, 'tl_class'=>'w50'),
'sql' => "varchar(3) NOT NULL default ''"
),
'smtpPort' => array
(
'label' => &$GLOBALS['TL_LANG']['tl_newsletter_channel']['smtpPort'],
'default' => 25,
'exclude' => true,
'inputType' => 'text',
'eval' => array('mandatory'=>true, 'rgxp'=>'natural', 'nospace'=>true, 'doNotShow'=>true, 'tl_class'=>'w50'),
'sql' => "smallint(5) unsigned NOT NULL default '0'"
)
)
);
/**
* Provide miscellaneous methods that are used by the data configuration array.
*
* @author Leo Feyer <https://github.com/leofeyer>
*/
class tl_newsletter_channel extends Backend
{
/**
* Import the back end user object
*/
public function __construct()
{
parent::__construct();
$this->import('BackendUser', 'User');
}
/**
* Check permissions to edit table tl_newsletter_channel
*/
public function checkPermission()
{
if ($this->User->isAdmin)
{
return;
}
// Set root IDs
if (!is_array($this->User->newsletters) || empty($this->User->newsletters))
{
$root = array(0);
}
else
{
$root = $this->User->newsletters;
}
$GLOBALS['TL_DCA']['tl_newsletter_channel']['list']['sorting']['root'] = $root;
// Check permissions to add channels
if (!$this->User->hasAccess('create', 'newsletterp'))
{
$GLOBALS['TL_DCA']['tl_newsletter_channel']['config']['closed'] = true;
}
// Check current action
switch (Input::get('act'))
{
case 'create':
case 'select':
// Allow
break;
case 'edit':
// Dynamically add the record to the user profile
if (!in_array(Input::get('id'), $root))
{
$arrNew = $this->Session->get('new_records');
if (is_array($arrNew['tl_newsletter_channel']) && in_array(Input::get('id'), $arrNew['tl_newsletter_channel']))
{
// Add permissions on user level
if ($this->User->inherit == 'custom' || !$this->User->groups[0])
{
$objUser = $this->Database->prepare("SELECT newsletters, newsletterp FROM tl_user WHERE id=?")
->limit(1)
->execute($this->User->id);
$arrNewsletterp = deserialize($objUser->newsletterp);
if (is_array($arrNewsletterp) && in_array('create', $arrNewsletterp))
{
$arrNewsletters = deserialize($objUser->newsletters);
$arrNewsletters[] = Input::get('id');
$this->Database->prepare("UPDATE tl_user SET newsletters=? WHERE id=?")
->execute(serialize($arrNewsletters), $this->User->id);
}
}
// Add permissions on group level
elseif ($this->User->groups[0] > 0)
{
$objGroup = $this->Database->prepare("SELECT newsletters, newsletterp FROM tl_user_group WHERE id=?")
->limit(1)
->execute($this->User->groups[0]);
$arrNewsletterp = deserialize($objGroup->newsletterp);
if (is_array($arrNewsletterp) && in_array('create', $arrNewsletterp))
{
$arrNewsletters = deserialize($objGroup->newsletters);
$arrNewsletters[] = Input::get('id');
$this->Database->prepare("UPDATE tl_user_group SET newsletters=? WHERE id=?")
->execute(serialize($arrNewsletters), $this->User->groups[0]);
}
}
// Add new element to the user object
$root[] = Input::get('id');
$this->User->newsletter = $root;
}
}
// No break;
case 'copy':
case 'delete':
case 'show':
if (!in_array(Input::get('id'), $root) || (Input::get('act') == 'delete' && !$this->User->hasAccess('delete', 'newsletterp')))
{
$this->log('Not enough permissions to '.Input::get('act').' newsletter channel ID "'.Input::get('id').'"', __METHOD__, TL_ERROR);
$this->redirect('contao/main.php?act=error');
}
break;
case 'editAll':
case 'deleteAll':
case 'overrideAll':
$session = $this->Session->getData();
if (Input::get('act') == 'deleteAll' && !$this->User->hasAccess('delete', 'newsletterp'))
{
$session['CURRENT']['IDS'] = array();
}
else
{
$session['CURRENT']['IDS'] = array_intersect($session['CURRENT']['IDS'], $root);
}
$this->Session->setData($session);
break;
default:
if (strlen(Input::get('act')))
{
$this->log('Not enough permissions to '.Input::get('act').' newsletter channels', __METHOD__, TL_ERROR);
$this->redirect('contao/main.php?act=error');
}
break;
}
}
/**
* Return the edit header button
*
* @param array $row
* @param string $href
* @param string $label
* @param string $title
* @param string $icon
* @param string $attributes
*
* @return string
*/
public function editHeader($row, $href, $label, $title, $icon, $attributes)
{
return $this->User->canEditFieldsOf('tl_newsletter_channel') ? '<a href="'.$this->addToUrl($href.'&id='.$row['id']).'" title="'.specialchars($title).'"'.$attributes.'>'.Image::getHtml($icon, $label).'</a> ' : Image::getHtml(preg_replace('/.gif$/i', '_.gif', $icon)).' ';
}
/**
* Return the copy channel button
*
* @param array $row
* @param string $href
* @param string $label
* @param string $title
* @param string $icon
* @param string $attributes
*
* @return string
*/
public function copyChannel($row, $href, $label, $title, $icon, $attributes)
{
return $this->User->hasAccess('create', 'newsletterp') ? '<a href="'.$this->addToUrl($href.'&id='.$row['id']).'" title="'.specialchars($title).'"'.$attributes.'>'.Image::getHtml($icon, $label).'</a> ' : Image::getHtml(preg_replace('/.gif$/i', '_.gif', $icon)).' ';
}
/**
* Return the delete channel button
*
* @param array $row
* @param string $href
* @param string $label
* @param string $title
* @param string $icon
* @param string $attributes
*
* @return string
*/
public function deleteChannel($row, $href, $label, $title, $icon, $attributes)
{
return $this->User->hasAccess('delete', 'newsletterp') ? '<a href="'.$this->addToUrl($href.'&id='.$row['id']).'" title="'.specialchars($title).'"'.$attributes.'>'.Image::getHtml($icon, $label).'</a> ' : Image::getHtml(preg_replace('/.gif$/i', '_.gif', $icon)).' ';
}
}