You are here

OptionsTUnitTest.inc in Coder 8.2

File

coder_sniffer/DrupalPractice/Test/General/OptionsTUnitTest.inc
View source
<?php

$form['number_display'] = array(
  '#type' => 'select',
  '#title' => t('Display'),
  '#options' => array(
    '1' => '1',
    '2' => '2',
    '3' => '3',
    '4' => '4',
    '500' => '500',
    'a' => 'a',
    'abc' => 'abc',
    'four' => 'four',
  ),
);