Make WordPress Core


Ignore:
Timestamp:
10/19/2004 03:03:06 AM (20 years ago)
Author:
rboren
Message:

Split admin-header.php into admin.php and admin-header.php. Split menu.php into menu-header.php and menu.php. Add plugin admin page support.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/functions.php

    r1812 r1818  
    22362236}
    22372237
     2238function is_plugin_page() {
     2239    global $plugin_page;
     2240
     2241    if (isset($plugin_page)) {
     2242        return true;
     2243    }
     2244
     2245    return false;
     2246}
     2247
    22382248?>
Note: See TracChangeset for help on using the changeset viewer.