Go Back   vb.org Archive > Community Discussions > Modification Requests/Questions (Unpaid)

Reply
 
Thread Tools Display Modes
  #1  
Old 01-21-2015, 12:09 PM
Marv Marv is offline
 
Join Date: Jun 2002
Location: Germany
Posts: 372
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default Fundraising for Calendar-AddOn (or how it should have been done in the first place.)

When stumbling over the calendar and it?s functions, most where completly disappointed. No RSS-Feeds, no social networks, nothing. Ridicoulos and until now there are only a few coders that had mercy with us and were willing enough to give that calendar a little more functionality.

If you take a peek on other forum-softwares you can find pretty much all thinkable additions to their calendar-modules, upgrading it to a really useful and attracting part of a community, that should move the almost dead vBulletin calendar into the range of the main focus.

Don?t believe it? Have a look by yourself to this one for example: https://xenforo.com/community/resour...ndo-events.99/ . It?s made by Jaxel, a former vBulletin-Coder, who abandoned vBulletin and went on to use other software in the time of the owner change fiasko at vb.com and the initial release of XF. I?ve already contacted Jaxel today to find out, if there could be any chance to get this one ported over for a use with vBulletin 4.

It has to be assumed, that porting this mod over to vBulletin 4 will only happen, when some users are willing to spent some bugs for it. So, at this point I want to start a little fundraiser, who is willing to throw some money in the pot. Please only add yourself to the poll, when you are serious about that.
Reply With Quote
  #2  
Old 01-21-2015, 12:25 PM
ForceHSS ForceHSS is offline
 
Join Date: Apr 2008
Posts: 6,357
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Posted in the wrong place for polls reported
Reply With Quote
  #3  
Old 01-21-2015, 12:37 PM
Marv Marv is offline
 
Join Date: Jun 2002
Location: Germany
Posts: 372
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by ForceHSS View Post
Posted in the wrong place for polls reported
Seeing yourself as something like a forums police officer?

This isn?t a poll to raise votes on a specific opinion. The poll part is just abused for displaying, who would be willing to give which amount of money. The focus of this post is a request to make an AddOn available for vBulletin. So this is the only forum, where it is in the right place. At least I haven?t found a better one.
Reply With Quote
  #4  
Old 01-21-2015, 01:31 PM
TheAdminMarket's Avatar
TheAdminMarket TheAdminMarket is offline
 
Join Date: Jun 2013
Location: Thessaloniki, Greece
Posts: 511
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I've coded a simple Events Manager. The only difference is that for personal design issues I prefered to use a monthly listing calendar instead using the traditional calendar.

Other than this it has some great features and other can added. eg In this version I haven't used reccuring events or registrations on events as I don't need them. But I have these feautures (even with online payments for registrations) in another addon so I can add them.

The site is in Greek, but you can see just the interface. Simplicity.

https://www.lagadas.com/events.php
Reply With Quote
Благодарность от:
CharlieDelta
  #5  
Old 01-21-2015, 01:35 PM
CharlieDelta CharlieDelta is offline
 
Join Date: Apr 2010
Posts: 616
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Given Jaxel's track record at XF with crowd funding, I will not be throwing money at him.
Reply With Quote
  #6  
Old 01-21-2015, 01:41 PM
Marv Marv is offline
 
Join Date: Jun 2002
Location: Germany
Posts: 372
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by CharlieDelta View Post
Given Jaxel's track record at XF with crowd funding, I will not be throwing money at him.
All yours, I?m fine with that. But what is it exactly to come up with a statement like this? Even when this thread is about "who?s in".

--------------- Added [DATE]1421855284[/DATE] at [TIME]1421855284[/TIME] ---------------

Quote:
Originally Posted by NickTheGreek View Post
I've coded a simple Events Manager. The only difference is that for personal design issues I prefered to use a monthly listing calendar instead using the traditional calendar.

Other than this it has some great features and other can added. eg In this version I haven't used reccuring events or registrations on events as I don't need them. But I have these feautures (even with online payments for registrations) in another addon so I can add them.

The site is in Greek, but you can see just the interface. Simplicity.

https://www.lagadas.com/events.php
Nice, but I miss some core functionality that is in Jaxels:

Quote:
With this, administrators can define a forum as the "event forum". Then whenever a user submits an event, it will automatically create a thread in that forum, and tie the event into that thread.

From there, users can RSVP for the event, as well as find additional information such as google map integration and live streams.
  • Event scheduling with auto-thread generation
  • Monthly and Weekly calendar views
  • RSVP system for registered users
  • Google Map integration for events
  • uStream/justinTV integration for events
It?s nice to see, what others come up with (even when this thread should be about the portation of Jaxels Addon). Nick, are you still developing your mod further on?
Reply With Quote
  #7  
Old 01-21-2015, 02:05 PM
TheAdminMarket's Avatar
TheAdminMarket TheAdminMarket is offline
 
Join Date: Jun 2013
Location: Thessaloniki, Greece
Posts: 511
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Marv View Post
It?s nice to see, what others come up with (even when this thread should be about the portation of Jaxels Addon). Nick, are you still developing your mod further on?
To add an accossiated thread per event is just 5 lines of code witn 1st and last of them depending on which addon I'm using it
Code:
$sql_forum = $db->query_first("SELECT forumid FROM ".TABLE_PREFIX."gallery_categories WHERE id=$categoryid LIMIT 1");
$foruminfo = fetch_foruminfo($sql_forum['forumid']);
build_new_post('thread', $foruminfo, array(), array(), $newpost, $errors);
$threadid = $newpost['threadid'];
$db->query_write("UPDATE ".TABLE_PREFIX."gallery_albums SET threadid=$threadid WHERE id=$albumid");
Reply With Quote
  #8  
Old 01-21-2015, 02:09 PM
Marv Marv is offline
 
Join Date: Jun 2002
Location: Germany
Posts: 372
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Marv View Post
Quote:
Originally Posted by CharlieDelta View Post
Given Jaxel's track record at XF with crowd funding, I will not be throwing money at him.
All yours, I?m fine with that. But what is it exactly to come up with a statement like this? Even when this thread is about "who?s in".
Wow, just found out what you are referring to: https://xenforo.com/community/thread...wd-fund.67343/ . That?s why I?ld only use an escrow service for this. Anything else would be naive.
Reply With Quote
Благодарность от:
CharlieDelta
  #9  
Old 01-21-2015, 02:12 PM
TheAdminMarket's Avatar
TheAdminMarket TheAdminMarket is offline
 
Join Date: Jun 2013
Location: Thessaloniki, Greece
Posts: 511
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

uStream/justinTV integration for events
That's the only that I didn't understood. Most probably is a service commonly used at States?
Reply With Quote
  #10  
Old 01-21-2015, 02:26 PM
Marv Marv is offline
 
Join Date: Jun 2002
Location: Germany
Posts: 372
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by NickTheGreek View Post
uStream/justinTV integration for events
That's the only that I didn't understood. Most probably is a service commonly used at States?
Guess so, as it?s mostly unknown in europe. In times of Google Hangouts it would be far more interesting to have them instead, so broadcastings from events could be live on the forums.

Now I?m curious, Nick Are you about to adapt your mod to the specs of Jaxels Addon?
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 04:51 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.04297 seconds
  • Memory Usage 2,267KB
  • Queries Executed 11 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (1)ad_showthread_firstpost
  • (1)ad_showthread_firstpost_sig
  • (1)ad_showthread_firstpost_start
  • (1)bbcode_code
  • (8)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (10)post_thanks_box
  • (2)post_thanks_box_bit
  • (10)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (2)post_thanks_postbit
  • (10)post_thanks_postbit_info
  • (10)postbit
  • (10)postbit_onlinestatus
  • (10)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • fetch_musername
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • post_thanks_function_fetch_thanks_bit_start
  • post_thanks_function_show_thanks_date_start
  • post_thanks_function_show_thanks_date_end
  • post_thanks_function_fetch_thanks_bit_end
  • post_thanks_function_fetch_post_thanks_template_start
  • post_thanks_function_fetch_post_thanks_template_end
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete