<?php /* * This file is part of eSales Media SinglereisenBundle * * (c) Benjamin Roth * * @license proprietary */ $GLOBALS['TL_DCA']['tl_sr_trips'] = array ( // Config 'config' => array ( 'dataContainer' => 'Table', 'enableVersioning' => true, //'ctable' => array('tl_sr_trips_field'), 'markAsCopy' => 'title', 'onload_callback' => array ( ), 'oncreate_callback' => array ( ), 'oncopy_callback' => array ( ), 'sql' => array ( 'keys' => array ( 'id' => 'primary', 'alias' => 'index' ) ) ), // List 'list' => array ( 'sorting' => array ( 'mode' => 2, 'fields' => array('title'), 'flag' => 11, 'panelLayout' => 'filter;search,limit', ), 'label' => array ( 'fields' => array('title','alias'), 'showColumns' => true, 'format' => '%s <span style="color:#999;padding-left:3px">[%s]</span>' ), '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_sr_trips']['edit'], 'href' => 'act=edit', 'icon' => 'edit.svg' ), 'copy' => array ( 'label' => &$GLOBALS['TL_LANG']['tl_sr_trips']['copy'], 'href' => 'act=copy', 'icon' => 'copy.svg' ), 'delete' => array ( 'label' => &$GLOBALS['TL_LANG']['tl_sr_trips']['delete'], 'href' => 'act=delete', 'icon' => 'delete.svg', 'attributes' => 'onclick="if(!confirm(\'' . $GLOBALS['TL_LANG']['MSC']['deleteConfirm'] . '\'))return false;Backend.getScrollOffset()"' ), 'show' => array ( 'label' => &$GLOBALS['TL_LANG']['tl_sr_trips']['show'], 'href' => 'act=show', 'icon' => 'show.svg' ) ) ), // Palettes 'palettes' => array ( '__selector__' => array(), 'default' => '{title_legend},title,alias' ), // Subpalettes 'subpalettes' => array ( ), // Fields 'fields' => array ( 'id' => array ( 'sql' => "int(10) unsigned NOT NULL auto_increment" ), 'sorting' => array ( 'sql' => "int(10) unsigned NOT NULL default '0'" ), 'tstamp' => array ( 'sql' => "int(10) unsigned NOT NULL default '0'" ), 'title' => array ( 'label' => &$GLOBALS['TL_LANG']['tl_sr_trips']['title'], 'exclude' => true, 'search' => true, 'inputType' => 'text', 'eval' => array('mandatory'=>true, 'maxlength'=>255, 'tl_class'=>'w50'), 'sql' => "varchar(255) NOT NULL default ''" ), 'alias' => array ( 'label' => &$GLOBALS['TL_LANG']['tl_sr_trips']['alias'], 'exclude' => true, 'inputType' => 'text', 'eval' => array('rgxp'=>'alias', 'doNotCopy'=>true, 'maxlength'=>128, 'tl_class'=>'w50'), 'save_callback' => array ( array('tl_sr_trips', 'generateAlias') ), 'sql' => "varchar(128) BINARY NOT NULL default ''" ) ) ); /** * Provide miscellaneous methods that are used by the data configuration array. * * @author Leo Feyer <https://github.com/leofeyer> */ class tl_sr_trips extends Backend { /** * Import the back end user object */ public function __construct() { parent::__construct(); $this->import('BackendUser', 'User'); } /** * Auto-generate a trip alias if it has not been set yet * * @param mixed $varValue * @param DataContainer $dc * * @return mixed * * @throws Exception */ public function generateAlias($varValue, DataContainer $dc) { $autoAlias = false; // Generate an alias if there is none if ($varValue == '') { $autoAlias = true; $slugOptions = array('locale'=>'de'); $varValue = System::getContainer()->get('contao.slug.generator')->generate(StringUtil::prepareSlug($dc->activeRecord->title), $slugOptions); // Prefix numeric aliases (see #1598) if (is_numeric($varValue)) { $varValue = 'id-' . $varValue; } } $objAlias = $this->Database->prepare("SELECT id FROM tl_sr_trips WHERE id=? OR alias=?") ->execute($dc->id, $varValue); // Check whether the form alias exists if ($objAlias->numRows > 1) { if (!$autoAlias) { throw new Exception(sprintf($GLOBALS['TL_LANG']['ERR']['aliasExists'], $varValue)); } $varValue .= '-' . $dc->id; } return $varValue; } }