HEX
Server: Apache
System: Linux webd003.cluster128.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
User: slyfwmm (169339)
PHP: 8.1.34
Disabled: _dyuweyrj4,_dyuweyrj4r,dl
Upload Files
File: /home/slyfwmm/dallavitae/OLD_WP/wp-content/plugins/cloudflare/src/API/PluginRoutes.php
<?php

namespace CF\API;

class PluginRoutes
{
    public static $routes = array(
        'account' => array(
            'class' => 'CF\API\AbstractPluginActions',
            'methods' => array(
                'POST' => array(
                    'function' => 'login',
                ),
            ),
        ),

        'plugin/:id/settings' => array(
            'class' => 'CF\API\AbstractPluginActions',
            'methods' => array(
                'GET' => array(
                    'function' => 'getPluginSettings',
                ),
            ),
        ),

        'plugin/:id/settings/:human_readable_id' => array(
            'class' => 'CF\API\AbstractPluginActions',
            'methods' => array(
                'PATCH' => array(
                    'function' => 'patchPluginSettings',
                ),
            ),
        ),

        'config' => array(
            'class' => 'CF\API\AbstractPluginActions',
            'methods' => array(
                'GET' => array(
                    'function' => 'getConfig',
                ),
            ),
        ),
    );
}