Changeset 14 for types/Date.php


Ignore:
Timestamp:
Oct 14, 2008, 9:24:18 AM (16 years ago)
Author:
george
Message:
  • Přidáno: Typ File(soubor). Možnost uploadovat nový soubor nebo otevřít stávající uložený.
  • Přidáno: Typ DateTime(datum a čas).
File:
1 edited

Legend:

Unmodified
Added
Removed
  • types/Date.php

    r11 r14  
    11<?php
    2 
    3 $MonthList = array('0', 'Leden', 'Únor', 'Březen', 'Duben', 'Květen', 'Červen', 'Červenec', 'Srpen', 'Září', 'Říjen', 'Listopad', 'Prosinec');
    42
    53function TypeDateOnView($Item)
    64{
    7   global $MonthList;
     5  global $MonthNames;
    86
    97  $Parts = explode('-', $Item['Value']);
    108
    11   $Output = ($Parts[2] * 1).'.'.$MonthList[$Parts[1] * 1].'.'.$Parts[0];
     9  $Output = ($Parts[2] * 1).'.'.$MonthNames[$Parts[1] * 1].' '.$Parts[0];
    1210  return($Output);
    1311}
     
    1513function TypeDateOnEdit($Item)
    1614{
    17   global $MonthList;
     15  global $MonthNames;
    1816
    1917  $Parts = explode('-', $Item['Value']);
     
    3230  {
    3331    if($Parts[1] == $I) $Selected = ' selected="1"'; else $Selected = '';
    34     $Output .= '<option value="'.$I.'"'.$Selected.'>'.$MonthList[$I].'</option>';
     32    $Output .= '<option value="'.$I.'"'.$Selected.'>'.$MonthNames[$I].'</option>';
    3533  }
    3634  $Output .= '</select>';
Note: See TracChangeset for help on using the changeset viewer.