You are here

function asset_youtube_asset_settings in Asset 5

Same name and namespace in other branches
  1. 6 asset_youtube/asset_youtube.module \asset_youtube_asset_settings()

File

asset_youtube/asset_youtube.module, line 16

Code

function asset_youtube_asset_settings() {
  $form['asset_youtube_dev_id'] = array(
    '#type' => 'textfield',
    '#title' => t('YouTube Developer ID'),
    '#description' => '<a href="http://www.youtube.com/my_profile_dev">Get your YouTube Developer Id here.</a>',
    '#default_value' => variable_get('asset_youtube_dev_id', ''),
  );
  return system_settings_form($form);
}