Make WordPress Core

Ticket #24209: 24209.patch

File 24209.patch, 889 bytes (added by amereservant, 12 years ago)

Filter Hooks for Plugins and Themes

  • wp-admin/includes/class-wp-plugin-install-list-table.php

     
    8484                                break;
    8585
    8686                        default:
    87                                 $args = false;
     87                                $args = apply_filters('install_plugins_custom_tab', false, $tab);
    8888                }
    8989
    9090                if ( !$args )
  • wp-admin/includes/class-wp-theme-install-list-table.php

     
    8989                                break;
    9090
    9191                        default:
    92                                 $args = false;
     92                                $args = apply_filters('install_themes_custom_tab', false, $tab);
    9393                }
    9494
    9595                if ( ! $args )