主题窗体按钮/管理窗体按钮

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了主题窗体按钮/管理窗体按钮相关的知识,希望对你有一定的参考价值。

  1. /**
  2.  * Theme a form button.
  3.  *
  4.  * @ingroup themeable
  5.  */
  6.  
  7. function mytheme_button($element) {
  8. // Make sure not to overwrite classes.
  9. if (isset($element['#attributes']['class'])) {
  10. $element['#attributes']['class'] = 'Button form-' . $element['#button_type'] . ' ' . $element['#attributes']['class'];
  11. }
  12. else {
  13. $element['#attributes']['class'] = 'Button form-' . $element['#button_type'];
  14. }
  15.  
  16. // Skip admin pages due to some issues with ajax not being able to find buttons.
  17. if (arg(0) == 'admin') {
  18. return '<input type="submit" '. (empty($element['#name']) ? '' : 'name="'. $element['#name'] .'" ') .'id="'. $element['#id'] .'" value="'. check_plain($element['#value']) .'" '. drupal_attributes($element['#attributes']) ." /> ";
  19. }
  20.  
  21. return '<button type="submit" ' . (empty($element['#name']) ? '' : 'name="' . $element['#name']
  22. . '" ') . 'id="' . $element['#id'] . '" value="' . check_plain($element['#value']) . '" ' . drupal_attributes($element['#attributes']) . '>'
  23. . '<span class="btn">'
  24. . '<span class="l"></span>'
  25. . '<span class="r"></span>'
  26. . '<span class="t">' . check_plain($element['#value']) . '</span>'
  27. . '</span></button>';
  28. }

以上是关于主题窗体按钮/管理窗体按钮的主要内容,如果未能解决你的问题,请参考以下文章

在C#winform 中怎样在旧窗体中通过按钮打开新窗体选择后传值给旧窗体 把旧窗体的值改变

窗体按钮权限控制

下一个按钮用户窗体 Excel VBA

C# WPF: 在一个窗体上设置一个按钮,点击这个按钮时,打开新窗体并关闭原窗体?

如何在 Access 2007 的窗体中实现点击按钮打开另一个窗体???

高难的WINFORM问题在窗体里点击关闭按钮把窗体隐藏而不是关闭