如何通过theme-setting.php在drupal表单中正确添加FILE字段?

时间:2012-08-29 11:45:09

标签: drupal drupal-themes

我正在构建一个能够上传自定义背景图像的主题,但现在我陷入了困境。

如何通过theme-setting.php以drupal格式正确添加FILE字段,之后如何在模板文件中获取此文件的公共URL?

1 个答案:

答案 0 :(得分:12)

在你的theme_form_system_theme_settings_alter钩子中你需要添加以下表单元素:

  $form['theme_settings']['background_file'] = array(
    '#type'     => 'managed_file',
    '#title'    => t('Background'),
    '#required' => FALSE,
    '#upload_location' => file_default_scheme() . '://theme/backgrounds/',
    '#default_value' => theme_get_setting('background_file'), 
    '#upload_validators' => array(
      'file_validate_extensions' => array('gif png jpg jpeg'),
    ),
  );

这会将文件ID保存到主题settigns变量'background_file',请注意我将上传位置设置为主题/背景,这将位于您的文件夹中。

最后,您将使用file_create_url获取文件的完整URL:

$fid = theme_get_setting('background_file');
$image_url = file_create_url(file_load($fid)->uri);

编辑:

在你的template.php中你可以在theme_preprocess_page钩子中添加变量,这样所有的tpl都可以访问它,这就是:

function theme_preprocess_page(&$variables, $hook) {
    $fid = theme_get_setting('background_file');
    $variables['background_url'] = file_create_url(file_load($fid)->uri);
}

希望这有帮助! :d