Make WordPress Core

Changeset 25474

Timestamp:
09/18/2013 07:37:39 AM (11 years ago)
Author:
westi
Message:

Inline documentation for hooks in wp-admin/includes/plugin.php

See #25229 props dllh

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/plugin.php

    r25272 r25474  
    541541
    542542        if ( ! $silent ) {
     543
     544
     545
     546
     547
     548
     549
     550
    543551            do_action( 'activate_plugin', $plugin, $network_wide );
     552
     553
     554
     555
     556
     557
     558
     559
     560
     561
     562
    544563            do_action( 'activate_' . $plugin, $network_wide );
    545564        }
     
    555574
    556575        if ( ! $silent ) {
     576
     577
     578
     579
     580
     581
     582
     583
    557584            do_action( 'activated_plugin', $plugin, $network_wide );
    558585        }
     
    595622
    596623        if ( ! $silent )
     624
     625
     626
     627
     628
     629
     630
     631
     632
     633
    597634            do_action( 'deactivate_plugin', $plugin, $network_deactivating );
    598635
     
    615652
    616653        if ( ! $silent ) {
     654
     655
     656
     657
     658
     659
     660
     661
     662
     663
     664
     665
    617666            do_action( 'deactivate_' . $plugin, $network_deactivating );
     667
     668
     669
     670
     671
     672
     673
     674
     675
     676
     677
    618678            do_action( 'deactivated_plugin', $plugin, $network_deactivating );
    619679        }
     
    866926
    867927        add_action( 'uninstall_' . $file, $callable );
     928
     929
     930
     931
     932
     933
     934
     935
     936
    868937        do_action( 'uninstall_' . $file );
    869938    }
Note: See TracChangeset for help on using the changeset viewer.