コード例 #1
0
ファイル: helper.php プロジェクト: rich20/Kunena
	static public function getLastId() {
		if (self::$_lastid === null) {
			$db = JFactory::getDBO ();
			$config = KunenaFactory::getConfig();
			if ($config->userlist_count_users == '1' ) $where = 'block=0 OR activation=""';
			elseif ($config->userlist_count_users == '2' ) $where = 'block=0 AND activation=""';
			elseif ($config->userlist_count_users == '3' ) $where = 'block=0';
			else $where = '1';
			$db->setQuery ( "SELECT id FROM #__users WHERE {$where} ORDER BY id DESC", 0, 1 );
			self::$_lastid = (int) $db->loadResult ();
			KunenaError::checkDatabaseError();
		}
		return self::$_lastid;
	}