Changeset 57


Ignore:
Timestamp:
Sep 9, 2007, 1:59:08 PM (18 years ago)
Author:
amp4ecs
Message:

Fixed #7
The sort order for speaker list is set to name ascending and can be changed via TypoScript.

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/pi1/class.tx_wseevents_pi1.php

    r55 r57  
    281281                $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.
    282282                $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               
    287292            $where = ' AND '.$this->internal['currentTable'].'.sys_language_uid = 0';
    288293
     
    375380                                $image = trim($this->getFieldContent('image'));
    376381                                if (!empty($image)) {
    377 #                                       $markerArray['###IMAGEFILE###'] = $uploadDirectory.'/'.$image;
    378382                                        $img = $this->conf['image.'];
    379383                                        if (empty($img)) {
     
    494498                        $content_select .= $this->cObj->substituteMarkerArrayCached($template['option'], $markerArray);
    495499                }
     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>';
    496508                # Get count of days and name of days
    497509                $secofday = 60*60*24;
     
    501513#ToDo: Mit TYPO3 den Wochentag ermitteln und das Datum formatieren
    502514#                       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);
    505517                        $weekdays[$d] = strftime('%A', $thisday);
    506518
     
    521533                        $roomname[$r] = $rooms[$r]['name'];
    522534                }
    523 #$content .= t3lib_div::view_array($roomname);
     535#$content .= t3lib_div::view_array($GLOBALS["TSFE"]->config["config"]);
    524536#$content .= t3lib_div::view_array($GLOBALS['TSFE']);
    525537                # Create a list with the times of slot begins
Note: See TracChangeset for help on using the changeset viewer.