如何在drupal 7中更改按钮的标题?

时间:2015-04-10 07:29:01

标签: php drupal-7

我安装了商务后台模块。在具有快速编辑按钮的商店产品列表中,实际上我需要将按钮的快速编辑标题更改为快速查看,请帮助我。

2 个答案:

答案 0 :(得分:0)

尝试hook_page_alter

function my_modulename_page_alter(&$page) {
  //find your button in $page variable and change its text.
  }

答案 1 :(得分:0)

您可以使用hook_form_alter更改表单按钮上的文字。