Changeset 57
- Timestamp:
- Sep 9, 2007, 1:59:08 PM (18 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/pi1/class.tx_wseevents_pi1.php ¶
r55 r57 281 281 $this->internal['results_at_a_time']=t3lib_div::intInRange($lConf['results_at_a_time'],0,1000,100); // Number of results to show in a listing. 282 282 $this->internal['maxPages']=t3lib_div::intInRange($lConf['maxPages'],0,1000,2);; // The maximum number of "pages" in the browse-box: "Page 1", 'Page 2', etc. 283 $this->internal['searchFieldList']='uid,name,firstname,email,info'; 284 $this->internal['orderByList']='name'; 285 286 // $where = ' AND '.$this->internal['currentTable'].'.sys_language_uid = '.$index; 283 $this->internal['searchFieldList']='name,firstname,email,info,uid'; 284 $this->internal['orderByList']='name,firstname,email,info,uid'; 285 $this->internal['orderBy']='name'; 286 $this->internal['descFlag']=0; 287 // Check for setting sort order via TypoScript 288 if (isset($this->conf['sortSpeakerlist'])) { 289 list($this->internal['orderBy'],$this->internal['descFlag']) = explode(':',$this->conf['sortSpeakerlist']); 290 } 291 287 292 $where = ' AND '.$this->internal['currentTable'].'.sys_language_uid = 0'; 288 293 … … 375 380 $image = trim($this->getFieldContent('image')); 376 381 if (!empty($image)) { 377 # $markerArray['###IMAGEFILE###'] = $uploadDirectory.'/'.$image;378 382 $img = $this->conf['image.']; 379 383 if (empty($img)) { … … 494 498 $content_select .= $this->cObj->substituteMarkerArrayCached($template['option'], $markerArray); 495 499 } 500 501 # Get date format 502 #$content .= t3lib_div::view_array($conf); 503 #$content .= 'conf strftime='.$conf['strftime'].'<br>'; 504 if (!$conf['strftime']){ 505 $conf['strftime'] = '%d.%m.%Y'; 506 } 507 #$content .= 'conf strftime='.$conf['strftime'].'<br>'; 496 508 # Get count of days and name of days 497 509 $secofday = 60*60*24; … … 501 513 #ToDo: Mit TYPO3 den Wochentag ermitteln und das Datum formatieren 502 514 # setlocale(LC_TIME, 'de_DE'); 503 #ToDo: Trenner durch TypoScript einstellbar machen 504 $dayname[$d] = strftime( '%d.%m.%Y', $thisday);515 516 $dayname[$d] = strftime($conf['strftime'], $thisday); 505 517 $weekdays[$d] = strftime('%A', $thisday); 506 518 … … 521 533 $roomname[$r] = $rooms[$r]['name']; 522 534 } 523 #$content .= t3lib_div::view_array($ roomname);535 #$content .= t3lib_div::view_array($GLOBALS["TSFE"]->config["config"]); 524 536 #$content .= t3lib_div::view_array($GLOBALS['TSFE']); 525 537 # Create a list with the times of slot begins
Note:
See TracChangeset
for help on using the changeset viewer.