youtubechannel.admin.inc in YoutubeChannel 6
Same filename and directory in other branches
admin file for youtubechannel.
File
youtubechannel.admin.incView source
<?php
/**
* @file
* admin file for youtubechannel.
*/
/**
* Settings form for youtube channel.
*/
function youtubechannel_settings_form() {
$form = array();
$template_options = array();
$templates = file_scan_directory(drupal_get_path('module', 'youtubechannel') . "/themes", ".png");
foreach ($templates as $path => $template) {
$template_options[$template->name] = "{$template->name}<div><img src='" . base_path() . "{$template->filename}'></div>";
}
$form['youtubechannel'] = array(
'#type' => 'fieldset',
'#title' => t('Youtube channel settings'),
'#collapsible' => FALSE,
);
$form['youtubechannel']['youtubechannel_user'] = array(
'#type' => 'textfield',
'#title' => t('Youtube username'),
'#size' => 40,
'#default_value' => variable_get('youtubechannel_user', NULL),
'#required' => TRUE,
'#description' => t('The youtube username you want to get the videos.'),
);
$form['youtubechannel']['youtubechannel_video_limit'] = array(
'#type' => 'textfield',
'#title' => t('Youtube Channel video limit'),
'#size' => 40,
'#default_value' => variable_get('youtubechannel_video_limit', 5),
'#required' => TRUE,
'#description' => t('Number of videos to be shown from youtube channel.'),
);
$form['youtubechannel']['youtubechannel_video_width'] = array(
'#type' => 'textfield',
'#title' => t('Youtube Channel video width'),
'#size' => 40,
'#default_value' => variable_get('youtubechannel_video_width', 200),
'#required' => TRUE,
'#description' => t('Max width to youtube video. In px'),
);
$form['youtubechannel']['youtubechannel_video_height'] = array(
'#type' => 'textfield',
'#title' => t('Youtube Channel video height'),
'#size' => 40,
'#default_value' => variable_get('youtubechannel_video_height', 150),
'#required' => TRUE,
'#description' => t('Max height to youtube video. In px'),
);
$form['youtubechannel']['youtubechannel_theme'] = array(
'#type' => 'radios',
'#title' => t('Theme'),
'#options' => $template_options,
'#default_value' => variable_get('youtubechannel_theme', 'simple'),
'#description' => t('Template to display the youtubechannel'),
);
return system_settings_form($form);
}
Functions
Name | Description |
---|---|
youtubechannel_settings_form | Settings form for youtube channel. |