HEX
Server: LiteSpeed
System: Linux cpir1.prohostdns.com 4.18.0-553.123.2.lve.el8.x86_64 #1 SMP Thu May 7 23:17:13 UTC 2026 x86_64
User: pelakir (2976)
PHP: 8.2.31
Disabled: exec, shell_exec, system, passthru, proc_open, proc_close, proc_terminate, proc_get_status, popen, pclose, pcntl_exec
Upload Files
File: //proc/thread-self/root/proc/self/cwd/wp-content/plugins/digits/includes/forms/signup_field.php
<?php

namespace DigitsFormHandler;


if (!defined('ABSPATH')) {
    exit;
}


class SignUpField
{
    protected static $_instance = null;

    public function __construct()
    {

    }

    /**
     *  Constructor.
     */
    public static function instance()
    {
        if (is_null(self::$_instance)) {
            self::$_instance = new self();
        }
        return self::$_instance;
    }

    public static function parse_info($values)
    {
        $field_type = $values['meta_key'];
        if (strpos($field_type, 'country') !== false) {
            $values['type'] = 'dropdown';
            $values['options'] = dig_country_list();
            $values['use_key'] = true;
        }
        return $values;
    }
}