Exemple #1
0
 /**
  * Access the single instance of this class
  * @return Kirki
  */
 public static function get_instance()
 {
     if (self::$instance == null) {
         self::$instance = new Kirki();
     }
     return self::$instance;
 }