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
183                                    <br/>
184                                    <?php
185                                         $actions = array();
186                                         $actions['edit'] = '<a href="' . $edit_link . '">' . __( 'Edit' ) . '</a>';
187
188                                         if ( current_user_can( 'delete_user', $user->ID ) && ! in_array( $user->user_login, $super_admins ) ) {
189                                              $actions['delete'] = '<a href="' . $delete = esc_url( network_admin_url( add_query_arg( '_wp_http_referer', urlencode( wp_unslash( $_SERVER['REQUEST_URI'] ) ), wp_nonce_url( 'users.php', 'deleteuser' ) . '&amp;action=deleteuser&amp;id=' . $user->ID ) ) ) . '" class="delete">' . __( 'Delete' ) . '</a>';
190                                         }
191
192                                         $actions = apply_filters( 'ms_user_row_actions', $actions, $user );
193                                         echo $this->row_actions( $actions );
194                                    ?>
195                               </td>
196                          <?php
197                          break;
198
199                          case 'name':
200                               echo "<td $attributes>$user->first_name $user->last_name</td>";
201                          break;