Файл: contao-3.5.8/system/modules/calendar/dca/tl_module.php
Строк: 259
<?php
/**
* Contao Open Source CMS
*
* Copyright (c) 2005-2016 Leo Feyer
*
* @license LGPL-3.0+
*/
/**
* Add palettes to tl_module
*/
$GLOBALS['TL_DCA']['tl_module']['palettes']['calendar'] = '{title_legend},name,headline,type;{config_legend},cal_calendar,cal_noSpan,cal_startDay;{redirect_legend},jumpTo;{template_legend:hide},cal_ctemplate,customTpl;{protected_legend:hide},protected;{expert_legend:hide},guests,cssID,space';
$GLOBALS['TL_DCA']['tl_module']['palettes']['eventlist'] = '{title_legend},name,headline,type;{config_legend},cal_calendar,cal_noSpan,cal_format,cal_ignoreDynamic,cal_order,cal_readerModule,cal_limit,perPage;{template_legend:hide},cal_template,customTpl;{image_legend:hide},imgSize;{protected_legend:hide},protected;{expert_legend:hide},guests,cssID,space';
$GLOBALS['TL_DCA']['tl_module']['palettes']['eventreader'] = '{title_legend},name,headline,type;{config_legend},cal_calendar;{template_legend:hide},cal_template,customTpl;{image_legend},imgSize;{protected_legend:hide},protected;{expert_legend:hide},guests,cssID,space';
$GLOBALS['TL_DCA']['tl_module']['palettes']['eventmenu'] = '{title_legend},name,headline,type;{config_legend},cal_calendar,cal_noSpan,cal_showQuantity,cal_format,cal_startDay,cal_order;{redirect_legend},jumpTo;{template_legend:hide},customTpl;{protected_legend:hide},protected;{expert_legend:hide},guests,cssID,space';
/**
* Add fields to tl_module
*/
$GLOBALS['TL_DCA']['tl_module']['fields']['cal_calendar'] = array
(
'label' => &$GLOBALS['TL_LANG']['tl_module']['cal_calendar'],
'exclude' => true,
'inputType' => 'checkbox',
'options_callback' => array('tl_module_calendar', 'getCalendars'),
'eval' => array('mandatory'=>true, 'multiple'=>true),
'sql' => "blob NULL"
);
$GLOBALS['TL_DCA']['tl_module']['fields']['cal_noSpan'] = array
(
'label' => &$GLOBALS['TL_LANG']['tl_module']['cal_noSpan'],
'exclude' => true,
'inputType' => 'checkbox',
'sql' => "char(1) NOT NULL default ''"
);
$GLOBALS['TL_DCA']['tl_module']['fields']['cal_startDay'] = array
(
'label' => &$GLOBALS['TL_LANG']['tl_module']['cal_startDay'],
'default' => 1,
'exclude' => true,
'inputType' => 'select',
'options' => array(0, 1, 2, 3, 4, 5, 6),
'reference' => &$GLOBALS['TL_LANG']['DAYS'],
'eval' => array('tl_class'=>'w50'),
'sql' => "smallint(5) unsigned NOT NULL default '1'"
);
$GLOBALS['TL_DCA']['tl_module']['fields']['cal_format'] = array
(
'label' => &$GLOBALS['TL_LANG']['tl_module']['cal_format'],
'default' => 'cal_month',
'exclude' => true,
'inputType' => 'select',
'options_callback' => array('tl_module_calendar', 'getFormats'),
'reference' => &$GLOBALS['TL_LANG']['tl_module'],
'eval' => array('tl_class'=>'w50'),
'wizard' => array
(
array('tl_module_calendar', 'hideStartDay')
),
'sql' => "varchar(32) NOT NULL default ''"
);
$GLOBALS['TL_DCA']['tl_module']['fields']['cal_ignoreDynamic'] = array
(
'label' => &$GLOBALS['TL_LANG']['tl_module']['cal_ignoreDynamic'],
'exclude' => true,
'inputType' => 'checkbox',
'eval' => array('tl_class'=>'w50 m12'),
'sql' => "char(1) NOT NULL default ''"
);
$GLOBALS['TL_DCA']['tl_module']['fields']['cal_order'] = array
(
'label' => &$GLOBALS['TL_LANG']['tl_module']['cal_order'],
'default' => 'ascending',
'exclude' => true,
'inputType' => 'select',
'options' => array('ascending', 'descending'),
'reference' => &$GLOBALS['TL_LANG']['MSC'],
'eval' => array('tl_class'=>'w50'),
'sql' => "varchar(32) NOT NULL default ''"
);
$GLOBALS['TL_DCA']['tl_module']['fields']['cal_readerModule'] = array
(
'label' => &$GLOBALS['TL_LANG']['tl_module']['cal_readerModule'],
'exclude' => true,
'inputType' => 'select',
'options_callback' => array('tl_module_calendar', 'getReaderModules'),
'reference' => &$GLOBALS['TL_LANG']['tl_module'],
'eval' => array('includeBlankOption'=>true, 'tl_class'=>'w50'),
'sql' => "int(10) unsigned NOT NULL default '0'"
);
$GLOBALS['TL_DCA']['tl_module']['fields']['cal_limit'] = array
(
'label' => &$GLOBALS['TL_LANG']['tl_module']['cal_limit'],
'exclude' => true,
'inputType' => 'text',
'eval' => array('rgxp'=>'natural', 'tl_class'=>'w50'),
'sql' => "smallint(5) unsigned NOT NULL default '0'"
);
$GLOBALS['TL_DCA']['tl_module']['fields']['cal_template'] = array
(
'label' => &$GLOBALS['TL_LANG']['tl_module']['cal_template'],
'default' => 'event_full',
'exclude' => true,
'inputType' => 'select',
'options_callback' => array('tl_module_calendar', 'getEventTemplates'),
'eval' => array('tl_class'=>'w50'),
'sql' => "varchar(32) NOT NULL default ''"
);
$GLOBALS['TL_DCA']['tl_module']['fields']['cal_ctemplate'] = array
(
'label' => &$GLOBALS['TL_LANG']['tl_module']['cal_ctemplate'],
'default' => 'cal_default',
'exclude' => true,
'inputType' => 'select',
'options_callback' => array('tl_module_calendar', 'getCalendarTemplates'),
'eval' => array('tl_class'=>'w50'),
'sql' => "varchar(32) NOT NULL default ''"
);
$GLOBALS['TL_DCA']['tl_module']['fields']['cal_showQuantity'] = array
(
'label' => &$GLOBALS['TL_LANG']['tl_module']['cal_showQuantity'],
'exclude' => true,
'inputType' => 'checkbox',
'sql' => "char(1) NOT NULL default ''"
);
/**
* Add the comments template drop-down menu
*/
if (in_array('comments', ModuleLoader::getActive()))
{
$GLOBALS['TL_DCA']['tl_module']['palettes']['eventreader'] = str_replace('{protected_legend:hide}', '{comment_legend:hide},com_template;{protected_legend:hide}', $GLOBALS['TL_DCA']['tl_module']['palettes']['eventreader']);
}
/**
* Provide miscellaneous methods that are used by the data configuration array.
*
* @author Leo Feyer <https://github.com/leofeyer>
*/
class tl_module_calendar extends Backend
{
/**
* Import the back end user object
*/
public function __construct()
{
parent::__construct();
$this->import('BackendUser', 'User');
}
/**
* Get all calendars and return them as array
*
* @return array
*/
public function getCalendars()
{
if (!$this->User->isAdmin && !is_array($this->User->calendars))
{
return array();
}
$arrCalendars = array();
$objCalendars = $this->Database->execute("SELECT id, title FROM tl_calendar ORDER BY title");
while ($objCalendars->next())
{
if ($this->User->hasAccess($objCalendars->id, 'calendars'))
{
$arrCalendars[$objCalendars->id] = $objCalendars->title;
}
}
return $arrCalendars;
}
/**
* Get all event reader modules and return them as array
*
* @return array
*/
public function getReaderModules()
{
$arrModules = array();
$objModules = $this->Database->execute("SELECT m.id, m.name, t.name AS theme FROM tl_module m LEFT JOIN tl_theme t ON m.pid=t.id WHERE m.type='eventreader' ORDER BY t.name, m.name");
while ($objModules->next())
{
$arrModules[$objModules->theme][$objModules->id] = $objModules->name . ' (ID ' . $objModules->id . ')';
}
return $arrModules;
}
/**
* Return the calendar formats depending on the module type
*
* @param DataContainer $dc
*
* @return array
*/
public function getFormats(DataContainer $dc)
{
if ($dc->activeRecord->type == 'eventmenu')
{
return array('cal_day', 'cal_month', 'cal_year');
}
return array
(
'cal_list' => array('cal_day', 'cal_month', 'cal_year', 'cal_all'),
'cal_upcoming' => array('next_7', 'next_14', 'next_30', 'next_90', 'next_180', 'next_365', 'next_two', 'next_cur_month', 'next_cur_year', 'next_next_month', 'next_next_year', 'next_all'),
'cal_past' => array('past_7', 'past_14', 'past_30', 'past_90', 'past_180', 'past_365', 'past_two', 'past_cur_month', 'past_cur_year', 'past_prev_month', 'past_prev_year', 'past_all')
);
}
/**
* Hide the start day drop-down if not applicable
*
* @return string
*/
public function hideStartDay()
{
return '
<script>
var enableStartDay = function() {
var e1 = $("ctrl_cal_startDay").getParent("div");
var e2 = $("ctrl_cal_order").getParent("div");
if ($("ctrl_cal_format").value == "cal_day") {
e1.setStyle("display", "block");
e2.setStyle("display", "none");
} else {
e1.setStyle("display", "none");
e2.setStyle("display", "block");
}
};
window.addEvent("domready", function() {
if ($("ctrl_cal_startDay")) {
enableStartDay();
$("ctrl_cal_format").addEvent("change", enableStartDay);
}
});
</script>';
}
/**
* Return all event templates as array
*
* @return array
*/
public function getEventTemplates()
{
return $this->getTemplateGroup('event_');
}
/**
* Return all calendar templates as array
*
* @return array
*/
public function getCalendarTemplates()
{
return $this->getTemplateGroup('cal_');
}
}