ACF_To_REST_API::create_rest_routes PHP Метод

create_rest_routes() публичный статический Метод

public static create_rest_routes ( )
        public static function create_rest_routes()
        {
            $default = array('user', 'comment', 'term', 'option');
            $types = get_post_types(array('show_in_rest' => true));
            if ($types && isset($types['attachment'])) {
                unset($types['attachment']);
                $default[] = 'media';
            }
            $types = apply_filters('acf/rest_api/types', array_merge($types, array_combine($default, $default)));
            if (is_array($types) && count($types) > 0) {
                foreach ($types as $type) {
                    if ('term' == $type) {
                        $controller = new ACF_To_REST_API_Term_Controller($type);
                    } elseif ('media' == $type) {
                        $controller = new ACF_To_REST_API_Attachment_Controller($type);
                    } elseif ('option' == $type) {
                        $controller = new ACF_To_REST_API_Option_Controller($type);
                    } else {
                        $controller = new ACF_To_REST_API_Controller($type);
                    }
                    $controller->register_routes();
                    $controller->register_hooks();
                }
            }
        }