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