text 使用媒体小部件(Drupal)上传图像时需要使用alt文本

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了text 使用媒体小部件(Drupal)上传图像时需要使用alt文本相关的知识,希望对你有一定的参考价值。

/**
 * Implements hook_form_FORM_ID_alter().
 */
function mymodule_form_file_entity_add_upload_alter(&$form) {
  _mymodule_media_form_alter($form);
}

/**
 * Implements hook_form_FORM_ID_alter().
 */
function mymodule_form_file_entity_edit_alter(&$form) {
  _mymodule_media_form_alter($form);
}

/**
 * Alter the title and description of the alt text field and make it required.
 */
function _mymodule_media_form_alter(&$form) {
  $form['field_file_image_alt_text'][LANGUAGE_NONE][0]['value']['#required'] = 1;
  $form['field_file_image_alt_text'][LANGUAGE_NONE][0]['value']['#title'] = t('File description (alt text)');
  $form['field_file_image_alt_text'][LANGUAGE_NONE][0]['value']['#description'] = t('A useful description of the file so it can be found again and is also required for accessibility');
}

以上是关于text 使用媒体小部件(Drupal)上传图像时需要使用alt文本的主要内容,如果未能解决你的问题,请参考以下文章

动态图像上传到备用gridster小部件上

Cloudinary 上传图像小部件无法按预期工作

Cloudinary 小部件,用于在表单中上传图像

$(this).parent().find() 不起作用

在图像上叠加 Cloudinary 上传小部件

cloudinary 小部件在选择照片之前提交