function media_sharestream_settings_form in Media: ShareStream 7
The Media: ShareStream configuration form.
See also
1 string reference to 'media_sharestream_settings_form'
- media_sharestream_menu in ./
media_sharestream.module - Implement hook_menu().
File
- includes/
media_sharestream.admin.inc, line 15 - Admin page callbacks for the Media: ShareStream module.
Code
function media_sharestream_settings_form() {
$form['media_sharestream_server'] = array(
'#type' => 'textfield',
'#title' => t('ShareStream Server'),
'#default_value' => variable_get('media_sharestream_server', ''),
'#description' => t('Public ShareStream Pick-N-Play Server URL, without the protocol. Example: sharestream.example.org'),
);
return system_settings_form($form);
}