vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.6 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=194)
-   -   Calendar Enhancements - vB Event Forums (https://vborg.vbsupport.ru/showthread.php?t=123416)

thincom2000 02-19-2007 05:05 AM

In order to add attachments to your forum events (once the event is posted):

Create new plugin.

Product: Lv vB Event Forums
Title: Attachment Permissions
Hookname: showthread_post_start
Phpcode:
PHP Code:

$show['caneditattach'] = ($threadinfo['lv_vb_eventforums_eventid'] AND $forumperms $vbulletin->bf_ugp_forumpermissions['canpostattachment'] AND $vbulletin->userinfo['userid'] AND !empty($vbulletin->userinfo['attachmentextensions'])) ? true false


FILE EDIT: calendar.php

Find:
PHP Code:

        case 'edit':
        {
            
$_POST['do'] = 'edit';
        }
        break; 

Add underneath:
PHP Code:

        case 'attach':
        {
            
$eventpostid $db->query_first("
                SELECT firstpostid 
                FROM " 
TABLE_PREFIX "thread
                WHERE lv_vb_eventforums_eventid = 
$eventinfo[eventid]
            "
);

            
exec_header_redirect($vbulletin->options['bburl'] . '/editpost.php?p=' $eventpostid[firstpostid]);
        }
        break; 


TEMPLATE EDITS: editpost

Find:
Code:

<if condition="$show['deletepostoption']">
Add above:
Code:

<if condition="$attachments_only"><div style="visibility: hidden; position: absolute"></if>

Find:
Code:

$postpreview
Add underneath:
Code:

<if condition="$attachments_only"></div></if>

Find:
Code:

<form name="vbform" action="editpost.php?do=updatepost&amp;p=$postid" method="post"<if condition="!is_browser('webtv')"> onsubmit="return vB_Editor['$editorid'].prepare_submit(0, $vboptions[postminchars])"</if>>
Add underneath:
Code:

<if condition="$attachments_only"><div style="visibility: hidden; position: absolute"></if>

Find:
Code:

<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
        <td class="tcat">
                <a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapse('newpost_options')"><img id="collapseimg_newpost_options" src="$stylevar[imgdir_button]/collapse_tcat$vbcollapse[collapseimg_newpost_options].gif" alt="" border="0" /></a>

Add above:
Code:

<if condition="$attachments_only"></div></if>

Find:
Code:

<div class="panel">
                <div style="width:$stylevar[formwidth]" align="$stylevar[left]">

Add underneath:
Code:

<if condition="$attachments_only"><div style="visibility: hidden; position: absolute"></if>

Find:
Code:

$attachmentoption
Replace with:
Code:

<if condition="$attachments_only"></div></if>
       
                                $attachmentoption
                                               
<if condition="$attachments_only"><div style="visibility: hidden; position: absolute"></if>


Find:
Code:

</div>
                        </div>
                       
                        <div style="margin-top:$stylevar[cellpadding]px">
                                <input type="submit" class="button" name="sbutton" value="$vbphrase[save_changes]" accesskey="s" tabindex="1" />
                                <input type="submit" class="button" name="preview" value="$vbphrase[preview_changes]" accesskey="r" tabindex="1" />
<if condition="$attachments_only">

Replace with:
Code:

                                <if condition="$attachments_only"></div></if>

                                </div>
                        </div>
                       
                        <div style="margin-top:$stylevar[cellpadding]px">
                                <input type="submit" class="button" name="sbutton" value="$vbphrase[save_changes]" accesskey="s" tabindex="1" />
<if condition="$attachments_only"><div style="visibility: hidden; position: absolute"></if>
                                <input type="submit" class="button" name="preview" value="$vbphrase[preview_changes]" accesskey="r" tabindex="1" />
<if condition="$attachments_only"></div></if>


TEMPLATE EDITS: calendar_showeventsbit

Find:
Code:

<div>$eventinfo[event]</div>
Add underneath:
Code:

                <if condition="$show['attachments']">
<br />
                <!-- attachments -->
                        <div style="padding:$stylevar[cellpadding]px">
                       
                        <if condition="$show['thumbnailattachment']">
                                <fieldset class="fieldset">
                                        <legend>$vbphrase[attached_thumbnails]</legend>
                                        <div style="padding:$stylevar[formspacer]px">
                                        $eventinfo[thumbnailattachments]
                                        </div>
                                </fieldset>
                        </if>
               
                        <if condition="$show['imageattachment']">
                                <fieldset class="fieldset">
                                        <legend>$vbphrase[attached_images]</legend>
                                        <div style="padding:$stylevar[formspacer]px">
                                        $eventinfo[imageattachments]
                                        </div>
                                </fieldset>
                        </if>
                       
                        <if condition="$show['imageattachmentlink']">
                                <fieldset class="fieldset">
                                        <legend>$vbphrase[attached_images]</legend>
                                        <table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0">
                                        $eventinfo[imageattachmentlinks]
                                        </table>
                                        </fieldset>
                        </if>
                       
                        <if condition="$show['otherattachment']">
                                <fieldset class="fieldset">
                                        <legend>$vbphrase[attached_files]</legend>
                                        <table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0">
                                        $eventinfo[otherattachments]
                                        </table>
                                </fieldset>
                        </if>
                       
                        <if condition="$show['moderatedattachment']">
                                <fieldset class="fieldset">
                                        <legend>$vbphrase[attachments_pending_approval]</legend>
                                        <table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0">
                                        $eventinfo[moderatedattachments]
                                        </table>
                                </fieldset>               
                        </if>
                       
                        </div>
                <!-- / attachments -->
</if>


Find:
Code:

<if condition="$show['caneditevent']">
                                                <option value="edit">:: &nbsp; $vbphrase[edit_event]</option>
                                        </if>

Add underneath:
Code:

<if condition="$show['caneditattach']">
<option value="attach">:: &nbsp; Edit Attachments</option>
</if>


I think that's everything I did. In order to add attachments at the same time you create the event a LOT more edits were necessary and I didn't have the patience for it. Adding them after creation was good enough for me.

stwilson 02-20-2007 01:15 AM

Quote:

Originally Posted by thincom2000 (Post 1182558)
It would be really nice if we could add attachments to events. Right now I have to do it manually in the database.

I second that!!! That would be a nice feature add.

bugzy 02-23-2007 07:07 AM

Quote:

Originally Posted by mrjbs (Post 1125105)
I have the same problem...no new event button. The button will show if the <if></if> is removed. But then it will show in all of the forums. Is there a different if statement that could be used to choose the forum that it will show up in?

i have the same issue

the New Events wont show up after following the instructions

thincom2000 02-28-2007 12:11 AM

There's a setting for this:

Show the New Event button on the thread list.
Setting this to no will change the New Thread button to forward the user to the add event form.

Setting this to yes will add a New Event button, ONLY if you have also added the necessary template modification in FORUMDISPLAY. See the installation instructions for more information.

Is it set to yes?

stwilson 02-28-2007 03:20 AM

Quote:

Originally Posted by bugzy (Post 1188883)
i have the same issue

the New Events wont show up after following the instructions

I can only get it to show in mine if I have the Summary of events set to yes. I have updated the template to allow it to show but it does not....even when the setting is set to Yes, while the Summary option is set to no.

thincom2000 02-28-2007 10:12 AM

Quote:

Originally Posted by stwilson (Post 1192418)
I can only get it to show in mine if I have the Summary of events set to yes. I have updated the template to allow it to show but it does not....even when the setting is set to Yes, while the Summary option is set to no.

This is because the plugin for forumdisplay_complete that sets $show['neweventlink'] to true uses the condition:
PHP Code:

if(($lv_vb_eventforums_showSummaryThisThread) && ($lv_vb_eventforums_thisCalendar 0)) 

I am thinking then that what you were experiencing was intentional on the coder's behalf.

objectuser 03-03-2007 10:56 PM

I was trying to change the display of the thread title in the forum display and accomplished that. I updated it by updating the product-lv_vb_eventforums_v3_3.xml file and installing it with "Allow Overwrite" set to Yes.

After my update, the thread title is showing up twice in the thread view (if that's the right term). I've attached an image of what is going on.

If anyone can tell me what went wrong and how to fix it, I would certainly appreciate it. I tested this change on my test forum, but didn't notice the duplication until I had applied it to my live forum. :o

thincom2000 03-04-2007 02:12 AM

Check your postbit_display_start hook for Hide the first post on Event Threads. It seems like the first post is not being hidden, and since it's still the firstpostid, would be still be using the showeventsbit template over the regular postbit.

objectuser 03-04-2007 02:55 AM

Quote:

Originally Posted by thincom2000 (Post 1195214)
Check your postbit_display_start hook for Hide the first post on Event Threads. It seems like the first post is not being hidden, and since it's still the firstpostid, would be still be using the showeventsbit template over the regular postbit.

Thanks for the response.

Okay, I found the hook and it's active. I tried rolling back the software in my test forum and it still shows double.

Looking at the content now.

Update: it's definitely getting in that inner condition that does: $this->templatename = '';
Update 2: somehow, Display Event Details on Thread Page/showthread_complete got turned on, while the event attendance/event forum integration actually turns it off. So I'm not sure how I messed it up, but it seems fine now.

thincom2000, thanks for getting me started on this.

thincom2000 03-04-2007 06:04 PM

You had two copies of the showthread_complete plugin? I thought the integration removes the original too, but I'm glad you solved it.


All times are GMT. The time now is 01:58 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.01951 seconds
  • Memory Usage 1,802KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (18)bbcode_code_printable
  • (4)bbcode_php_printable
  • (5)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (3)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.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/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.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
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete