comment_entity_extra_field_info()
Implements hook_entity_extra_field_info().
File
- core/modules/comment/comment.module, line 100
- Enables users to comment on published content.
Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | function comment_entity_extra_field_info() { $return = array (); foreach (CommentType::loadMultiple() as $comment_type ) { $return [ 'comment' ][ $comment_type ->id()] = array ( 'form' => array ( 'author' => array ( 'label' => t( 'Author' ), 'description' => t( 'Author textfield' ), 'weight' => -2, ), ), ); $return [ 'comment' ][ $comment_type ->id()][ 'display' ][ 'links' ] = array ( 'label' => t( 'Links' ), 'description' => t( 'Comment operation links' ), 'weight' => 100, 'visible' => TRUE, ); } return $return ; } |
Please login to continue.