system/modules/sg-locations/dca/tl_sg_locations.php line 216

Open in your IDE?
  1. <?php
  2. /**
  3.  * Contao Open Source CMS
  4.  *
  5.  * Copyright (c) 2005-2015 Leo Feyer
  6.  *
  7.  * @package   SgLocations
  8.  * @author    Sg-Medien GmbH <info@sg-medien.com>
  9.  * @license   EULA
  10.  * @copyright Sg-Medien GmbH 2015
  11.  */
  12. /**
  13.  * Table tl_sg_locations
  14.  */
  15. $GLOBALS['TL_DCA']['tl_sg_locations'] = array
  16. (
  17.     // config
  18.     'config' => array
  19.     (
  20.         'dataContainer' => 'Table',
  21.         'ptable' => 'tl_sg_locations_category',
  22.         'enableVersioning' => true,
  23.         'ondelete_callback' => array
  24.         (
  25.             array('tl_sg_locations''deleteLocation')
  26.         ),
  27.         'sql' => array
  28.         (
  29.             'keys' => array
  30.             (
  31.                 'id' => 'primary',
  32.                 'pid' => 'index'
  33.             )
  34.         )
  35.     ),
  36.     // list
  37.     'list' => array
  38.     (
  39.         'sorting' => array
  40.         (
  41.             'mode' => 4,
  42.             'fields' => array('sorting'),
  43.             'panelLayout' => 'filter;sort,search,limit',
  44.             'headerFields' => array('title'),
  45.             'child_record_callback' => array('tl_sg_locations''listLocations')
  46.         ),
  47.         'global_operations' => array
  48.         (
  49.             'all' => array
  50.             (
  51.                 'label' => &$GLOBALS['TL_LANG']['MSC']['all'],
  52.                 'href' => 'act=select',
  53.                 'class' => 'header_edit_all',
  54.                 'attributes' => 'onclick="Backend.getScrollOffset()" accesskey="e"'
  55.             )
  56.         ),
  57.         'operations' => array
  58.         (
  59.             'edit' => array
  60.             (
  61.                 'label' => &$GLOBALS['TL_LANG']['tl_sg_locations']['edit'],
  62.                 'href' => 'act=edit',
  63.                 'icon' => 'edit.gif'
  64.             ),
  65.             'copy' => array
  66.             (
  67.                 'label' => &$GLOBALS['TL_LANG']['tl_sg_locations']['copy'],
  68.                 'href' => 'act=paste&amp;mode=copy',
  69.                 'icon' => 'copy.gif'
  70.             ),
  71.             'cut' => array
  72.             (
  73.                 'label' => &$GLOBALS['TL_LANG']['tl_sg_locations']['cut'],
  74.                 'href' => 'act=paste&amp;mode=cut',
  75.                 'icon' => 'cut.gif'
  76.             ),
  77.             'delete' => array
  78.             (
  79.                 'label' => &$GLOBALS['TL_LANG']['tl_sg_locations']['delete'],
  80.                 'href' => 'act=delete',
  81.                 'icon' => 'delete.gif',
  82.                 'attributes' => 'onclick="if(!confirm(\'' . ($GLOBALS['TL_LANG']['MSC']['deleteConfirm'] ?? null) . '\'))return false;Backend.getScrollOffset()"'
  83.             ),
  84.             'show' => array
  85.             (
  86.                 'label' => &$GLOBALS['TL_LANG']['tl_sg_locations']['show'],
  87.                 'href' => 'act=show',
  88.                 'icon' => 'show.gif'
  89.             )
  90.         )
  91.     ),
  92.     // palettes
  93.     'palettes' => array
  94.     (
  95.         '__selector__' => array('addImage'),
  96.         'default' => '{location_legend},company,street,postal,city,state,country,location_type,location_manager;{contact_legend},phone,fax,email;{image_legend},addImage'
  97.     ),
  98.     // subpalettes
  99.     'subpalettes' => array
  100.     (
  101.         'addImage' => 'singleSRC'
  102.     ),
  103.     // fields
  104.     'fields' => array
  105.     (
  106.         'id' => array
  107.         (
  108.             'sql' => "int(10) unsigned NOT NULL auto_increment"
  109.         ),
  110.         'pid' => array
  111.         (
  112.             'foreignKey' => 'tl_sg_locations_category.title',
  113.             'sql' => "int(10) unsigned NOT NULL default '0'",
  114.             'relation' => array
  115.             (
  116.                 'type' => 'belongsTo',
  117.                 'load' => 'eager'
  118.             )
  119.         ),
  120.         'sorting' => array
  121.         (
  122.             'label' => &$GLOBALS['TL_LANG']['MSC']['sorting'],
  123.             'sorting' => true,
  124.             'flag' => 11,
  125.             'sql' => "int(10) unsigned NOT NULL default '0'"
  126.         ),
  127.         'tstamp' => array
  128.         (
  129.             'sql' => "int(10) unsigned NOT NULL default '0'"
  130.         ),
  131.         'company' => array
  132.         (
  133.             'label' => &$GLOBALS['TL_LANG']['tl_sg_locations']['company'],
  134.             'exclude' => true,
  135.             'search' => true,
  136.             'sorting' => true,
  137.             'flag' => 1,
  138.             'inputType' => 'text',
  139.             'eval' => array
  140.             (
  141.                 'mandatory' => true,
  142.                 'maxlength' => 255,
  143.                 'tl_class' => 'w50'
  144.             ),
  145.             'sql' => "varchar(255) NOT NULL default ''"
  146.         ),
  147.         'street' => array
  148.         (
  149.             'label' => &$GLOBALS['TL_LANG']['tl_sg_locations']['street'],
  150.             'exclude' => true,
  151.             'search' => true,
  152.             'inputType' => 'text',
  153.             'eval' => array
  154.             (
  155.                 'maxlength' => 255,
  156.                 'tl_class' => 'w50'
  157.             ),
  158.             'sql' => "varchar(255) NOT NULL default ''"
  159.         ),
  160.         'postal' => array
  161.         (
  162.             'label' => &$GLOBALS['TL_LANG']['tl_sg_locations']['postal'],
  163.             'exclude' => true,
  164.             'search' => true,
  165.             'inputType' => 'text',
  166.             'eval' => array
  167.             (
  168.                 'maxlength' => 255,
  169.                 'tl_class' => 'w50'
  170.             ),
  171.             'sql' => "varchar(32) NOT NULL default ''"
  172.         ),
  173.         'city' => array
  174.         (
  175.             'label' => &$GLOBALS['TL_LANG']['tl_sg_locations']['city'],
  176.             'exclude' => true,
  177.             'filter' => true,
  178.             'search' => true,
  179.             'sorting' => true,
  180.             'inputType' => 'text',
  181.             'eval' => array
  182.             (
  183.                 'maxlength' => 255,
  184.                 'tl_class' => 'w50'
  185.             ),
  186.             'sql' => "varchar(255) NOT NULL default ''"
  187.         ),
  188.         'state' => array
  189.         (
  190.             'label' => &$GLOBALS['TL_LANG']['tl_sg_locations']['state'],
  191.             'exclude' => true,
  192.             'sorting' => true,
  193.             'inputType' => 'text',
  194.             'eval' => array
  195.             (
  196.                 'maxlength' => 255,
  197.                 'tl_class' => 'w50'
  198.             ),
  199.             'sql' => "varchar(64) NOT NULL default ''"
  200.         ),
  201.         'country' => array
  202.         (
  203.             'label' => &$GLOBALS['TL_LANG']['tl_sg_locations']['country'],
  204.             'default' => 'de',
  205.             'exclude' => true,
  206.             'filter' => true,
  207.             'sorting' => true,
  208.             'inputType' => 'select',
  209.             'options' => \System::getCountries(),
  210.             'eval' => array
  211.             (
  212.                 'chosen' => true,
  213.                 'maxlength' => 200,
  214.                 'tl_class' => 'w50'
  215.             ),
  216.             'sql' => "varchar(2) NOT NULL default ''"
  217.         ),
  218.         'location_type' => array
  219.         (
  220.             'label' => &$GLOBALS['TL_LANG']['tl_sg_locations']['location_type'],
  221.             'exclude' => true,
  222.             'inputType' => 'text',
  223.             'eval' => array
  224.             (
  225.                 'maxlength' => 255,
  226.                 'tl_class' => 'w50'
  227.             ),
  228.             'sql' => "varchar(255) NOT NULL default ''"
  229.         ),
  230.         'location_manager' => array
  231.         (
  232.             'label' => &$GLOBALS['TL_LANG']['tl_sg_locations']['location_manager'],
  233.             'exclude' => true,
  234.             'inputType' => 'text',
  235.             'eval' => array
  236.             (
  237.                 'maxlength' => 255,
  238.                 'tl_class' => 'w50'
  239.             ),
  240.             'sql' => "varchar(255) NOT NULL default ''"
  241.         ),
  242.         'phone' => array
  243.         (
  244.             'label' => &$GLOBALS['TL_LANG']['tl_sg_locations']['phone'],
  245.             'exclude' => true,
  246.             'inputType' => 'text',
  247.             'eval' => array
  248.             (
  249.                 'maxlength' => 255,
  250.                 'rgxp' => 'phone',
  251.                 'tl_class' => 'w50'
  252.             ),
  253.             'sql' => "varchar(255) NOT NULL default ''"
  254.         ),
  255.         'fax' => array
  256.         (
  257.             'label' => &$GLOBALS['TL_LANG']['tl_sg_locations']['fax'],
  258.             'exclude' => true,
  259.             'inputType' => 'text',
  260.             'eval' => array
  261.             (
  262.                 'maxlength' => 255,
  263.                 'rgxp' => 'phone',
  264.                 'tl_class' => 'w50'
  265.             ),
  266.             'sql' => "varchar(255) NOT NULL default ''"
  267.         ),
  268.         'email' => array
  269.         (
  270.             'label' => &$GLOBALS['TL_LANG']['tl_sg_locations']['email'],
  271.             'exclude' => true,
  272.             'inputType' => 'text',
  273.             'eval' => array
  274.             (
  275.                 'maxlength' => 255,
  276.                 'rgxp' => 'email',
  277.                 'tl_class' => 'w50',
  278.             ),
  279.             'sql' => "varchar(255) NOT NULL default ''"
  280.         ),
  281.         'addImage' => array
  282.         (
  283.             'label' => &$GLOBALS['TL_LANG']['tl_sg_locations']['addImage'],
  284.             'exclude' => true,
  285.             'filter' => true,
  286.             'inputType' => 'checkbox',
  287.             'eval' => array
  288.             (
  289.                 'submitOnChange' => true,
  290.                 'tl_class' => 'clr'
  291.             ),
  292.             'sql' => "char(1) NOT NULL default ''"
  293.         ),
  294.         'singleSRC' => array
  295.         (
  296.             'label' => &$GLOBALS['TL_LANG']['tl_sg_locations']['singleSRC'],
  297.             'exclude' => true,
  298.             'inputType' => 'fileTree',
  299.             'eval' => array
  300.             (
  301.                 'filesOnly' => true,
  302.                 'extensions' => \Config::get('validImageTypes'),
  303.                 'fieldType' => 'radio',
  304.                 'mandatory' => true
  305.             ),
  306.             'sql' => "binary(16) NULL"
  307.         ),
  308.         'size' => array
  309.         (
  310.             'label' => &$GLOBALS['TL_LANG']['tl_sg_locations']['size'],
  311.             'exclude' => true,
  312.             'inputType' => 'imageSize',
  313.             'options' => \System::getImageSizes(),
  314.             'reference' => &$GLOBALS['TL_LANG']['MSC'],
  315.             'eval' => array
  316.             (
  317.                 'rgxp' => 'natural',
  318.                 'includeBlankOption' => true,
  319.                 'nospace' => true,
  320.                 'helpwizard' => true,
  321.                 'tl_class' => 'w50'
  322.             ),
  323.             'sql' => "varchar(64) NOT NULL default ''"
  324.         )
  325.     )
  326. );
  327. /**
  328.  * Class tl_sg_locations
  329.  *
  330.  * Provide miscellaneous methods that are used by the data configuration array.
  331.  *
  332.  * @package   SgLocations
  333.  * @author    Sg-Medien GmbH <info@sg-medien.com>
  334.  * @copyright Sg-Medien GmbH 2017
  335.  */
  336. class tl_sg_locations extends \Backend
  337. {
  338.     /**
  339.      * List locations
  340.      *
  341.      * @param array $arrRow The list row.
  342.      *
  343.      * @return string The final list row.
  344.      */
  345.     public function listLocations($arrRow)
  346.     {
  347.         if (!$arrRow['company']) {
  348.             return '-';
  349.         }
  350.         // return list row
  351.         return '<strong>' $arrRow['company'] . '</strong>' .
  352.         ($arrRow['street'] ? '<div>' $GLOBALS['TL_LANG']['tl_sg_locations']['street'][0] . ': ' $this->replaceInsertTags($arrRow['street'], false) . '</div>' '') .
  353.         ($arrRow['postal'] ? '<div>' $GLOBALS['TL_LANG']['tl_sg_locations']['postal'][0] . ': ' $this->replaceInsertTags($arrRow['postal'], false) . '</div>' '') .
  354.         ($arrRow['city'] ? '<div>' $GLOBALS['TL_LANG']['tl_sg_locations']['city'][0] . ': ' $this->replaceInsertTags($arrRow['city'], false) . '</div>' '') .
  355.         ($arrRow['state'] ? '<div>' $GLOBALS['TL_LANG']['tl_sg_locations']['state'][0] . ': ' $this->replaceInsertTags($arrRow['state'], false) . '</div>' '') .
  356.         ($arrRow['country'] ? '<div>' $GLOBALS['TL_LANG']['tl_sg_locations']['country'][0] . ': ' . (isset($GLOBALS['TL_LANG']['CNT'][$arrRow['country']]) ? $GLOBALS['TL_LANG']['CNT'][$arrRow['country']] : $arrRow['country']) . '</div>' '') .
  357.         ($arrRow['phone'] ? '<div>' $GLOBALS['TL_LANG']['tl_sg_locations']['phone'][0] . ': ' $this->replaceInsertTags($arrRow['phone'], false) . '</div>' '') .
  358.         ($arrRow['fax'] ? '<div>' $GLOBALS['TL_LANG']['tl_sg_locations']['fax'][0] . ': ' $this->replaceInsertTags($arrRow['fax'], false) . '</div>' '') .
  359.         ($arrRow['email'] ? '<div>' $GLOBALS['TL_LANG']['tl_sg_locations']['email'][0] . ': ' $this->replaceInsertTags($arrRow['email'], false) . '</div>' '');
  360.     }
  361.     /**
  362.      * Callback before delete a location
  363.      *
  364.      * @param object \DataContainer
  365.      *
  366.      * @return void
  367.      */
  368.     public function deleteLocation(\DataContainer $dc)
  369.     {
  370.         // lock table
  371.         $dc->Database->lockTables(array('tl_content' => 'WRITE'));
  372.         // update content elements
  373.         $dc->Database->prepare("UPDATE tl_content %s WHERE location=?")->set(array('invisible' => 1'location' => 0))->execute($dc->id);
  374.         // unlock table
  375.         $dc->Database->unlockTables();
  376.     }
  377. }