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.

direction-strategy.php 198B

123456789
  1. <?php
  2. interface P2P_Direction_Strategy {
  3. function get_arrow();
  4. function choose_direction( $direction );
  5. function directions_for_admin( $direction, $show_ui );
  6. function get_directed_class();
  7. }