00001 <?php
00002
00015
00016
00017 import("manager.form.setup.ConferenceSetupForm");
00018
00019 class ConferenceSetupStep6Form extends ConferenceSetupForm {
00020
00025 function getLocaleFieldNames() {
00026 return array('searchDescription', 'searchKeywords', 'customHeaders');
00027 }
00028
00032 function ConferenceSetupStep6Form() {
00033 parent::ConferenceSetupForm(
00034 6,
00035 array(
00036 'searchDescription' => 'string',
00037 'searchKeywords' => 'string',
00038 'customHeaders' => 'string'
00039 )
00040 );
00041 }
00042 }
00043
00044 ?>