[ABD] Games Collection Extension

Any abandoned Extensions will be moved to this forum.

WARNING: Extensions in this forum are not currently being supported or maintained by the original Extension author. Proceed at your own risk.
Forum rules
IMPORTANT: Extension Development Forum rules

WARNING: Extensions in this forum are not currently being supported nor updated by the original Extension author. Proceed at your own risk.
Tacitus89
Registered User
Posts: 30
Joined: Fri Apr 03, 2015 6:38 pm

Re: [BETA] Games Collection Extension

Post by Tacitus89 »

koraldon wrote:Is there an option to enable users to upload new games - that will make it much easier.
Currently not.
koraldon wrote:Also, ability to comment on games will be great (maybe open a new forum topic for each game)
At the moment you can link to forum or thread. Later I would like to display a topic directly.
noth wrote:so how do users add games to their profile?
They can add it in the UCP.
Galixte de EzCom wrote:Hi,
sorry if this question was already submit, but, why game collection, it can used for DVD, CD, or other items ?
Basically, yes. But in all labels stands "games".
koraldon
Registered User
Posts: 530
Joined: Sat Jun 30, 2007 12:42 pm

Re: [BETA] Games Collection Extension

Post by koraldon »

Thanks for all your hard work :)
It would be great if can implement ability for users to add games to database, making it into a "crowdsourcing" extension.
User avatar
StylesFactoryCom
Registered User
Posts: 145
Joined: Wed Dec 19, 2007 10:48 pm
Location: Poland
Contact:

Re: [BETA] Games Collection Extension

Post by StylesFactoryCom »

After upload to ext folder I can't see it in my resources. I can't turn it on beacause this extension is not on the list. Can you help?

// ok I found what's wrong :D Name of author copied from github was incorrect.
Looking for cheap and cool styles? PM me :P.
--> [email protected]
My official themes site: http://www.stylesfactory.pl
Tacitus89
Registered User
Posts: 30
Joined: Fri Apr 03, 2015 6:38 pm

Re: [BETA] Games Collection Extension

Post by Tacitus89 »

StylesFactoryCom wrote:// ok I found what's wrong :D Name of author copied from github was incorrect.
Haha, that nobody has noticed. :lol:
User avatar
Mess
Registered User
Posts: 985
Joined: Wed Jul 01, 2009 6:37 am
Name: Kim

Re: [BETA] Games Collection Extension

Post by Mess »

Tacitus89 wrote:
StylesFactoryCom wrote:// ok I found what's wrong :D Name of author copied from github was incorrect.
Haha, that nobody has noticed. :lol:
Arh thats why I had to do it by hand. :P
ntvy95
Registered User
Posts: 69
Joined: Wed Jun 10, 2015 12:58 pm

Re: [BETA] Games Collection Extension

Post by ntvy95 »

Hello, thank you very much for your great work.

I have used your extension together with @Mention System and it looks like the two extensions are not compatible to each other, they result in the warning on this page.
User avatar
StylesFactoryCom
Registered User
Posts: 145
Joined: Wed Dec 19, 2007 10:48 pm
Location: Poland
Contact:

Re: [BETA] Games Collection Extension

Post by StylesFactoryCom »

Can you add comments system for games added to the database? It would be really cool :D
Looking for cheap and cool styles? PM me :P.
--> [email protected]
My official themes site: http://www.stylesfactory.pl
User avatar
Theriddler1
Registered User
Posts: 451
Joined: Sat Aug 27, 2011 11:00 pm
Location: NL
Name: Theriddler❶
Contact:

Re: [BETA] Games Collection Extension

Post by Theriddler1 »

When creating category or adding games to the category

Code: Select all

[phpBB Debug] PHP Warning: in file [ROOT]/ext/tacitus89/gamesmod/controller/admin_controller.php on line 816: Invalid argument supplied for foreach()
Also when viewing viewonline page and show guests:

Code: Select all

Fatal error: Call to a member function route() on a non-object in /home/h13757hu/public_html/arcadeforum/ext/tacitus89/gamesmod/event/listener.php on line 395
Edit: last error mentioned fixed

Find:

Code: Select all

/**
	* Show users as viewing the Gamesmod on viewonline page
	*
	* @param object $event The event object
	* @return null
	* @access public
	*/
	public function viewonline_page($event)
	{
		if ($event['on_page'][1] == 'app')
		{
			if (strrpos($event['row']['session_page'], 'app.' . $this->php_ext . '/games') === 0)
			{
				$event['location'] = $this->user->lang('VIEWING_GAMES');
				$event['location_url'] = $this->controller_helper->route('tacitus89_gamesmod_main_controller');
			}
		}
	}
Replace with:

Code: Select all

/**
	* Show users as viewing the Gamesmod on viewonline page
	*
	* @param object $event The event object
	* @return null
	* @access public
	*/
	public function viewonline_page($event)
	{
		global $user, $auth;
		if ($event['on_page'][1] == 'app')
		{
			if (strpos($event['row']['session_page'], 'app.' . $this->php_ext . '/games') === false)
			{
				$event['location'] = $this->user->lang('VIEWING_GAMES');
				$event['location_url'] = $this->helper->route('tacitus89_gamesmod_main_controller');
			}
		}
	}
Theriddler - Former Moderator @ phpBB.nl | phpBBservice.nl Team-member
Image My Extensions | buy me a beer Image
User avatar
Mess
Registered User
Posts: 985
Joined: Wed Jul 01, 2009 6:37 am
Name: Kim

Re: [BETA] Games Collection Extension

Post by Mess »

I just got an awesome idea! If I say so myself. :P

If a forum or topic has been selected in the ACP, it should show the "game card / info" before the first post, or above the topics. With the option to add to collection.


Game card / Info:
Image

It would really integrate the mod with the forum. :)
Melon64
Registered User
Posts: 12
Joined: Wed Jul 29, 2015 10:05 pm
Contact:

Re: [BETA] Games Collection Extension

Post by Melon64 »

I also have quite a few suggestions for added functions.

Being able to add reviews, adding dedicated pages for publishers, musicians, etc, etc. Being able to set up various fields ie. Wanted, For Trade etc. Being able to define multiple formats per game rather than categories ie. Disk, Cassette, Cartridge.
Last edited by darcie on Wed Aug 05, 2015 6:27 pm, edited 1 time in total.
Reason: edited, see PMs :)
User avatar
Mess
Registered User
Posts: 985
Joined: Wed Jul 01, 2009 6:37 am
Name: Kim

Re: [BETA] Games Collection Extension

Post by Mess »

For the love of all that is holy, please don't let this be abandoned.... :?
User avatar
Galixte de EzCom
Registered User
Posts: 1106
Joined: Mon Oct 04, 2004 11:14 pm
Location: France
Name: Raphaël M.
Contact:

Re: [BETA] Games Collection Extension

Post by Galixte de EzCom »

Hi,
Mess wrote:For the love of all that is holy, please don't let this be abandoned.... :?
It’s not an abandonned extension but maybe you are impatient, it’s summer, holiday, etc..
Communau EzCom
📖 « Traductions d’extensions & styles pour phpBB 3.2.x & 3.3.x ».
📋 Lists of all extensions identified for phpBB 3.1.x & 3.2.x.
📋 Lists of all styles identified for phpBB 3.1.x & 3.2.x.
Image Tu as un forum et tu veux aussi un site web ? Regarde par ici.
User avatar
ninouee
Registered User
Posts: 90
Joined: Thu Aug 07, 2014 7:31 pm
Location: France
Contact:

Re: [BETA] Games Collection Extension

Post by ninouee »

Hello

Thank you for your idée and your work. Your extention can be used for many lot of thing.

And i have some questions:
- can we watching the picture one the profile of the member but not on the topics or can we juste see the most popular (number chose by admin)?
- The picture can be link with a tread or au subject (both can be used)?

Thank you.
Sorry for my poor english, it’s not my first langage but i work on it ;)
User avatar
ninouee
Registered User
Posts: 90
Joined: Thu Aug 07, 2014 7:31 pm
Location: France
Contact:

Re: [BETA] Games Collection Extension

Post by ninouee »

Do you want a french translation?

Is it possible to allow a group to ad game in the data base?

Is it possible to ensure that a game can be added by a member other than through the profile, but also by clicking on the game in question wherever it is found with an add button?
Sorry for my poor english, it’s not my first langage but i work on it ;)
matrixer
Registered User
Posts: 45
Joined: Tue Mar 01, 2016 5:37 pm

Re: [BETA] Games Collection Extension

Post by matrixer »

Hi There,

Has this beautiful EXT been abandoned? :|

Has anyone tried to install it on 3.2?
Locked

Return to “Abandoned Extensions”