✘✘ GRAYBYTE WORDPRESS FILE MANAGER ✘✘

​🇳​​🇦​​🇲​​🇪♯➤ premium290.web-hosting.com ​🇻​♯➤ 4.18.0-553.45.1.lve.el8.x86_64 #1 SMP 🇾​♯➤ 2025

𝗛𝗢𝗠𝗘 𝗜𝗗 ♯➤ 63.250.38.37 ♯➤ 𝗔𝗗𝗠𝗜𝗡 𝗜𝗗 216.73.216.150
𝗢𝗣𝗧𝗜𝗢𝗡𝗦 ♯ CRL ♯➤ 𝗢𝗞 ┃ WGT ♯➤ 𝗢𝗞 ┃ SDO ♯➤ 𝗢𝗙𝗙 ┃ PKEX ♯➤ 𝗢𝗙𝗙
𝗗𝗘𝗔𝗖𝗧𝗜𝗩𝗔𝗧𝗘𝗗 ♯➤ 𝗔𝗟𝗟 𝗪𝗢𝗥𝗞𝗜𝗡𝗚....

𝗛𝗢𝗠𝗘
𝗖𝗨𝗥𝗥𝗘𝗡𝗧 𝗙𝗜𝗟𝗘 : /home/tdhomesa/tdtravelandlogistics.com/wp-content/plugins/ninja-forms/includes/Handlers//Field.php
<?php

namespace NinjaForms\Includes\Handlers;

use NinjaForms\Includes\Contracts\Field as ContractsField;

/**
 * Honor Field contract providing NF Field object methods
 *
 * Provides functionality normally handled by the field object created by
 * \Ninja_Forms()->form()->get_field( $fieldId )
 * 
 * 
 */
class Field implements ContractsField
{

    /**
     * Field Id
     *
     * @var int
     */
    protected $id = 0;

    /**
     * Field type
     *
     * @var string
     */
    protected $type = '';

    /**
     * Field settings
     *
     * @var array
     */
    protected $settings = [];

    /**
     * @inheritDoc
     */
    public function get_id(): int
    {
        return $this->id;
    }

    /** @inheritDoc */
    public function get_tmp_id()
    {
        return null;
    }


    /** @inheritDoc */
    public function get_type(): string
    {
        return $this->type;
    }

    /** @inheritDoc */
    public function get_setting($setting, $default = FALSE)
    {
        if (isset($this->settings[$setting])) {
            $return = $this->settings[$setting];
        } else {
            $return = $default;
        }

        return $return;
    }

    /** @inheritDoc */
    public function get_settings(): array
    {
        return $this->settings;
    }

    /** @inheritDoc */
    public function update_setting($key, $value): Field
    {
        return $this;
    }

    /** @inheritDoc */
    public function update_settings($data): Field
    {
        return $this;
    }

    /** @inheritDoc */
    public function delete()
    {
        return $this;
    }
    /** @inheritDoc */
    public function find($parent_id = '', array $where = array()): array
    {
        return [];
    }

    /** @inheritDoc */
    public function get_object_settings($obj_array): array
    {
        return [];
    }

    /** @inheritDoc */
    public function save()
    {
    }

    /** @inheritDoc */
    public function _insert_row($data = array()): void
    {
    }

    /** @inheritDoc */
    public function cache($cache = ''): Field
    {
        return $this;
    }

    /** @inheritDoc */
    public function add_parent($parent_id, $parent_type): Field
    {
        return $this;
    }

    /** @inheritDoc */
    public static function import(array $settings, $field_id = '', $is_conversion = FALSE): void
    {
    }

    /**
     * Construct entity from associative array
     *
     * @param array $items
     * @return Field
     */
    public static function fromArray(array $items): Field
    {
        $obj = new static();

        foreach ($items as $property => $value) {

            $obj = $obj->__set($property, $value);
        }

        return $obj;
    }

    /**
     * Magic method getter for properties
     *
     * @param string $name
     * @return void
     */
    public function __get($name)
    {
        $getter = 'get' . ucfirst($name);
        if (method_exists($this, $getter)) {
            return call_user_func([$this, $getter]);
        }
        if (property_exists($this, $name)) {
            return $this->$name;
        }

        if (isset($this->$name)) {
            return $this->$name;
        }
    }

    /**
     * Magic method setter for properties
     *
     *
     * @param string $name
     * @param mixed $value
     */
    public function __set(string $name, $value)
    {
        $setter = 'set' . ucfirst($name);
        if (method_exists($this, $setter)) {
            try {
                return call_user_func([$this, $setter], $value);
            } catch (\TypeError $e) {
                // Do not set invalid type
                return $this;
            }
        }

        if (property_exists($this, $name)) {
            $this->$name = $value;
            return $this;
        }

        return $this;
    }
}


Current_dir [ 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ] Document_root [ 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ]


[ Back ]
𝗡𝗔𝗠𝗘
𝗦𝗜𝗭𝗘
𝗟𝗔𝗦𝗧 𝗧𝗢𝗨𝗖𝗛
𝗨𝗦𝗘𝗥
𝗦𝗧𝗔𝗧𝗨𝗦
𝗙𝗨𝗡𝗖𝗧𝗜𝗢𝗡𝗦
..
--
10 Jun 2026 10.45 AM
tdhomesa / tdhomesa
0755
DateTimeConverter.php
3.168 KB
9 Feb 2023 9.52 PM
tdhomesa / tdhomesa
0644
Field.php
3.732 KB
17 Mar 2022 12.30 PM
tdhomesa / tdhomesa
0644
FieldsetRepeater.php
15.507 KB
21 Aug 2025 3.40 PM
tdhomesa / tdhomesa
0644
LocaleNumberFormatting.php
4.342 KB
3 Apr 2019 7.43 PM
tdhomesa / tdhomesa
0644
Sanitizer.php
1.029 KB
11 Oct 2023 8.27 PM
tdhomesa / tdhomesa
0644
SubmissionAggregate.php
12.995 KB
12 Apr 2023 10.02 PM
tdhomesa / tdhomesa
0644
SubmissionAggregateCsvExportAdapter.php
15.664 KB
12 May 2026 4.15 PM
tdhomesa / tdhomesa
0644

✘✘ GRAYBYTE WORDPRESS FILE MANAGER @ 2026 CONTACT ME ✘✘
Static GIF Static GIF