NEXT craftinamerica.org. Base setup for headless wordpress https://www.craftinamerica.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

dropdown-factory.php 446B

12345678910111213141516171819
  1. <?php
  2. class P2P_Dropdown_Factory extends P2P_Factory {
  3. protected $key = 'admin_dropdown';
  4. function __construct() {
  5. parent::__construct();
  6. add_action( 'load-edit.php', array( $this, 'add_items' ) );
  7. add_action( 'load-users.php', array( $this, 'add_items' ) );
  8. }
  9. function add_item( $directed, $object_type, $post_type, $title ) {
  10. $class = 'P2P_Dropdown_' . ucfirst( $object_type );
  11. $item = new $class( $directed, $title );
  12. }
  13. }