Mercurial > epgrec.yaz
comparison programTable.php @ 39:8965ef108821
change: modify all scripts for web base setting.
| author | Sushi-k <epgrec@park.mda.or.jp> |
|---|---|
| date | Tue, 28 Jul 2009 11:50:04 +0900 |
| parents | e5f9aa34d06f |
| children | 73350e16077a |
comparison
equal
deleted
inserted
replaced
| 38:2bc96d657ba1 | 39:8965ef108821 |
|---|---|
| 95 | 95 |
| 96 $types = array(); | 96 $types = array(); |
| 97 $types[0]['name'] = "すべて"; | 97 $types[0]['name'] = "すべて"; |
| 98 $types[0]['value'] = "*"; | 98 $types[0]['value'] = "*"; |
| 99 $types[0]['selected'] = $type == "*" ? "selected" : ""; | 99 $types[0]['selected'] = $type == "*" ? "selected" : ""; |
| 100 if( GR_TUNERS ) { | 100 if( $settings->gr_tuners ) { |
| 101 $arr = array(); | 101 $arr = array(); |
| 102 $arr['name'] = "GR"; | 102 $arr['name'] = "GR"; |
| 103 $arr['value'] = "GR"; | 103 $arr['value'] = "GR"; |
| 104 $arr['selected'] = $type == "GR" ? "selected" : ""; | 104 $arr['selected'] = $type == "GR" ? "selected" : ""; |
| 105 array_push( $types, $arr ); | 105 array_push( $types, $arr ); |
| 106 } | 106 } |
| 107 if( BS_TUNERS ) { | 107 if( $settings->bs_tuners ) { |
| 108 $arr = array(); | 108 $arr = array(); |
| 109 $arr['name'] = "BS"; | 109 $arr['name'] = "BS"; |
| 110 $arr['value'] = "BS"; | 110 $arr['value'] = "BS"; |
| 111 $arr['selected'] = $type == "BS" ? "selected" : ""; | 111 $arr['selected'] = $type == "BS" ? "selected" : ""; |
| 112 array_push( $types, $arr ); | 112 array_push( $types, $arr ); |
