function download_file_insert_styles in DownloadFile 6
Implementation of hook_insert_styles().
File
- ./
download_file.inc, line 11 - Insert support for DownloadFile module.
Code
function download_file_insert_styles() {
$insert_styles = array(
'direct_download' => array(
'label' => t('Direct download file'),
'weight' => 40,
),
'direct_download_icon' => array(
'label' => t('Direct download file with the type icon'),
'weight' => 50,
),
'direct_download_accessible' => array(
'label' => t('Direct download file accessible'),
'weight' => 60,
),
'direct_download_accessible_icon' => array(
'label' => t('Direct download file accessible with the type icon'),
'weight' => 70,
),
);
return $insert_styles;
}