/** * Singleton, returns Adverts instance * * @return Adverts */ public static function instance() { if (self::$_instance === NULL) { self::$_instance = new self(); } return self::$_instance; }