Keine Beschreibung

Activator.php 893B

123456789101112131415161718192021222324252627282930313233343536373839
  1. <?php
  2. /*******************************************************************************
  3. * Copyright (c) 2019, Code Atlantic LLC
  4. ******************************************************************************/
  5. // Exit if accessed directly
  6. if ( ! defined( 'ABSPATH' ) ) {
  7. exit;
  8. }
  9. /**
  10. * Fired during plugin activation.
  11. *
  12. * This class defines all code necessary to run during the plugin's activation.
  13. *
  14. * @since 1.4
  15. * @deprecated 1.9.0 Use PUM_Install instead.
  16. * @package PUM
  17. * @subpackage PUM/includes
  18. * @author Daniel Iser <danieliser@wizardinternetsolutions.com>
  19. */
  20. class PUM_Activator extends PUM_Install {
  21. /**
  22. * Short Description. (use period)
  23. *
  24. * Long Description.
  25. *
  26. * @since 1.4
  27. * @deprecated 1.9.0
  28. *
  29. * @param bool $network_wide
  30. */
  31. public static function activate( $network_wide = false ) {
  32. parent::activate_plugin( $network_wide );
  33. }
  34. }