action_scheduler/created_table

action_scheduler/created_table

Hook Type: action

See hook in core

Displaying hooks found in version: all-in-one-seo-pack.4.2.0

do_action('action_scheduler/created_table') is found 1 times:

  • /vendor/woocommerce/action-scheduler/classes/abstracts/ActionScheduler_Abstract_Schema.php line 120
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
        if ( $definition ) {
            $updated = dbDelta( $definition );
            foreach ( $updated as $updated_table => $update_description ) {
                if ( strpos( $update_description, 'Created table' ) === 0 ) {
                    do_action( 'action_scheduler/created_table', $updated_table, $table );
                }
            }
        }
    }
     
    /**