Arrow

Full Scale Hockey League - Levels and Convenors | Peter's Sports League Standings | Forum

Back to the sports standings script page

Please consider registering
guest

Log In

Lost password?
Advanced Search

— Forum Scope —

  

— Match —

   

— Forum Options —

   

Minimum search word length is 4 characters - maximum search word length is 84 characters

Topic RSS
Full Scale Hockey League - Levels and Convenors
October 21, 2008
12:20 pm
ClearShot
Guest

Hello there from Canada,

I'm the webmaster for http://www.ucmhl.info, which is the Upper Canada Minor Hockey League. I have created a makeshift system where convenors for each level can upload the schedule and standings and enter in game summary reports.

My goal was to create a system where they enter in the game report and it automatically adds the score to the schedule, and tallies the standings, minimizing the workload. When I was searching for ways to do this I found your script. I've tried it out with tests and it seems light something I could work with.

Is there a way to implement the following things, or is it already possible?

-Import schedules from XLS or CVS files
-Support for levels Novice to Midget
-Access for specific levels for level convenors
-I'd also like the schedules and standings to be viewable by the public on the main UCMHL site
-Conferences for some levels, not others

If there is any direction you could point me in, that'd be great.
Thanks alot!
Conor Cleary

October 22, 2008
1:07 am
Peter
Admin
Forum Posts: 841
Offline

Hi!

-Import schedules from XLS or CVS files

I did implement CSV import for a custom implementation, but that was… custom, and it was built for a slightly older version. I can share the import code with you, but you would have to do your own tweaking.

-Support for levels Novice to Midget

Anything that can be managed under a Seasons -> Conferences -> Divisions -> Teams hierarchy can be done. You can treat “seasons” or “conferences” as leagues, depending on your needs.

-Access for specific levels for level convenors

If by this you mean different access levels for different administrators, then yes.

-I’d also like the schedules and standings to be viewable by the public on the main UCMHL site

Yes, there is a default display of the standings that comes with the script. With styling, tweaking of PHP code and MySQL calls, you can display any part of the standings in any way that you want.

-Conferences for some levels, not others

You can certainly “hide” the display of conferences / divisions, although in the back-end, it would still keep the same Seasons -> Conferences -> Divisions -> Teams hierarchy. In certain cases, you would just create 1 division in 1 conference.

October 22, 2008
5:25 pm
ClearShot
Guest

Hi,
That’d be great!
The scheduling import would be really handy; there are quite a few teams to deal with. So that would go right into the ‘Upcoming games’ and such? I’m going to look into the source to see how much I can play around with.
If you could send me that, along with anything else that might be handy that’d be sweet. ([email protected])
Thanks alot,
Conor

October 22, 2008
5:51 pm
ClearShot
Guest

Hi,
I'm getting an error when I add teams to a division.

Back\\n"; } else { die($text_no_perm); } ?>

http://ucmhl.info/standings/st.....ndings.php

I've added all of the 'levels'

October 22, 2008
7:19 pm
ClearShot
Guest

Modified addyes.php
Made it <?php instead of <? at the top
Works now :)

October 23, 2008
2:58 pm
Peter
Admin
Forum Posts: 841
Offline

Ah, thanks for pointing that out. I'll have to fix that for the next release, as it means that <? is only recognized on setups where the PHP setting "short_tags" is enabled.