当前位置:Gxlcms > PHP教程 > Drupal7在content管理列表添加一列

Drupal7在content管理列表添加一列

时间:2021-07-01 10:21:17 帮助过:26人阅读

在后台admin/content的列表中添加一列。




  1. /**
  2. * Implements hook_form_alter().
  3. */
  4. function mymodule_form_alter(&$form, &$form_state, $form_id) {
  5. if($form_id == 'node_admin_content') {
  6. $form['admin']['nodes']['#header']['state'] = t('new row');
  7. foreach($form['admin']['nodes']['#options'] as $key => $row) {
  8. $form['admin']['nodes']['#options'][$key]['state'] = 'new row';
  9. }
  10. }
  11. }

人气教程排行