Advertisement
Guest User

Dynamically defined numbers

a guest
Dec 18th, 2013
2,080
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.14 KB | None | 0 0
  1. // Found inside a very VERY large "config" array
  2. "RATING_VALUES" => array(
  3.     "0"=>"0",
  4.     "0.5"=>"0.5",
  5.     "1"=>"1",
  6.     "1.5"=>"1.5",
  7.     "2"=>"2",
  8.     "2.5"=>"2.5",
  9.     "3"=>"3",
  10.     "3.5"=>"3.5",
  11.     "4"=>"4",
  12.     "4.5"=>"4.5",
  13.     "5"=>"5"
  14. ),
  15.    
  16. "DATE_MONTHS" => array(
  17.     '1'=>'1',
  18.     '2'=>'2',
  19.     '3'=>'3',
  20.     '4'=>'4',
  21.     '5'=>'5',
  22.     '6'=>'6',
  23.     '7'=>'7',
  24.     '8'=>'8',
  25.     '9'=>'9',
  26.     '10'=>'10',
  27.     '11'=>'11',
  28.     '12'=>'12'
  29. ),
  30.    
  31. "DATE_MONTHS_0" => array(
  32.     ''=>'Monat',
  33.     '1'=>'1',
  34.     '2'=>'2',
  35.     '3'=>'3',
  36.     '4'=>'4',
  37.     '5'=>'5',
  38.     '6'=>'6',
  39.     '7'=>'7',
  40.     '8'=>'8',
  41.     '9'=>'9',
  42.     '10'=>'10',
  43.     '11'=>'11',
  44.     '12'=>'12'
  45. ),
  46.    
  47. "DATE_DAYS" => array(
  48.     '1'=>'1',
  49.     '2'=>'2',
  50.     '3'=>'3',
  51.     '4'=>'4',
  52.     '5'=>'5',
  53.     '6'=>'6',
  54.     '7'=>'7',
  55.     '8'=>'8',
  56.     '9'=>'9',
  57.     '10'=>'10',
  58.     '11'=>'11',
  59.     '12'=>'12',
  60.     '13'=>'13',
  61.     '14'=>'14',
  62.     '15'=>'15',
  63.     '16'=>'16',
  64.     '17'=>'17',
  65.     '18'=>'18',
  66.     '19'=>'19',
  67.     '20'=>'20',
  68.     '21'=>'21',
  69.     '22'=>'22',
  70.     '23'=>'23',
  71.     '24'=>'24',
  72.     '25'=>'25',
  73.     '26'=>'26',
  74.     '27'=>'27',
  75.     '28'=>'28',
  76.     '29'=>'29',
  77.     '30'=>'30',
  78.     '31'=>'31'
  79. ),
  80.    
  81. "DATE_DAYS_0" => array(
  82.     ''=>'Tag',
  83.     '1'=>'1',
  84.     '2'=>'2',
  85.     '3'=>'3',
  86.     '4'=>'4',
  87.     '5'=>'5',
  88.     '6'=>'6',
  89.     '7'=>'7',
  90.     '8'=>'8',
  91.     '9'=>'9',
  92.     '10'=>'10',
  93.     '11'=>'11',
  94.     '12'=>'12',
  95.     '13'=>'13',
  96.     '14'=>'14',
  97.     '15'=>'15',
  98.     '16'=>'16',
  99.     '17'=>'17',
  100.     '18'=>'18',
  101.     '19'=>'19',
  102.     '20'=>'20',
  103.     '21'=>'21',
  104.     '22'=>'22',
  105.     '23'=>'23',
  106.     '24'=>'24',
  107.     '25'=>'25',
  108.     '26'=>'26',
  109.     '27'=>'27',
  110.     '28'=>'28',
  111.     '29'=>'29',
  112.     '30'=>'30',
  113.     '31'=>'31'
  114. ),
  115.    
  116. "CALENDAR_WEEKDAY_TEXTS" => array(
  117.     '0'=>'Sonntag',
  118.     '1'=>'Montag',
  119.     '2'=>'Dienstag',
  120.     '3'=>'Mittwoch',
  121.     '4'=>'Donnerstag',
  122.     '5'=>'Freitag',
  123.     '6'=>'Samstag'
  124. ),
  125.    
  126. "CALENDAR_SHORT_WEEKDAY_TEXTS" => array(
  127.     '0'=>'So.',
  128.     '1'=>'Mo.',
  129.     '2'=>'Di.',
  130.     '3'=>'Mi.',
  131.     '4'=>'Do.',
  132.     '5'=>'Fr.',
  133.     '6'=>'Sa.'
  134. ),
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement