Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: ms_user_row_actions

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
207                                          * Filter the action links displayed under each user
208                                          * in the Network Admin Users list table.
209                                          *
210                                          * @since 3.2.0
211                                          *
212                                          * @param array   $actions An array of action links to be displayed.
213                                          *                         Default 'Edit', 'Delete'.
214                                          * @param WP_User $user    WP_User object.
215                                          */
216                                         $actions = apply_filters( 'ms_user_row_actions', $actions, $user );
217                                         echo $this->row_actions( $actions );
218                                    ?>
219                               </td>
220                          <?php
221                          break;
222
223                          case 'name':
224                               echo "<td $attributes>$user->first_name $user->last_name</td>";
225                          break;