WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )apply_filters( "hook_name", "what_to_filter" ).Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
| Line | Code |
|---|---|
| 347 | |
| 348 | if( isset($plugin['homepage']) ) |
| 349 | $title = '<a target="_blank" href="' . esc_attr($plugin['homepage']) . '">' . $title . '</a>'; |
| 350 | |
| 351 | $action_links = array(); |
| 352 | $action_links[] = '<a href="' . admin_url('plugin-install.php?tab=plugin-information&plugin=' . $plugin['slug'] . |
| 353 | '&TB_iframe=true&width=600&height=550') . '" class="thickbox onclick" title="' . |
| 354 | esc_attr($name) . '">' . __('Install') . '</a>'; |
| 355 | |
| 356 | $action_links = apply_filters('plugin_install_action_links', $action_links, $plugin); |
| 357 | ?> |
| 358 | <tr> |
| 359 | <td class="name"><?php echo $title; ?></td> |
| 360 | <td class="vers"><?php echo $version; ?></td> |
| 361 | <td class="vers"> |
| 362 | <div class="star-holder" title="<?php printf(_n('(based on %s rating)', '(based on %s ratings)', $plugin['num_ratings']), number_format_i18n($plugin['num_ratings'])) ?>"> |
| 363 | <div class="star star-rating" style="width: <?php echo esc_attr($plugin['rating']) ?>px"></div> |
| 364 | <div class="star star5"><img src="<?php echo admin_url('images/star.gif'); ?>" alt="<?php _e('5 stars') ?>" /></div> |
| 365 | <div class="star star4"><img src="<?php echo admin_url('images/star.gif'); ?>" alt="<?php _e('4 stars') ?>" /></div> |