system/modules/sg-elements/dca/tl_page.php line 104

Open in your IDE?
  1. <?php
  2. /**
  3.  * Contao Open Source CMS
  4.  *
  5.  * Copyright (c) 2005-2015 Leo Feyer
  6.  *
  7.  * @package   SgElements
  8.  * @author    Sg-Medien GmbH <info@sg-medien.com>
  9.  * @license   EULA
  10.  * @copyright Sg-Medien GmbH 2015
  11.  */
  12. /**
  13.  * Palettes
  14.  */
  15. $GLOBALS['TL_DCA']['tl_page']['palettes']['__selector__'][] = 'addImage';
  16. $GLOBALS['TL_DCA']['tl_page']['palettes']['__selector__'][] = 'addTeaser';
  17. /**
  18.  * Modify exististing palettes
  19.  */
  20. foreach($GLOBALS['TL_DCA']['tl_page']['palettes'] AS $type => $palette)
  21. {
  22.     if ($type == 'regular')
  23.     {
  24.         $GLOBALS['TL_DCA']['tl_page']['palettes'][$type] = str_replace('{protected_legend''{source_legend:hide},addImage;{teaser_legend:hide},addTeaser;{protected_legend'$GLOBALS['TL_DCA']['tl_page']['palettes'][$type]);
  25.     }
  26.     else if ($type == 'forward' OR $type == 'redirect')
  27.     {
  28.         $GLOBALS['TL_DCA']['tl_page']['palettes'][$type] = str_replace('{redirect_legend''{source_legend:hide},addImage;{teaser_legend:hide},addTeaser;{redirect_legend'$GLOBALS['TL_DCA']['tl_page']['palettes'][$type]);
  29.     }
  30. }
  31. /**
  32.  * Subpalettes
  33.  */
  34. $GLOBALS['TL_DCA']['tl_page']['subpalettes']['addImage'] = 'singleSRC,alt,size';
  35. $GLOBALS['TL_DCA']['tl_page']['subpalettes']['addTeaser'] = 'teaser';
  36. /**
  37.  * Modify exististing fields
  38.  */
  39. $GLOBALS['TL_DCA']['tl_page']['fields']['cssClass']['eval']['maxlength'] = 255;
  40. $GLOBALS['TL_DCA']['tl_page']['fields']['cssClass']['sql'] = "varchar(255) NOT NULL default ''";  
  41.         
  42. /**
  43.  * Fields
  44.  */
  45. array_insert($GLOBALS['TL_DCA']['tl_page']['fields'], count($GLOBALS['TL_DCA']['tl_page']['fields']), array
  46. (
  47.     'addImage' => array
  48.     (
  49.         'label' => &$GLOBALS['TL_LANG']['tl_page']['addImage'],
  50.         'exclude' => true,
  51.         'inputType' => 'checkbox',
  52.         'eval' => array
  53.         (
  54.             'submitOnChange'=>true
  55.         ),
  56.         'sql' => "char(1) NOT NULL default ''"
  57.     ),
  58.     'singleSRC' => array
  59.     (
  60.         'label' => &$GLOBALS['TL_LANG']['tl_page']['singleSRC'],
  61.         'exclude' => true,
  62.         'inputType' => 'fileTree',
  63.         'eval' => array
  64.         (
  65.             'mandatory' => true,
  66.             'filesOnly' => true
  67.             'fieldType'=>'radio',
  68.             'tl_class' => 'clr',
  69.             'extensions' => \Config::get('validImageTypes')
  70.         ),
  71.         'sql' => "binary(16) NULL",
  72.         'save_callback' => array
  73.         (
  74.             array('sg_elements_tl_page''storeFileMetaInformation')
  75.         )
  76.     ),
  77.     'alt' => array
  78.     (
  79.         'label' => &$GLOBALS['TL_LANG']['tl_page']['alt'],
  80.         'exclude' => true,
  81.         'inputType' => 'text',
  82.         'eval' => array
  83.         (
  84.             'maxlength' => 255
  85.             'tl_class' => 'w50'
  86.         ),
  87.         'sql' => "varchar(255) NOT NULL default ''"
  88.     ),
  89.     'size' => array
  90.     (
  91.         'label' => &$GLOBALS['TL_LANG']['tl_page']['size'],
  92.         'exclude' => true,
  93.         'inputType' => 'imageSize',
  94.         'options' => \System::getImageSizes(),
  95.         'reference' => &$GLOBALS['TL_LANG']['MSC'],
  96.         'eval' => array
  97.         (
  98.             'rgxp' => 'natural',
  99.             'includeBlankOption' => true,
  100.             'nospace' => true,
  101.             'helpwizard' => true,
  102.             'tl_class' => 'w50'
  103.         ),
  104.         'sql' => "varchar(64) NOT NULL default ''"
  105.     ),
  106.     'addTeaser' => array
  107.     (
  108.         'label' => &$GLOBALS['TL_LANG']['tl_page']['addTeaser'],
  109.         'exclude' => true,
  110.         'inputType' => 'checkbox',
  111.         'eval' => array
  112.         (
  113.             'submitOnChange' => true,
  114.             'tl_class' => 'm12'
  115.         ),
  116.         'sql' => "char(1) NOT NULL default ''"
  117.     ),
  118.     'teaser' => array
  119.     (
  120.         'label' => &$GLOBALS['TL_LANG']['tl_page']['teaser'],
  121.         'exclude' => true,
  122.         'inputType' => 'textarea',
  123.         'search' => true,
  124.         'eval' => array
  125.         (
  126.             'mandatory' => true,
  127.             'rte' => 'tinyMCE',
  128.             'tl_class' => 'clr'
  129.         ),
  130.         'sql' => "text NULL"
  131.     )
  132. ));
  133. /**
  134.  * Class sg_elements_tl_page
  135.  *
  136.  * Extension for class "\tl_page".
  137.  * 
  138.  * @package   SgElements
  139.  * @author    Sg-Medien GmbH <info@sg-medien.com>
  140.  * @copyright Sg-Medien GmbH 2015
  141.  */
  142. class sg_elements_tl_page extends \tl_page
  143. {
  144.     
  145.     /**
  146.      * Pre-fill the "alt" and "caption" fields with the file meta data
  147.      * @param mixed
  148.      * @param \DataContainer
  149.      * @return mixed
  150.      */
  151.     public function storeFileMetaInformation($varValue\DataContainer $dc)
  152.     {
  153.         if ($dc->activeRecord->singleSRC == $varValue)
  154.         {
  155.             return $varValue;
  156.         }
  157.         $objFile \FilesModel::findByUuid($varValue);
  158.         if ($objFile !== null)
  159.         {
  160.             $arrMeta deserialize($objFile->meta);
  161.             if (!empty($arrMeta))
  162.             {
  163.                 $objPage $this->Database->prepare("SELECT * FROM tl_page WHERE id=?")->execute($dc->activeRecord->id);
  164.                 if ($objPage->numRows)
  165.                 {
  166.                     $objModel = new PageModel();
  167.                     $objModel->setRow($objPage->row());
  168.                     $objModel->loadDetails();
  169.                     // Convert the language to a locale (see #5678)
  170.                     $strLanguage str_replace('-''_'$objModel->rootLanguage);
  171.                     if (isset($arrMeta[$strLanguage]))
  172.                     {
  173.                         \Input::setPost('alt'$arrMeta[$strLanguage]['title']);
  174.                         \Input::setPost('caption'$arrMeta[$strLanguage]['caption']);
  175.                     }
  176.                 }
  177.             }
  178.         }
  179.         return $varValue;
  180.     }
  181. }