Changeset 44
- Timestamp:
- Sep 17, 2020, 10:12:29 AM (4 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Locale/cs.php
r43 r44 30 30 'Women' => 'Ženy', 31 31 'Kids' => 'Děti', 32 'All' => 'Všichni', 32 33 'Category' => 'Kategorie', 33 34 'Last change' => 'Poslední změna', … … 87 88 'families' => 'rodiny', 88 89 'sync' => 'sync', 90 'men' => 'muzi', 91 'women' => 'zeny', 92 'kids' => 'deti', 89 93 ), 90 94 ); -
trunk/Locale/en.php
r43 r44 30 30 'Women' => '', 31 31 'Kids' => '', 32 'All' => '', 32 33 'Category' => '', 33 34 'Last change' => '', … … 59 60 'families' => '', 60 61 'sync' => '', 62 'men' => '', 63 'women' => '', 64 'kids' => '', 61 65 ) 62 66 ); -
trunk/index.php
r43 r44 713 713 } 714 714 715 function ShowRunners() 715 function ShowRunnersAll() 716 { 717 return $this->ShowRunners(); 718 } 719 720 function ShowRunnersMen() 721 { 722 return $this->ShowRunners('(Gender=1)'); 723 } 724 725 function ShowRunnersWomen() 726 { 727 return $this->ShowRunners('(Gender=2)'); 728 } 729 730 function ShowRunnersKids() 731 { 732 return $this->ShowRunners('(Gender=3)'); 733 } 734 735 function ShowRunners($Where = '1') 716 736 { 717 737 $this->Title = T('Runners').' - '.$this->Title; 718 738 $Output = '<div class="page-title">'.T('Runners').'</div>'; 739 $Output .= '<div class="section-title">'. 740 '<a href="'.$this->Link('/runners/').'">'.T('All').'</a> '. 741 '<a href="'.$this->Link('/men/').'">'.T('Men').'</a> '. 742 '<a href="'.$this->Link('/women/').'">'.T('Women').'</a> '. 743 '<a href="'.$this->Link('/kids/').'">'.T('Kids').'</a>'. 744 '</div>'; 719 745 $Year = $this->GetYear(); 720 746 721 747 $Output .= '<div class="section-title">'.$this->YearList('/runners/', $Year, 'Runner').' '.T('Name').': '.$this->ShowSearch().'</div>'; 722 $Where = '(Year='.$Year.')';748 $Where .= ' AND (Year='.$Year.')'; 723 749 if (array_key_exists('query', $_GET) and ($_GET['query'] != '')) 724 750 { … … 1114 1140 //else if ($this->PathItems[0] == 'empty') $Output .= $this->ShowEmpty(); 1115 1141 else if ($Item == 'runner') $Output .= $this->ShowRunner(); 1116 else if ($Item == 'runners') $Output .= $this->ShowRunners(); 1142 else if ($Item == 'runners') $Output .= $this->ShowRunnersAll(); 1143 else if ($Item == 'men') $Output .= $this->ShowRunnersMen(); 1144 else if ($Item == 'women') $Output .= $this->ShowRunnersWomen(); 1145 else if ($Item == 'kids') $Output .= $this->ShowRunnersKids(); 1117 1146 else if ($Item == 'team') $Output .= $this->ShowTeam(); 1118 1147 else if ($Item == 'teams') $Output .= $this->ShowTeams();
Note:
See TracChangeset
for help on using the changeset viewer.