Exemplo n.º 1
0
 public static function get_instance()
 {
     if (self::$_instance == null) {
         $class = __CLASS__;
         self::$_instance = new $class();
     }
     return self::$_instance;
 }
Exemplo n.º 2
0
 public function yop_poll_options_admin_init()
 {
     $genOptObj = YOP_POLL_General_Options::get_instance();
     register_setting('yop_poll_options', 'yop_poll_options', array(&$genOptObj, 'general_options_validate'));
 }