Changeset 106


Ignore:
Timestamp:
Oct 9, 2007, 12:03:37 AM (18 years ago)
Author:
amp4ecs
Message:

Show event data from sub pages, if available.

Location:
trunk
Files:
13 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/ChangeLog

    r101 r106  
     12007-10-08
     2        * Show event data from sub pages, if available.
     3
    142007-10-06
    25        * Disabled fields that do not be translated when editing a translated record.
  • TabularUnified trunk/class.tx_wseevents_categories.php

    r105 r106  
    5353 * @author              Michael Oehlhof <typo3@oehlhof.de>
    5454 */
    55 cclass tx_wseevents_categories {
     55class tx_wseevents_categories {
    5656        /** The extension key. */
    5757        var $extKey = 'wseevents';
  • TabularUnified trunk/class.tx_wseevents_events.php

    r105 r106  
    253253                        $limit);
    254254                $row = $GLOBALS['TYPO3_DB']->sql_fetch_assoc($res);
    255 
    256255                // Clear the item array
    257256                $slotlist = array();
    258257
    259258                if (!empty($row)) {
    260                 $begin = $row['timebegin'];
    261                 $end = $row['timeend'];
    262                 $size = $row['slotsize'];
    263 
    264                 list($this_h, $this_m) = explode(':', $begin);
    265                 list($end_h, $end_m) = explode(':', $end);
    266 
    267                 $itemindex = 1;
    268                 $finished = false;
    269                 // Fill item array with time slots of selected event
    270                 while (!$finished) {
    271 
    272                         $thistime = sprintf('%02d:%02d', $this_h, $this_m);
    273                         $slotlist[$itemindex] =$thistime;
    274                         $this_m += intval($size);
    275                         if ($this_m>=60) {
    276                                 $this_h += 1;
    277                                 $this_m -= 60;
     259                        $begin = $row['timebegin'];
     260                        $end = $row['timeend'];
     261                        $size = $row['slotsize'];
     262
     263                        if ((!empty($begin)) && (!empty($begin))) {
     264                                list($this_h, $this_m) = explode(':', $begin);
     265                                list($end_h, $end_m) = explode(':', $end);
     266
     267                                $itemindex = 1;
     268                                $finished = false;
     269                                // Fill item array with time slots of selected event
     270                                while (!$finished) {
     271
     272                                        $thistime = sprintf('%02d:%02d', $this_h, $this_m);
     273                                        $slotlist[$itemindex] =$thistime;
     274                                        $this_m += intval($size);
     275                                        if ($this_m>=60) {
     276                                                $this_h += 1;
     277                                                $this_m -= 60;
     278                                        }
     279                                        if ($slotlist[$itemindex]==$end) {
     280                                                $finished = true;
     281                                        }
     282                                        $itemindex += 1;
     283                                }
    278284                        }
    279                         if ($slotlist[$itemindex]==$end) {
    280                                 $finished = true;
    281                         }
    282                         $itemindex += 1;
    283                 }
    284285                }
    285286                return $slotlist;
  • TabularUnified trunk/class.tx_wseevents_timeslots.php

    r105 r106  
    252252                                $roomcount = count($eventslotarray['1']);
    253253#debug($roomcount,'$roomcount');
    254                                 foreach (explode(',',$speakerslotlist) as $speakerslot){
     254                                foreach (explode(',',$speakerslotlist) as $speakerslot) {
    255255                                        // Get slot record
    256256                                        $slotrow = t3lib_BEfunc::getRecord ('tx_wseevents_timeslots', $speakerslot);
  • TabularUnified trunk/mod1/class.tx_wseevents_backendlist.php

    r105 r106  
    4545        var $page;
    4646
     47        /** Holds a list of pids of the sub pages of the selected page. */
     48        var $selectedPids;
     49        var $selectedPidsTitle;
     50       
    4751        /**
    4852         * The constructor. Sets the table name and the back-end page object.
     
    5761        }
    5862
     63       
     64        /**
     65         * Generates a list of titles of all pages for the given pid list.
     66         *
     67         * @param       string          the list of pids
     68         * @return      array           the list of page titles
     69         * @access public
     70         */
     71        function getPidTitleList($pidList) {
     72                $titles = array();
     73                foreach (explode(',',$pidList) as $thisPid) {
     74                        $row = t3lib_BEfunc::getRecord ('pages', $thisPid);
     75                        $titles[$thisPid] = $row['title'];
     76                }
     77                return $titles;
     78        }
     79
     80        /**
     81         * Generates a list of pids of all sub pages for the given depth.
     82         *
     83         * @param       integer         the pid of the page
     84         * @param       integer         the depth for the search
     85         * @return      string          the list of pids
     86         * @access public
     87         */
     88        function getRecursiveUidList($parentUid,$depth){
     89                if($depth != -1) {
     90                        $depth = $depth-1; //decreasing depth
     91                }
     92                # Get ressource records:
     93                $res = $GLOBALS['TYPO3_DB']->exec_SELECTquery (
     94                        'uid',
     95                        'pages',
     96                        'pid IN ('.$GLOBALS['TYPO3_DB']->cleanIntList($parentUid).') AND deleted=0 '
     97                        );
     98                if($depth > 0){
     99                        while ($row = $GLOBALS['TYPO3_DB']->sql_fetch_assoc($res)) {
     100                                $parentUid .= ','.$this->getRecursiveUidList($row['uid'],$depth);
     101                        }
     102                }
     103                return $parentUid;
     104        }
     105
     106       
     107        /**
     108         * Removes all pages which have common content from pid list.
     109         *
     110         * @param       string          list with page pids
     111         * @return      string          the list of pids, without pages with common data
     112         * @access public
     113         */
     114        function removeCommonPages($pageList){
     115                $resultList = $pageList;
     116                foreach (explode(',',$pageList) as $thisPage) {
     117                        // Initialize variables for the database query.
     118                        $queryWhere = 'pid='.$thisPage.' AND deleted=0';
     119                        $additionalTables = '';
     120                        $groupBy = '';
     121                        $orderBy = 'uid';
     122                        $limit = '';
     123                        // Get list of all events
     124                        $res = $GLOBALS['TYPO3_DB']->exec_SELECTquery(
     125                                'count(*)',
     126                                $this->tableLocations,
     127                                $queryWhere,
     128                                $groupBy,
     129                                $orderBy,
     130                                $limit);
     131                        if ($res) {
     132                                $row = $GLOBALS['TYPO3_DB']->sql_fetch_assoc($res);
     133                                if ($row['count(*)']>0) {
     134                                        $resultList = t3lib_div::rmFromList($thisPage,$resultList);
     135                                }
     136                        }
     137                }
     138                return $resultList;
     139        }
     140       
     141       
     142        /**
     143         * Removes all pages which have event content from pid list.
     144         *
     145         * @param       string          list with page pids
     146         * @return      string          the list of pids, without pages with event data
     147         * @access public
     148         */
     149        function removeEventPages($pageList){
     150                $resultList = $pageList;
     151                foreach (explode(',',$pageList) as $thisPage) {
     152                        // Initialize variables for the database query.
     153                        $queryWhere = 'pid='.$thisPage.' AND deleted=0';
     154                        $additionalTables = '';
     155                        $groupBy = '';
     156                        $orderBy = 'uid';
     157                        $limit = '';
     158                        // Get list of all events
     159                        $res = $GLOBALS['TYPO3_DB']->exec_SELECTquery(
     160                                'count(*)',
     161                                $this->tableEvents,
     162                                $queryWhere,
     163                                $groupBy,
     164                                $orderBy,
     165                                $limit);
     166                        if ($res) {
     167                                $row = $GLOBALS['TYPO3_DB']->sql_fetch_assoc($res);
     168                                if ($row['count(*)']>0) {
     169                                        $resultList = t3lib_div::rmFromList($thisPage,$resultList);
     170                                }
     171                        }
     172                }
     173                return $resultList;
     174        }
     175       
     176       
    59177        /**
    60178         * Generates an edit record icon which is linked to the edit view of
     
    145263         * @access public
    146264         */
    147         function getNewIcon($pid) {
     265        function getNewIcon($pid,$usediv=1) {
    148266                global $BACK_PATH, $LANG, $BE_USER;
    149267
     
    155273                        $editOnClick = $this->editNewUrl($params, $BACK_PATH);
    156274                        $langNew = $LANG->getLL('newRecordGeneral');
     275                        if ($usediv==1) {
     276                                $div = 'div';
     277                        } else {
     278                                $div = 'span';
     279                        }
    157280                        $result = TAB.TAB
    158                                 .'<div id="typo3-newRecordLink">'.LF
     281                                .'<'.$div.' id="typo3-newRecordLink">'.LF
    159282                                .TAB.TAB.TAB
    160283                                .'<a href="'.htmlspecialchars($editOnClick).'">'.LF
     
    173296                                .'</a>'.LF
    174297                                .TAB.TAB
    175                                 .'</div>'.LF;
    176                 }
    177 
     298                                .'</'.$div.'>'.LF;
     299                }
    178300                return $result;
    179301        }
    180302
     303       
     304        /**
     305         * Returns a list of "create new record" image tags that are linked to the new record view.
     306         *
     307         * @param       string          the list with page ids where the record should be stored
     308         * @return      string          the HTML source code to return
     309         * @access public
     310         */
     311        function getNewIconList($pidList,$pidTitles) {
     312                global $BACK_PATH, $LANG, $BE_USER;
     313
     314                $result = '<br /><b>'.$LANG->getLL('newRecordGeneral').'</b>&nbsp;';
     315                $result .= TAB.TAB.'<div id="typo3-newRecordLink">'.LF;
     316                foreach (explode(',',$pidList) as $thisPid) {
     317                        # the name of the table where the record should be saved to is stored in $this->tableName
     318                        if ($BE_USER->check('tables_modify', $this->tableName)
     319                                && $BE_USER->doesUserHaveAccess(t3lib_BEfunc::getRecord('pages', $this->page->pageInfo['uid']), 16)
     320                                && $this->page->pageInfo['doktype'] == 254) {
     321                                $params = '&edit['.$this->tableName.']['.$thisPid.']=new';
     322                                $editOnClick = $this->editNewUrl($params, $BACK_PATH);
     323                                $result .= TAB.TAB.TAB.'<a href="'.htmlspecialchars($editOnClick).'">'.LF
     324                                        .TAB.TAB.TAB.TAB.'<img'.t3lib_iconWorks::skinImg(
     325                                                $BACK_PATH,
     326                                                'gfx/new_record.gif',
     327                                                'width="7" height="4"')
     328                                        // We use an empty alt attribute as we already have a textual
     329                                        // representation directly next to the icon.
     330                                        .' title="'.$pidTitles[$thisPid].'" alt="" />'.LF
     331                                        .TAB.TAB.TAB.TAB.$pidTitles[$thisPid].LF
     332                                        .TAB.TAB.TAB.'</a>'.LF
     333                                        .TAB.TAB.'<br />'.LF;
     334                        }
     335                }
     336                $result .= TAB.TAB.'</div><br />'.LF;
     337
     338                return $result;
     339        }
     340
     341       
    181342        /**
    182343         * Returns the url for the "create new record" link and the "edit record" link.
  • TabularUnified trunk/mod1/class.tx_wseevents_categorieslist.php

    r105 r106  
    174174                                        $imglang = $this->syslang[0][0];
    175175                                } else {
     176                                        $imglang = '';
    176177                                        foreach ($this->syslang as $thislang) {
    177178                                                if ($row['sys_language_uid'] == $thislang[1]) {
  • TabularUnified trunk/mod1/class.tx_wseevents_eventslist.php

    r105 r106  
    5959         * Generates and prints out an event list.
    6060         *
     61         * @param       array           the table where the record data is to be addded
     62         * @param       array           the current record
     63         * @return      void
     64         */
     65        function addRowToTable(&$table, $row) {
     66                global $BE_USER, $BACK_PATH;
     67                $uid = $row['uid'];
     68                $hidden = $row['hidden'];
     69                if ($row['sys_language_uid']==0) {
     70                        $catnum = $this->categories[$row['category']].sprintf ('%02d', $row['number']);
     71                        $imglang = $this->syslang[0][0];
     72                } else {
     73                        $catnum = '';
     74                        $imglang = '';
     75                        foreach ($this->syslang as $thislang) {
     76                                if ($row['sys_language_uid'] == $thislang[1]) {
     77                                        $imglang = '<img'.t3lib_iconWorks::skinImg(
     78                                                                                $BACK_PATH,
     79                                                                                'gfx/'.$thislang[2],
     80                                                                                'width="20" height="14"')
     81                                                                        .' alt="'.$thislang[0].'">'.$thislang[0];
     82                                }
     83                        }
     84                       
     85                }
     86                // Add the result row to the table array.
     87                $table[] = array(
     88                        TAB.TAB.TAB.TAB.TAB
     89                                .t3lib_div::fixed_lgd_cs(
     90                                        $row['name'],
     91                                        $BE_USER->uc['titleLen']
     92                                ).LF,
     93                        TAB.TAB.TAB.TAB.TAB
     94                                .strftime($conf['strftime'], $row['begin']).LF,
     95                        TAB.TAB.TAB.TAB.TAB
     96                                .$row['length'].LF,
     97                        TAB.TAB.TAB.TAB.TAB
     98                                .$row['timebegin'].LF,
     99                        TAB.TAB.TAB.TAB.TAB
     100                                .$row['timeend'].LF,
     101                        TAB.TAB.TAB.TAB.TAB
     102                                .$imglang.LF,
     103                        TAB.TAB.TAB.TAB.TAB
     104                                .$this->getEditIcon($uid).LF
     105                                .TAB.TAB.TAB.TAB.TAB
     106                                .$this->getDeleteIcon($uid).LF
     107                                .TAB.TAB.TAB.TAB.TAB
     108                                .$this->getHideUnhideIcon(
     109                                        $uid,
     110                                        $hidden
     111                                ).LF,
     112                );
     113        }
     114       
     115       
     116        /**
     117         * Generates and prints out an event list.
     118         *
    61119         * @return      string          the HTML source code of the event list
    62120         * @access public
     
    67125                // Initialize the variable for the HTML source code.
    68126                $content = '';
    69 
    70                 $content .= $this->getNewIcon($this->page->pageInfo['uid']);
    71127
    72128                // Set the table layout of the event list.
     
    98154                                ),
    99155                                array(
    100                                         TAB.TAB.TAB.TAB.'<td class="datecol">'.LF,
     156                                        TAB.TAB.TAB.TAB.'<td>'.LF,
    101157                                        TAB.TAB.TAB.TAB.'</td>'.LF
    102158                                ),
     
    113169
    114170                // Fill the first row of the table array with the header.
    115                 $table = array(
     171                $tableHdr = array(
    116172                        array(
    117173                                TAB.TAB.TAB.TAB.TAB.TAB
     
    130186                                        .'<span style="color: #ffffff; font-weight: bold;">'
    131187                                        .$LANG->getLL('events.timeend').'</span>'.LF,
     188                                TAB.TAB.TAB.TAB.TAB.TAB
     189                                        .'<span style="color: #ffffff; font-weight: bold;">'
     190                                        .$LANG->getLL('language').'</span>'.LF,
    132191                                '',
    133192                        )
     
    146205                }
    147206
    148                 // Initialize variables for the database query.
    149                 $queryWhere = 'pid='.$this->page->pageInfo['uid'].' AND deleted=0 AND sys_language_uid=0';
    150                 $additionalTables = '';
    151                 $groupBy = '';
    152                 $orderBy = 'name';
    153                 $limit = '';
    154 
    155                 // Get list of all events
    156                 $res = $GLOBALS['TYPO3_DB']->exec_SELECTquery(
    157                         '*',
    158                         $this->tableName,
    159                         $queryWhere,
    160                         $groupBy,
    161                         $orderBy,
    162                         $limit);
    163 
    164                 if ($res) {
    165                         while ($row = $GLOBALS['TYPO3_DB']->sql_fetch_assoc($res)) {
    166                                 $uid = $row['uid'];
    167                                 $hidden = $row['hidden'];
    168                                 // Add the result row to the table array.
    169                                 $table[] = array(
    170                                         TAB.TAB.TAB.TAB.TAB
    171                                                 .t3lib_div::fixed_lgd_cs(
    172                                                         $row['name'],
    173                                                         $BE_USER->uc['titleLen']
    174                                                 ).LF,
    175                                         TAB.TAB.TAB.TAB.TAB
    176                                                 .strftime($conf['strftime'], $row['begin']).LF,
    177                                         TAB.TAB.TAB.TAB.TAB
    178                                                 .$row['length'].LF,
    179                                         TAB.TAB.TAB.TAB.TAB
    180                                                 .$row['timebegin'].LF,
    181                                         TAB.TAB.TAB.TAB.TAB
    182                                                 .$row['timeend'].LF,
    183                                         TAB.TAB.TAB.TAB.TAB
    184                                                 .$this->getEditIcon($uid).LF
    185                                                 .TAB.TAB.TAB.TAB.TAB
    186                                                 .$this->getDeleteIcon($uid).LF
    187                                                 .TAB.TAB.TAB.TAB.TAB
    188                                                 .$this->getHideUnhideIcon(
    189                                                         $uid,
    190                                                         $hidden
    191                                                 ).LF,
    192                                 );
     207                // Get array with system languges
     208                $this->syslang = t3lib_BEfunc::getSystemLanguages();
     209                foreach ($this->syslang as &$thislang) {
     210                        $langname = explode(' ', $thislang[0]);
     211                        $thislang[0] = $langname[0];
     212                }
     213
     214                // Get list of pid
     215                $this->selectedPids = $this->getRecursiveUidList($this->page->pageInfo['uid'],2);
     216                // Check if sub pages available and remove main page from list
     217                if ($this->selectedPids<>$this->page->pageInfo['uid']) {
     218                        $this->selectedPids = t3lib_div::rmFromList($this->page->pageInfo['uid'],$this->selectedPids);
     219                }
     220                // Remove pages with common data
     221                $eventPids = $this->removeCommonPages($this->selectedPids);
     222                // Get page titles
     223                $this->selectedPidsTitle = $this->getPidTitleList($this->selectedPids);
     224                // Get the where clause
     225                $wherePid = 'pid IN ('.$GLOBALS['TYPO3_DB']->cleanIntList($this->selectedPids).')';
     226
     227                // Add icon for new record
     228                if (!empty($eventPids)) {
     229                        $content .= $this->getNewIconList($eventPids,$this->selectedPidsTitle);
     230                }
     231
     232                foreach (explode(',',$eventPids) as $eventPid) {
     233                        // Show name of page
     234                        $content .= '<span style="font-size:1.2em"><b>'.$this->selectedPidsTitle[$eventPid].'</b></span>';
     235//                      $content .= '&nbsp;'.$this->getNewIcon($event['pid'],0).'<br />';
     236
     237                        // Initialize variables for the database query.
     238                        $queryWhere = 'pid='.$eventPid.' AND deleted=0 AND sys_language_uid=0';
     239                        $additionalTables = '';
     240                        $groupBy = '';
     241                        $orderBy = 'name';
     242                        $limit = '';
     243
     244                        // Get list of all events
     245                        $res = $GLOBALS['TYPO3_DB']->exec_SELECTquery(
     246                                '*',
     247                                $this->tableName,
     248                                $queryWhere,
     249                                $groupBy,
     250                                $orderBy,
     251                                $limit);
     252
     253                        if ($res) {
     254                                $found = false;
     255                                $table = $tableHdr;
     256                                while ($row = $GLOBALS['TYPO3_DB']->sql_fetch_assoc($res)) {
     257                                        $found = true;
     258                                        $uid = $row['uid'];
     259                                        $hidden = $row['hidden'];
     260                                        $this->addRowToTable($table, $row);
     261                                }
     262                                if ($found) {
     263                                        // Output the table array using the tableLayout array with the template
     264                                        // class.
     265                                        $content .= $this->page->doc->table($table, $tableLayout).'<br />'.LF;
     266                                } else {
     267                                        $content .= '<br />'.$LANG->getLL('norecords').'<br /><br />'.LF;
     268                                }
    193269                        }
    194                         // Output the table array using the tableLayout array with the template
    195                         // class.
    196                         $content .= $this->page->doc->table($table, $tableLayout);
    197270                }
    198271
  • TabularUnified trunk/mod1/class.tx_wseevents_sessionslist.php

    r105 r106  
    7979                } else {
    8080                        $catnum = '';
     81                        $imglang = '';
    8182                        foreach ($this->syslang as $thislang) {
    8283                                if ($row['sys_language_uid'] == $thislang[1]) {
     
    131132               
    132133                // Initialize the variable for the HTML source code with info text
    133                 $content = $LANG->getLL('sessions.info').'<br />';
     134                $content = '<span style="color:red">'.$LANG->getLL('sessions.info').'</span><br />';
    134135
    135136                // Set the table layout of the event list.
     
    206207                }
    207208
     209                // Get list of pid
     210                $this->selectedPids = $this->getRecursiveUidList($this->page->pageInfo['uid'],2);
     211                // Check if sub pages available and remove main page from list
     212                if ($this->selectedPids<>$this->page->pageInfo['uid']) {
     213                        $this->selectedPids = t3lib_div::rmFromList($this->page->pageInfo['uid'],$this->selectedPids);
     214                }
     215                // Remove pages with common data
     216                $eventPids = $this->removeCommonPages($this->selectedPids);
     217                // Get page titles
     218                $this->selectedPidsTitle = $this->getPidTitleList($this->selectedPids);
     219                // Get the where clause
     220                $wherePid = 'pid IN ('.$GLOBALS['TYPO3_DB']->cleanIntList($this->selectedPids).')';
     221
    208222                // Add icon for new record
    209                 $content .= $this->getNewIcon($this->page->pageInfo['uid']);
     223                if (!empty($eventPids)) {
     224                        $content .= $this->getNewIconList($eventPids,$this->selectedPidsTitle);
     225                }
    210226
    211227                // -------------------- Get list of categories --------------------
    212228                // Initialize variables for the database query.
    213                 $queryWhere = 'deleted=0 AND sys_language_uid=0';
     229                $queryWhere = $wherePid.' AND deleted=0 AND sys_language_uid=0';
    214230                $additionalTables = '';
    215231                $groupBy = '';
     
    242258                // -------------------- Get list of events --------------------
    243259                // Initialize variables for the database query.
    244                 $queryWhere = 'pid='.$this->page->pageInfo['uid'].' AND deleted=0 AND sys_language_uid=0';
     260                $queryWhere = $wherePid.' AND deleted=0 AND sys_language_uid=0';
    245261                $additionalTables = '';
    246262                $groupBy = '';
     
    262278                                $event = array();
    263279                                $event['uid'] = $row['uid'];
     280                                $event['pid'] = $row['pid'];
    264281                                $event['name'] = $row['name'];
    265282                                $event['location'] = $row['location'];
     
    274291                foreach ($events as $event) {
    275292                        // Show name of event
    276                         $content .= '<b>'.$event['name'].'</b><br />';
     293                        $content .= '<span style="font-size:1.2em"><b>'.$LANG->getLL('event').' '.$event['name'].'</b></span>';
     294//                      $content .= '&nbsp;'.$this->getNewIcon($event['pid'],0).'<br />';
    277295
    278296                        // Initialize variables for the database query.
    279                         $queryWhere = 'pid='.$this->page->pageInfo['uid'].' AND event='.$event['uid'].' AND deleted=0 AND sys_language_uid=0';
     297                        $queryWhere = $wherePid.' AND event='.$event['uid'].' AND deleted=0 AND sys_language_uid=0';
    280298                        $additionalTables = '';
    281299                        $groupBy = '';
     
    296314
    297315                        if ($res) {
     316                                $found = false;
    298317                                while ($row = $GLOBALS['TYPO3_DB']->sql_fetch_assoc($res)) {
     318                                        $found = true;
    299319                                        $this->addRowToTable($table, $row);
    300320                                        // Check for translations.
    301                                         $queryWhere = 'l18n_parent='.$row['uid'];
     321                                        $queryWhere = $wherePid.' AND l18n_parent='.$row['uid'];
    302322                                        $additionalTables = '';
    303323                                        $groupBy = '';
     
    319339                                        }
    320340                                }
     341                                if ($found) {
     342                                        // Output the table array using the tableLayout array with the template
     343                                        // class.
     344                                        $content .= $this->page->doc->table($table, $tableLayout).'<br />'.LF;
     345                                } else {
     346                                        $content .= '<br />'.$LANG->getLL('norecords').'<br /><br />'.LF;
     347                                }
    321348                        }
    322                         // Output the table array using the tableLayout array with the template
    323                         // class.
    324                         $content .= $this->page->doc->table($table, $tableLayout).'<br /><br />';
    325349                }
    326350
  • TabularUnified trunk/mod1/class.tx_wseevents_speakerrestrictionslist.php

    r105 r106  
    7474                // Initialize the variable for the HTML source code.
    7575                $content = '';
    76 
    77                 $content .= $this->getNewIcon($this->page->pageInfo['uid']);
    7876
    7977                // Set the table layout of the speaker restrictions list.
     
    150148                }
    151149
     150                // Get list of pid
     151                $this->selectedPids = $this->getRecursiveUidList($this->page->pageInfo['uid'],2);
     152                // Check if sub pages available and remove main page from list
     153                if ($this->selectedPids<>$this->page->pageInfo['uid']) {
     154                        $this->selectedPids = t3lib_div::rmFromList($this->page->pageInfo['uid'],$this->selectedPids);
     155                }
     156                // Remove pages with common data
     157                $eventPids = $this->removeCommonPages($this->selectedPids);
     158                // Get page titles
     159                $this->selectedPidsTitle = $this->getPidTitleList($this->selectedPids);
     160                // Get the where clause
     161                $wherePid = 'pid IN ('.$GLOBALS['TYPO3_DB']->cleanIntList($this->selectedPids).')';
     162
     163                // Add icon for new record
     164                if (!empty($eventPids)) {
     165                        $content .= $this->getNewIconList($eventPids,$this->selectedPidsTitle);
     166                }
     167
    152168                // -------------------- Get list of speakers --------------------
    153169                // Initialize variables for the database query.
    154                 $queryWhere = 'deleted=0 AND sys_language_uid=0';
     170                $queryWhere = $wherePid.' AND deleted=0 AND sys_language_uid=0';
    155171                $additionalTables = '';
    156172                $groupBy = '';
     
    176192                // -------------------- Get list of events --------------------
    177193                // Initialize variables for the database query.
    178                 $queryWhere = 'pid='.$this->page->pageInfo['uid'].' AND deleted=0 AND sys_language_uid=0';
     194                $queryWhere = $wherePid.' AND deleted=0 AND sys_language_uid=0';
    179195                $additionalTables = '';
    180196                $groupBy = '';
     
    207223                foreach ($events as $event) {
    208224                        // Show name of event
    209                         $content .= '<b>'.$event['name'].'</b><br />';
     225                        $content .= '<span style="font-size:1.2em"><b>'.$LANG->getLL('event').' '.$event['name'].'</b></span>';
     226//                      $content .= '&nbsp;'.$this->getNewIcon($event['pid'],0).'<br />';
    210227
    211228                        // Get list of timeslots for the event
     
    213230
    214231                        // Initialize variables for the database query.
    215                         $queryWhere = 'pid='.$this->page->pageInfo['uid'].' AND event='.$event['uid'].' AND deleted=0';
     232                        $queryWhere = $wherePid.' AND event='.$event['uid'].' AND deleted=0';
    216233                        $additionalTables = '';
    217234                        $groupBy = '';
     
    258275                                        // Output the table array using the tableLayout array with the template
    259276                                        // class.
    260                                         $content .= $this->page->doc->table($table, $tableLayout);
     277                                        $content .= $this->page->doc->table($table, $tableLayout).'<br />'.LF;
    261278                                } else {
    262                                         $content .= $LANG->getLL('norecords').'<br /><br />'.LF;
     279                                        $content .= '<br />'.$LANG->getLL('norecords').'<br /><br />'.LF;
    263280                                }
    264281                        }
  • TabularUnified trunk/mod1/class.tx_wseevents_speakerslist.php

    r105 r106  
    154154                }
    155155
     156                // Get list of pid
     157                $this->selectedPids = $this->getRecursiveUidList($this->page->pageInfo['uid'],2);
     158                // Check if sub pages available and remove main page from list
     159                if ($this->selectedPids<>$this->page->pageInfo['uid']) {
     160                        $this->selectedPids = t3lib_div::rmFromList($this->page->pageInfo['uid'],$this->selectedPids);
     161                }
     162                // Remove pages with common data
     163                $commonPids = $this->removeEventPages($this->selectedPids);
     164                // Get page titles
     165                $this->selectedPidsTitle = $this->getPidTitleList($this->selectedPids);
     166                // Get the where clause
     167                $wherePid = 'pid IN ('.$GLOBALS['TYPO3_DB']->cleanIntList($this->selectedPids).')';
     168
     169                // Add icon for new record
     170                if (!empty($commonPids)) {
     171                        $content .= $this->getNewIconList($commonPids,$this->selectedPidsTitle);
     172                }
     173
    156174                // Initialize variables for the database query.
    157                 $queryWhere = 'pid='.$this->page->pageInfo['uid'].' AND deleted=0';
     175                $queryWhere = $wherePid.' AND deleted=0';
    158176                $additionalTables = '';
    159177                $groupBy = '';
     
    171189
    172190                if ($res) {
     191                        $found = false;
    173192                        while ($row = $GLOBALS['TYPO3_DB']->sql_fetch_assoc($res)) {
     193                                $found = true;
    174194                                $uid = $row['uid'];
    175195                                $hidden = $row['hidden'];
     
    177197                                        $imglang = $this->syslang[0][0];
    178198                                } else {
     199                                        $imglang = '';
    179200                                        foreach ($this->syslang as $thislang) {
    180201                                                if ($row['sys_language_uid'] == $thislang[1]) {
     
    213234                                );
    214235                        }
    215                 }
    216 
    217                 $content .= $this->getNewIcon($this->page->pageInfo['uid']);
    218 
    219                 // Output the table array using the tableLayout array with the template
    220                 // class.
    221                 $content .= $this->page->doc->table($table, $tableLayout);
     236                        // Output the table array using the tableLayout array with the template
     237                        // class.
     238                        if ($found) {
     239                                $content .= $this->page->doc->table($table, $tableLayout);
     240                        }
     241                }
     242
    222243
    223244                return $content;
  • TabularUnified trunk/mod1/class.tx_wseevents_timeslotslist.php

    r105 r106  
    148148                }
    149149
     150                // Get list of pid
     151                $this->selectedPids = $this->getRecursiveUidList($this->page->pageInfo['uid'],2);
     152                // Check if sub pages available and remove main page from list
     153                if ($this->selectedPids<>$this->page->pageInfo['uid']) {
     154                        $this->selectedPids = t3lib_div::rmFromList($this->page->pageInfo['uid'],$this->selectedPids);
     155                }
     156                // Remove pages with common data
     157                $eventPids = $this->removeCommonPages($this->selectedPids);
     158                // Get page titles
     159                $this->selectedPidsTitle = $this->getPidTitleList($this->selectedPids);
     160                // Get the where clause
     161                $wherePid = 'pid IN ('.$GLOBALS['TYPO3_DB']->cleanIntList($this->selectedPids).')';
     162
    150163                // Add icon for new record
    151                 $content .= $this->getNewIcon($this->page->pageInfo['uid']);
     164                if (!empty($eventPids)) {
     165                        $content .= $this->getNewIconList($eventPids,$this->selectedPidsTitle);
     166                }
     167
    152168
    153169                // -------------------- Get list of rooms --------------------
    154170                // Initialize variables for the database query.
    155                 $queryWhere = 'deleted=0 AND sys_language_uid=0';
     171                $queryWhere = $wherePid.' AND deleted=0 AND sys_language_uid=0';
    156172                $additionalTables = '';
    157173                $groupBy = '';
     
    174190                        }
    175191                }
    176 
    177192                if (!isset($this->page->pageInfo['uid'])) {
    178193                        return;
     
    181196                // -------------------- Get list of events --------------------
    182197                // Initialize variables for the database query.
    183                 $queryWhere = 'pid='.$this->page->pageInfo['uid'].' AND deleted=0 AND sys_language_uid=0';
     198                $queryWhere = $wherePid.' AND deleted=0 AND sys_language_uid=0';
    184199                $additionalTables = '';
    185200                $groupBy = '';
     
    201216                                $event = array();
    202217                                $event['uid'] = $row['uid'];
     218                                $event['pid'] = $row['pid'];
    203219                                $event['name'] = $row['name'];
    204220                                $event['location'] = $row['location'];
     
    207223                }
    208224               
    209                 // Add box for event selection
     225                // ToDo: Add box for event selection
    210226               
    211227               
     
    213229                foreach ($events as $event) {
    214230                        // Show name of event
    215                         $content .= '<b>'.$event['name'].'</b><br />';
     231                        $content .= '<span style="font-size:1.2em"><b>'.$LANG->getLL('event').' '.$event['name'].'</b></span>';
     232//                      $content .= '&nbsp;'.$this->getNewIcon($event['pid'],0).'<br />';
    216233
    217234                        // Get list of timeslots for the event
     
    222239
    223240                        // Initialize variables for the database query.
    224                         $queryWhere = 'pid='.$this->page->pageInfo['uid'].' AND event='.$event['uid'].' AND deleted=0 AND sys_language_uid=0';
     241                        $queryWhere = $wherePid.' AND event='.$event['uid'].' AND deleted=0 AND sys_language_uid=0';
    225242                        $additionalTables = '';
    226243                        $groupBy = '';
     
    241258                       
    242259                        if ($res) {
     260                                $found = false;
    243261                                while ($row = $GLOBALS['TYPO3_DB']->sql_fetch_assoc($res)) {
     262                                        $found = true;
    244263                                        $uid = $row['uid'];
    245264                                        $hidden = $row['hidden'];
     
    272291                                        );
    273292                                }
     293                                if ($found) {
     294                                        // Output the table array using the tableLayout array with the template
     295                                        // class.
     296                                        $content .= $this->page->doc->table($table, $tableLayout).'<br />'.LF;
     297                                } else {
     298                                        $content .= '<br />'.$LANG->getLL('norecords').'<br /><br />'.LF;
     299                                }
    274300                        }
    275                         // Output the table array using the tableLayout array with the template
    276                         // class.
    277                         $content .= $this->page->doc->table($table, $tableLayout).'<br /><br />';
    278301                }
    279302
  • TabularUnified trunk/mod1/locallang.xml

    r97 r106  
    1010                        <label index="language">Language</label>
    1111                        <label index="norecords">No records defined</label>
     12                        <label index="event">Event:</label>
    1213                        <label index="function1">Event data</label>
    1314                        <label index="subModuleTitle_time_slots">Time slots</label>
     
    6061                        <label index="language">Sprache</label>
    6162                        <label index="norecords">Keine Datensätze vorhanden</label>
     63                        <label index="event">Veranstaltung:</label>
    6264                        <label index="function1">Veranstaltungsdaten</label>
    6365                        <label index="subModuleTitle_time_slots">Vortragszeiten</label>
  • TabularUnified trunk/tca.php

    r100 r106  
    635635                'timeslots' => Array (         
    636636                        'exclude' => 1,         
    637                         'label' => 'LLL:EXT:wse_events/locallang_db.php:tx_wseevents_sessions.timeslots',               
     637                        'label' => 'LLL:EXT:wse_events/locallang_db.php:tx_wseevents_sessions.timeslots',
    638638                        'config' => Array (
    639639                                'type' => 'select',     
Note: See TracChangeset for help on using the changeset viewer.