Changeset 106
- Timestamp:
- Oct 9, 2007, 12:03:37 AM (18 years ago)
- Location:
- trunk
- Files:
-
- 13 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/ChangeLog ¶
r101 r106 1 2007-10-08 2 * Show event data from sub pages, if available. 3 1 4 2007-10-06 2 5 * Disabled fields that do not be translated when editing a translated record. -
TabularUnified trunk/class.tx_wseevents_categories.php ¶
r105 r106 53 53 * @author Michael Oehlhof <typo3@oehlhof.de> 54 54 */ 55 c class tx_wseevents_categories {55 class tx_wseevents_categories { 56 56 /** The extension key. */ 57 57 var $extKey = 'wseevents'; -
TabularUnified trunk/class.tx_wseevents_events.php ¶
r105 r106 253 253 $limit); 254 254 $row = $GLOBALS['TYPO3_DB']->sql_fetch_assoc($res); 255 256 255 // Clear the item array 257 256 $slotlist = array(); 258 257 259 258 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 } 278 284 } 279 if ($slotlist[$itemindex]==$end) {280 $finished = true;281 }282 $itemindex += 1;283 }284 285 } 285 286 return $slotlist; -
TabularUnified trunk/class.tx_wseevents_timeslots.php ¶
r105 r106 252 252 $roomcount = count($eventslotarray['1']); 253 253 #debug($roomcount,'$roomcount'); 254 foreach (explode(',',$speakerslotlist) as $speakerslot) {254 foreach (explode(',',$speakerslotlist) as $speakerslot) { 255 255 // Get slot record 256 256 $slotrow = t3lib_BEfunc::getRecord ('tx_wseevents_timeslots', $speakerslot); -
TabularUnified trunk/mod1/class.tx_wseevents_backendlist.php ¶
r105 r106 45 45 var $page; 46 46 47 /** Holds a list of pids of the sub pages of the selected page. */ 48 var $selectedPids; 49 var $selectedPidsTitle; 50 47 51 /** 48 52 * The constructor. Sets the table name and the back-end page object. … … 57 61 } 58 62 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 59 177 /** 60 178 * Generates an edit record icon which is linked to the edit view of … … 145 263 * @access public 146 264 */ 147 function getNewIcon($pid ) {265 function getNewIcon($pid,$usediv=1) { 148 266 global $BACK_PATH, $LANG, $BE_USER; 149 267 … … 155 273 $editOnClick = $this->editNewUrl($params, $BACK_PATH); 156 274 $langNew = $LANG->getLL('newRecordGeneral'); 275 if ($usediv==1) { 276 $div = 'div'; 277 } else { 278 $div = 'span'; 279 } 157 280 $result = TAB.TAB 158 .'< divid="typo3-newRecordLink">'.LF281 .'<'.$div.' id="typo3-newRecordLink">'.LF 159 282 .TAB.TAB.TAB 160 283 .'<a href="'.htmlspecialchars($editOnClick).'">'.LF … … 173 296 .'</a>'.LF 174 297 .TAB.TAB 175 .'</div>'.LF; 176 } 177 298 .'</'.$div.'>'.LF; 299 } 178 300 return $result; 179 301 } 180 302 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> '; 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 181 342 /** 182 343 * Returns the url for the "create new record" link and the "edit record" link. -
TabularUnified trunk/mod1/class.tx_wseevents_categorieslist.php ¶
r105 r106 174 174 $imglang = $this->syslang[0][0]; 175 175 } else { 176 $imglang = ''; 176 177 foreach ($this->syslang as $thislang) { 177 178 if ($row['sys_language_uid'] == $thislang[1]) { -
TabularUnified trunk/mod1/class.tx_wseevents_eventslist.php ¶
r105 r106 59 59 * Generates and prints out an event list. 60 60 * 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 * 61 119 * @return string the HTML source code of the event list 62 120 * @access public … … 67 125 // Initialize the variable for the HTML source code. 68 126 $content = ''; 69 70 $content .= $this->getNewIcon($this->page->pageInfo['uid']);71 127 72 128 // Set the table layout of the event list. … … 98 154 ), 99 155 array( 100 TAB.TAB.TAB.TAB.'<td class="datecol">'.LF,156 TAB.TAB.TAB.TAB.'<td>'.LF, 101 157 TAB.TAB.TAB.TAB.'</td>'.LF 102 158 ), … … 113 169 114 170 // Fill the first row of the table array with the header. 115 $table = array(171 $tableHdr = array( 116 172 array( 117 173 TAB.TAB.TAB.TAB.TAB.TAB … … 130 186 .'<span style="color: #ffffff; font-weight: bold;">' 131 187 .$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, 132 191 '', 133 192 ) … … 146 205 } 147 206 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 .= ' '.$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 } 193 269 } 194 // Output the table array using the tableLayout array with the template195 // class.196 $content .= $this->page->doc->table($table, $tableLayout);197 270 } 198 271 -
TabularUnified trunk/mod1/class.tx_wseevents_sessionslist.php ¶
r105 r106 79 79 } else { 80 80 $catnum = ''; 81 $imglang = ''; 81 82 foreach ($this->syslang as $thislang) { 82 83 if ($row['sys_language_uid'] == $thislang[1]) { … … 131 132 132 133 // 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 />'; 134 135 135 136 // Set the table layout of the event list. … … 206 207 } 207 208 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 208 222 // 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 } 210 226 211 227 // -------------------- Get list of categories -------------------- 212 228 // 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'; 214 230 $additionalTables = ''; 215 231 $groupBy = ''; … … 242 258 // -------------------- Get list of events -------------------- 243 259 // 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'; 245 261 $additionalTables = ''; 246 262 $groupBy = ''; … … 262 278 $event = array(); 263 279 $event['uid'] = $row['uid']; 280 $event['pid'] = $row['pid']; 264 281 $event['name'] = $row['name']; 265 282 $event['location'] = $row['location']; … … 274 291 foreach ($events as $event) { 275 292 // 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 .= ' '.$this->getNewIcon($event['pid'],0).'<br />'; 277 295 278 296 // 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'; 280 298 $additionalTables = ''; 281 299 $groupBy = ''; … … 296 314 297 315 if ($res) { 316 $found = false; 298 317 while ($row = $GLOBALS['TYPO3_DB']->sql_fetch_assoc($res)) { 318 $found = true; 299 319 $this->addRowToTable($table, $row); 300 320 // Check for translations. 301 $queryWhere = 'l18n_parent='.$row['uid'];321 $queryWhere = $wherePid.' AND l18n_parent='.$row['uid']; 302 322 $additionalTables = ''; 303 323 $groupBy = ''; … … 319 339 } 320 340 } 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 } 321 348 } 322 // Output the table array using the tableLayout array with the template323 // class.324 $content .= $this->page->doc->table($table, $tableLayout).'<br /><br />';325 349 } 326 350 -
TabularUnified trunk/mod1/class.tx_wseevents_speakerrestrictionslist.php ¶
r105 r106 74 74 // Initialize the variable for the HTML source code. 75 75 $content = ''; 76 77 $content .= $this->getNewIcon($this->page->pageInfo['uid']);78 76 79 77 // Set the table layout of the speaker restrictions list. … … 150 148 } 151 149 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 152 168 // -------------------- Get list of speakers -------------------- 153 169 // 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'; 155 171 $additionalTables = ''; 156 172 $groupBy = ''; … … 176 192 // -------------------- Get list of events -------------------- 177 193 // 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'; 179 195 $additionalTables = ''; 180 196 $groupBy = ''; … … 207 223 foreach ($events as $event) { 208 224 // 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 .= ' '.$this->getNewIcon($event['pid'],0).'<br />'; 210 227 211 228 // Get list of timeslots for the event … … 213 230 214 231 // 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'; 216 233 $additionalTables = ''; 217 234 $groupBy = ''; … … 258 275 // Output the table array using the tableLayout array with the template 259 276 // class. 260 $content .= $this->page->doc->table($table, $tableLayout) ;277 $content .= $this->page->doc->table($table, $tableLayout).'<br />'.LF; 261 278 } else { 262 $content .= $LANG->getLL('norecords').'<br /><br />'.LF;279 $content .= '<br />'.$LANG->getLL('norecords').'<br /><br />'.LF; 263 280 } 264 281 } -
TabularUnified trunk/mod1/class.tx_wseevents_speakerslist.php ¶
r105 r106 154 154 } 155 155 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 156 174 // Initialize variables for the database query. 157 $queryWhere = 'pid='.$this->page->pageInfo['uid'].' AND deleted=0';175 $queryWhere = $wherePid.' AND deleted=0'; 158 176 $additionalTables = ''; 159 177 $groupBy = ''; … … 171 189 172 190 if ($res) { 191 $found = false; 173 192 while ($row = $GLOBALS['TYPO3_DB']->sql_fetch_assoc($res)) { 193 $found = true; 174 194 $uid = $row['uid']; 175 195 $hidden = $row['hidden']; … … 177 197 $imglang = $this->syslang[0][0]; 178 198 } else { 199 $imglang = ''; 179 200 foreach ($this->syslang as $thislang) { 180 201 if ($row['sys_language_uid'] == $thislang[1]) { … … 213 234 ); 214 235 } 215 }216 217 $content .= $this->getNewIcon($this->page->pageInfo['uid']);218 219 // Output the table array using the tableLayout array with the template220 // 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 222 243 223 244 return $content; -
TabularUnified trunk/mod1/class.tx_wseevents_timeslotslist.php ¶
r105 r106 148 148 } 149 149 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 150 163 // 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 152 168 153 169 // -------------------- Get list of rooms -------------------- 154 170 // 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'; 156 172 $additionalTables = ''; 157 173 $groupBy = ''; … … 174 190 } 175 191 } 176 177 192 if (!isset($this->page->pageInfo['uid'])) { 178 193 return; … … 181 196 // -------------------- Get list of events -------------------- 182 197 // 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'; 184 199 $additionalTables = ''; 185 200 $groupBy = ''; … … 201 216 $event = array(); 202 217 $event['uid'] = $row['uid']; 218 $event['pid'] = $row['pid']; 203 219 $event['name'] = $row['name']; 204 220 $event['location'] = $row['location']; … … 207 223 } 208 224 209 // Add box for event selection225 // ToDo: Add box for event selection 210 226 211 227 … … 213 229 foreach ($events as $event) { 214 230 // 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 .= ' '.$this->getNewIcon($event['pid'],0).'<br />'; 216 233 217 234 // Get list of timeslots for the event … … 222 239 223 240 // 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'; 225 242 $additionalTables = ''; 226 243 $groupBy = ''; … … 241 258 242 259 if ($res) { 260 $found = false; 243 261 while ($row = $GLOBALS['TYPO3_DB']->sql_fetch_assoc($res)) { 262 $found = true; 244 263 $uid = $row['uid']; 245 264 $hidden = $row['hidden']; … … 272 291 ); 273 292 } 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 } 274 300 } 275 // Output the table array using the tableLayout array with the template276 // class.277 $content .= $this->page->doc->table($table, $tableLayout).'<br /><br />';278 301 } 279 302 -
TabularUnified trunk/mod1/locallang.xml ¶
r97 r106 10 10 <label index="language">Language</label> 11 11 <label index="norecords">No records defined</label> 12 <label index="event">Event:</label> 12 13 <label index="function1">Event data</label> 13 14 <label index="subModuleTitle_time_slots">Time slots</label> … … 60 61 <label index="language">Sprache</label> 61 62 <label index="norecords">Keine Datensätze vorhanden</label> 63 <label index="event">Veranstaltung:</label> 62 64 <label index="function1">Veranstaltungsdaten</label> 63 65 <label index="subModuleTitle_time_slots">Vortragszeiten</label> -
TabularUnified trunk/tca.php ¶
r100 r106 635 635 'timeslots' => Array ( 636 636 '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', 638 638 'config' => Array ( 639 639 'type' => 'select',
Note:
See TracChangeset
for help on using the changeset viewer.