PATH:
home
/
thecwrif
/
public_html
/
wp-content
/
plugins
/
metform
/
traits
<?php namespace MetForm\Traits; trait Singleton { private static $instance; public static function instance() { if (!self::$instance) { self::$instance = new self(); } return self::$instance; } }
[-] button-controls.php
[edit]
[-] singleton.php
[edit]
[+]
..
[-] conditional-controls.php
[edit]
[-] common-controls.php
[edit]
[-] quiz-control.php
[edit]