Files
old-new-wiaas/backend/app/plugins/wiaas/includes/admin/class-wiaas-admin-delivery-process.php

12 lines
320 B
PHP
Raw Normal View History

2018-10-21 16:39:58 +02:00
<?php
2018-11-01 00:55:14 +01:00
class Wiaas_Admin_Delivery_Process {
2018-10-21 16:39:58 +02:00
public static function init() {
2018-11-01 00:55:14 +01:00
require_once dirname( __FILE__ ) . '/delivery-process/class-wiaas-admin-delivery-process-flow.php';
require_once dirname( __FILE__ ) . '/delivery-process/wiaas-admin-delivery-process-ajax.php';
2018-10-21 16:39:58 +02:00
}
}
2018-11-01 00:55:14 +01:00
Wiaas_Admin_Delivery_Process::init();