Example #1
0
 /**
  * Returns the singleton instance of the class.
  *
  * @since 2.1.9
  *
  * @return object The Soliloquy_Dynamic_Common object.
  */
 public static function get_instance()
 {
     if (!isset(self::$instance) && !self::$instance instanceof Soliloquy_Dynamic_Common) {
         self::$instance = new Soliloquy_Dynamic_Common();
     }
     return self::$instance;
 }