6
양식 선택 필드에 대한 옵션 비활성화
양식 선택 필드에서 옵션을 비활성화하려면 어떻게합니까? $form['feed'] = array( '#type' => 'select', '#title' => t('Display of XML feed items'), '#options' => array( 'title' => t('Titles only'), 'teaser' => t('Titles plus teaser'), 'fulltext' => t('Full text'), ), '#description' => t('Global setting for the length of XML feed items that are output …