输入banner图图片脚本导航/分类

Drupal7在content管理列表添加一列

在后台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. }