1: <?php
2:
3: /**
4: * Delete the property value from the database.
5: *
6: * @param string $type
7: * @param string $slug
8: * @param int $post_id
9: */
10: function papi_action_delete_value( $type, $slug, $post_id = 0 ) {
11: do_action( 'papi/delete_value/' . $type, $slug, $post_id );
12: }
13:
14: /**
15: * Fire the 'papi/include' action, where plugins should include files.
16: */
17: function papi_action_include() {
18: do_action( 'papi/include' );
19: }
20: