Пример #1
0
 /**
  * Get the database connection
  *
  * @return  object
  */
 private static function getCurrent()
 {
     if (!self::$current) {
         $dbh = App::get('db');
         $dbh->setQuery('SELECT * FROM `#__incremental_registration_options` ORDER BY added DESC LIMIT 1');
         self::$current = $dbh->loadAssoc();
     }
     return self::$current;
 }