Файл: contao-3.5.8/system/modules/core/dca/tl_user_group.php
Строк: 230
<?php
/**
* Contao Open Source CMS
*
* Copyright (c) 2005-2016 Leo Feyer
*
* @license LGPL-3.0+
*/
/**
* Load tl_user language file
*/
System::loadLanguageFile('tl_user');
/**
* Table tl_user_group
*/
$GLOBALS['TL_DCA']['tl_user_group'] = array
(
// Config
'config' => array
(
'dataContainer' => 'Table',
'enableVersioning' => true,
'sql' => array
(
'keys' => array
(
'id' => 'primary'
)
)
),
// List
'list' => array
(
'sorting' => array
(
'mode' => 1,
'fields' => array('name'),
'flag' => 1,
'panelLayout' => 'filter,search,limit',
),
'label' => array
(
'fields' => array('name'),
'format' => '%s',
'label_callback' => array('tl_user_group', 'addIcon')
),
'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_user_group']['edit'],
'href' => 'act=edit',
'icon' => 'edit.gif'
),
'copy' => array
(
'label' => &$GLOBALS['TL_LANG']['tl_user_group']['copy'],
'href' => 'act=copy',
'icon' => 'copy.gif'
),
'delete' => array
(
'label' => &$GLOBALS['TL_LANG']['tl_user_group']['delete'],
'href' => 'act=delete',
'icon' => 'delete.gif',
'attributes' => 'onclick="if(!confirm('' . $GLOBALS['TL_LANG']['MSC']['deleteConfirm'] . ''))return false;Backend.getScrollOffset()"'
),
'toggle' => array
(
'label' => &$GLOBALS['TL_LANG']['tl_user_group']['toggle'],
'icon' => 'visible.gif',
'attributes' => 'onclick="Backend.getScrollOffset();return AjaxRequest.toggleVisibility(this,%s)"',
'button_callback' => array('tl_user_group', 'toggleIcon')
),
'show' => array
(
'label' => &$GLOBALS['TL_LANG']['tl_user_group']['show'],
'href' => 'act=show',
'icon' => 'show.gif'
)
)
),
// Palettes
'palettes' => array
(
'default' => '{title_legend},name;{modules_legend},modules,themes;{pagemounts_legend},pagemounts,alpty;{filemounts_legend},filemounts,fop;{forms_legend},forms,formp;{alexf_legend:hide},alexf;{account_legend},disable,start,stop',
),
// Fields
'fields' => array
(
'id' => array
(
'sql' => "int(10) unsigned NOT NULL auto_increment"
),
'tstamp' => array
(
'sql' => "int(10) unsigned NOT NULL default '0'"
),
'name' => array
(
'label' => &$GLOBALS['TL_LANG']['tl_user_group']['name'],
'exclude' => true,
'search' => true,
'inputType' => 'text',
'eval' => array('mandatory'=>true, 'unique'=>true, 'maxlength'=>255),
'sql' => "varchar(255) NOT NULL default ''"
),
'modules' => array
(
'label' => &$GLOBALS['TL_LANG']['tl_user']['modules'],
'exclude' => true,
'inputType' => 'checkbox',
'options_callback' => array('tl_user_group', 'getModules'),
'reference' => &$GLOBALS['TL_LANG']['MOD'],
'eval' => array('multiple'=>true, 'helpwizard'=>true),
'sql' => "blob NULL"
),
'themes' => array
(
'label' => &$GLOBALS['TL_LANG']['tl_user']['themes'],
'exclude' => true,
'inputType' => 'checkbox',
'options' => array('css', 'modules', 'layout', 'image_sizes', 'theme_import', 'theme_export'),
'reference' => &$GLOBALS['TL_LANG']['MOD'],
'eval' => array('multiple'=>true),
'sql' => "blob NULL"
),
'pagemounts' => array
(
'label' => &$GLOBALS['TL_LANG']['tl_user']['pagemounts'],
'exclude' => true,
'inputType' => 'pageTree',
'eval' => array('multiple'=>true, 'fieldType'=>'checkbox'),
'sql' => "blob NULL"
),
'alpty' => array
(
'label' => &$GLOBALS['TL_LANG']['tl_user']['alpty'],
'default' => array('regular', 'redirect', 'forward'),
'exclude' => true,
'inputType' => 'checkbox',
'options' => array_keys($GLOBALS['TL_PTY']),
'reference' => &$GLOBALS['TL_LANG']['PTY'],
'eval' => array('multiple'=>true, 'helpwizard'=>true),
'sql' => "blob NULL"
),
'filemounts' => array
(
'label' => &$GLOBALS['TL_LANG']['tl_user']['filemounts'],
'exclude' => true,
'inputType' => 'fileTree',
'eval' => array('multiple'=>true, 'fieldType'=>'checkbox'),
'sql' => "blob NULL"
),
'fop' => array
(
'label' => &$GLOBALS['TL_LANG']['FOP']['fop'],
'exclude' => true,
'default' => array('f1', 'f2', 'f3'),
'inputType' => 'checkbox',
'options' => array('f1', 'f2', 'f3', 'f4', 'f5', 'f6'),
'reference' => &$GLOBALS['TL_LANG']['FOP'],
'eval' => array('multiple'=>true),
'sql' => "blob NULL"
),
'forms' => array
(
'label' => &$GLOBALS['TL_LANG']['tl_user']['forms'],
'exclude' => true,
'inputType' => 'checkbox',
'foreignKey' => 'tl_form.title',
'eval' => array('multiple'=>true),
'sql' => "blob NULL"
),
'formp' => array
(
'label' => &$GLOBALS['TL_LANG']['tl_user']['formp'],
'exclude' => true,
'inputType' => 'checkbox',
'options' => array('create', 'delete'),
'reference' => &$GLOBALS['TL_LANG']['MSC'],
'eval' => array('multiple'=>true),
'sql' => "blob NULL"
),
'alexf' => array
(
'label' => &$GLOBALS['TL_LANG']['tl_user_group']['alexf'],
'exclude' => true,
'inputType' => 'checkbox',
'options_callback' => array('tl_user_group', 'getExcludedFields'),
'eval' => array('multiple'=>true, 'size'=>36),
'sql' => "blob NULL"
),
'disable' => array
(
'label' => &$GLOBALS['TL_LANG']['tl_user_group']['disable'],
'exclude' => true,
'filter' => true,
'inputType' => 'checkbox',
'sql' => "char(1) NOT NULL default ''"
),
'start' => array
(
'label' => &$GLOBALS['TL_LANG']['tl_user_group']['start'],
'exclude' => true,
'inputType' => 'text',
'eval' => array('rgxp'=>'datim', 'datepicker'=>true, 'tl_class'=>'w50 wizard'),
'sql' => "varchar(10) NOT NULL default ''"
),
'stop' => array
(
'label' => &$GLOBALS['TL_LANG']['tl_user_group']['stop'],
'exclude' => true,
'inputType' => 'text',
'eval' => array('rgxp'=>'datim', 'datepicker'=>true, 'tl_class'=>'w50 wizard'),
'sql' => "varchar(10) NOT NULL default ''"
)
)
);
/**
* Provide miscellaneous methods that are used by the data configuration array.
*
* @author Leo Feyer <https://github.com/leofeyer>
*/
class tl_user_group extends Backend
{
/**
* Import the back end user object
*/
public function __construct()
{
parent::__construct();
$this->import('BackendUser', 'User');
}
/**
* Add an image to each record
*
* @param array $row
* @param string $label
*
* @return string
*/
public function addIcon($row, $label)
{
$image = 'group';
if ($row['disable'] || strlen($row['start']) && $row['start'] > time() || strlen($row['stop']) && $row['stop'] < time())
{
$image .= '_';
}
return sprintf('<div class="list_icon" style="background-image:url('%ssystem/themes/%s/images/%s.gif')" data-icon="%s.gif" data-icon-disabled="%s.gif">%s</div>', TL_ASSETS_URL, Backend::getTheme(), $image, rtrim($image, '_'), rtrim($image, '_') . '_', $label);
}
/**
* Return all modules except profile modules
*
* @return array
*/
public function getModules()
{
$arrModules = array();
foreach ($GLOBALS['BE_MOD'] as $k=>$v)
{
if (!empty($v))
{
unset($v['undo']);
$arrModules[$k] = array_keys($v);
}
}
return $arrModules;
}
/**
* Return all excluded fields as HTML drop down menu
*
* @return array
*/
public function getExcludedFields()
{
$included = array();
foreach (ModuleLoader::getActive() as $strModule)
{
$strDir = 'system/modules/' . $strModule . '/dca';
if (!is_dir(TL_ROOT . '/' . $strDir))
{
continue;
}
foreach (scan(TL_ROOT . '/' . $strDir) as $strFile)
{
// Ignore non PHP files and files which have been included before
if (substr($strFile, -4) != '.php' || in_array($strFile, $included))
{
continue;
}
$included[] = $strFile;
$strTable = substr($strFile, 0, -4);
System::loadLanguageFile($strTable);
$this->loadDataContainer($strTable);
}
}
$arrReturn = array();
// Get all excluded fields
foreach ($GLOBALS['TL_DCA'] as $k=>$v)
{
if (is_array($v['fields']))
{
foreach ($v['fields'] as $kk=>$vv)
{
if ($vv['exclude'] || $vv['orig_exclude'])
{
$arrReturn[$k][specialchars($k.'::'.$kk)] = $vv['label'][0] ?: $kk;
}
}
}
}
ksort($arrReturn);
return $arrReturn;
}
/**
* Return the "toggle visibility" button
*
* @param array $row
* @param string $href
* @param string $label
* @param string $title
* @param string $icon
* @param string $attributes
*
* @return string
*/
public function toggleIcon($row, $href, $label, $title, $icon, $attributes)
{
if (strlen(Input::get('tid')))
{
$this->toggleVisibility(Input::get('tid'), (Input::get('state') == 1), (@func_get_arg(12) ?: null));
$this->redirect($this->getReferer());
}
// Check permissions AFTER checking the tid, so hacking attempts are logged
if (!$this->User->hasAccess('tl_user_group::disable', 'alexf'))
{
return '';
}
$href .= '&tid='.$row['id'].'&state='.$row['disable'];
if ($row['disable'])
{
$icon = 'invisible.gif';
}
return '<a href="'.$this->addToUrl($href).'" title="'.specialchars($title).'"'.$attributes.'>'.Image::getHtml($icon, $label, 'data-state="' . ($row['disable'] ? 0 : 1) . '"').'</a> ';
}
/**
* Disable/enable a user group
*
* @param integer $intId
* @param boolean $blnVisible
* @param DataContainer $dc
*/
public function toggleVisibility($intId, $blnVisible, DataContainer $dc=null)
{
// Set the ID and action
Input::setGet('id', $intId);
Input::setGet('act', 'toggle');
if ($dc)
{
$dc->id = $intId; // see #8043
}
// Check the field access permissions
if (!$this->User->hasAccess('tl_user_group::disable', 'alexf'))
{
$this->log('Not enough permissions to activate/deactivate user group ID "'.$intId.'"', __METHOD__, TL_ERROR);
$this->redirect('contao/main.php?act=error');
}
$objVersions = new Versions('tl_user_group', $intId);
$objVersions->initialize();
// Trigger the save_callback
if (is_array($GLOBALS['TL_DCA']['tl_user_group']['fields']['disable']['save_callback']))
{
foreach ($GLOBALS['TL_DCA']['tl_user_group']['fields']['disable']['save_callback'] as $callback)
{
if (is_array($callback))
{
$this->import($callback[0]);
$blnVisible = $this->{$callback[0]}->{$callback[1]}($blnVisible, ($dc ?: $this));
}
elseif (is_callable($callback))
{
$blnVisible = $callback($blnVisible, ($dc ?: $this));
}
}
}
// Update the database
$this->Database->prepare("UPDATE tl_user_group SET tstamp=". time() .", disable='" . ($blnVisible ? '' : 1) . "' WHERE id=?")
->execute($intId);
$objVersions->create();
$this->log('A new version of record "tl_user_group.id='.$intId.'" has been created'.$this->getParentEntries('tl_user_group', $intId), __METHOD__, TL_GENERAL);
}
}