vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.0 Full Releases (https://vborg.vbsupport.ru/forumdisplay.php?f=33)
-   -   vBGarage v3.1.1 (now with GD-Lib support!) (https://vborg.vbsupport.ru/showthread.php?t=63681)

moonclamp 05-24-2004 10:00 AM

Quote:

Originally Posted by flat6
Not sure how relevant this is :rolleyes: but I'm currently coding my own vB garage... it's not going to be released, since it's too much of a custom application, tying in with the main website (runs off the car model database) but here's how it looks... still a work in progress, BTW.

Looks good ... So how much would we have to beg you to get a copy? The customisations are so close to what I want it would save me a hell of a lot of time. ;)

Was it easy to attach the wysiwyg editor?

eob 05-24-2004 11:55 AM

Come on, release it, you know it makes sense... all those 'Designed By:' links raking in traffic to your own car website...

flat6 05-24-2004 12:17 PM

Well, I'm going to finish coding it in about a month, right now only the admin part in the CP is done, so I'll come back then and update you guys and maybe put up some code for download.

To answer the wysiwyg editor question, it looks like a lot of code, but since it's just recycled vB3 code, it wasn't hard to implement, mainly just cut and paste, with a little fixing and customization.

The code:

PHP Code:

// ############################################################################
// ############################################################################
// ############################# THE CAR'S STORY ##############################
// ############################################################################
// ############################################################################

// ############################ start edit owner_history ##########################
if ($_REQUEST['do'] == 'edit_story')
{
    require_once(
'./includes/functions_newpost.php');
    
$htmlcodeon iif($vboptions['allowhtml'], $vbphrase['on'], $vbphrase['off']);
    
$bbcodeon iif($vboptions['allowbbcode'], $vbphrase['on'], $vbphrase['off']);
    
$imgcodeon iif($vboptions['allowbbimagecode'], $vbphrase['on'], $vbphrase['off']);
    
$smilieson iif($vboptions['allowsmilies'], $vbphrase['on'], $vbphrase['off']);

    
// only show posting code allowances in forum rules template
    
$show['codeonly'] = true;

    eval(
'$forumrules = "' fetch_template('forumrules') . '";');

    if (!isset(
$preview))
    {
        
$result $DB_site->query("
            SELECT story
            FROM f6_car_owned WHERE car_owned_id=
$car_owned_id
        "
);
        while (
$car mysql_fetch_array($result))
            {
            
$story $car[story];
            }
    }

    require_once(
'./includes/functions_editor.php');

    
// set message box width to usercp size
    
$stylevar['messagewidth'] = $stylevar['messagewidth_usercp'];
    
construct_edit_toolbar(htmlspecialchars_uni($story), 000);
    
    
// draw cp nav bar
    
construct_usercp_nav('garage');

    
$navbits[''] = $vbphrase['edit_garage'];
    
$templatename 'modify_story';
}


// ########################### start update owner_history #########################
if ($_POST['do'] == 'update_story')
{
    
globalize($_POST, array('WYSIWYG_HTML''message' => STR'preview'));


    
    if (isset(
$WYSIWYG_HTML))
    {
        require_once(
'./includes/functions_wysiwyg.php');
        
$story convert_wysiwyg_html_to_bbcode($WYSIWYG_HTML$vboptions['allowhtml']);
    }
    else
    {
        
$story trim($message);
    }

    if (isset(
$preview))
    {
        if (
is_array($errors))
        {
            
$errorlist '';
            foreach (
$errors AS $key => $errormessage)
            {
                eval(
'$errorlist .= "' fetch_template('newpost_errormessage') . '";');
            }
            
$show['errors'] = true;
        }

        require_once(
'./includes/functions_bbcodeparse.php');
        
$previewmessage parse_bbcode2($story$vboptions['allowhtml'], $vboptions['allowbbimagecode'], $vboptions['allowsmilies'], $vboptions['allowbbcode']);
        
// save a conditional by just overwriting the phrase
        
$vbphrase['submit_message'] = "Save Car's Story";
        eval(
'$preview = "' fetch_template('newpost_preview') . '";');
        
$_REQUEST['do'] = 'edit_story';
    }
    else
    {
        
$DB_site->query("
            UPDATE f6_car_owned
            SET story = '" 
addslashes($story) . "'
            WHERE car_owned_id = 
$car_owned_id
        "
);
        
        
$url "garage.php?$session[sessionurl]do=garage_home";
        eval(
print_standard_redirect('redirect_updatethanks'));
    }


And the template:

HTML Code:

<form action="garage.php" method="post" name="vbform"<if condition="!is_browser('webtv')"> onsubmit="return validatePost(this, 0, 0, 0);" onreset="vB_RESET(this);"</if>>

$preview

<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
        <td class="tcat">Edit Car's Story</td>
</tr>
<tr>
        <td class="panelsurround" align="center">
        <div class="panel">
                <div style="width:$stylevar[formwidth_usercp]" align="$stylevar[left]">
                       
                <!-- message area -->
                <div class="smallfont">This is a story of how you got it, why you got it, what you're doing with it, and whatever else your creative mind wants to write about.<br /><br /></div>
                $messagearea
                <!-- / message area -->
               
                </div>
        </div>
       
        <div style="margin-top:$stylevar[cellpadding]px">
                <input type="hidden" name="s" value="$session[sessionhash]" />
                <input type="hidden" name="do" value="update_story" />
                <input type="submit" class="button" value="Save Car's Story" accesskey="s" tabindex="1" />
                <input type="submit" class="button" value="Preview Car's Story" name="preview" accesskey="p" tabindex="1" />       
        </div>
        </td>
</tr>
</table>

<br />

$forumrules

</form>


Rick Sample 05-24-2004 12:50 PM

flat6:
You should put a ranking system, so users can vote monthly on who has the best car. This way, the one with the highest votes will get car of the month!

flat6 05-24-2004 01:36 PM

That's a good idea. Currently what I'm doing with votes is... well, when you add a car, the site automatically starts up two new threads with the user's account, a logbook and a guestbook, for each new car added. The guestbook's Thread Rate has now been replaced with Car Rate, so that that the thread where users comment on the car actually holds the votes for that car. I'll probably have to bring it out further, make it its own button accessible from outside of the actual thread.

443dds 05-24-2004 02:40 PM

Looking forward to an updated vBGarage to allow for multiple cars...

0ptima 05-24-2004 02:44 PM

Quote:

Originally Posted by moonclamp
The customisations are so close to what I want it would save me a hell of a lot of time. ;)

I agree! :)

Zachariah 05-24-2004 07:04 PM

Admincp - Categories for garage: edit / make cats with sub cats and description
Multi garages per usergroup
Admincp to allow users X amount of garages per usergroup.
File system for images vs. storage in SQL
Links page listing of categories (like a show case with sorting options)

:tired:

/me heads back to his cave.

drumsy 05-24-2004 07:19 PM

Quote:

Originally Posted by flat6
Not sure how relevant this is :rolleyes: but I'm currently coding my own vB garage... it's not going to be released, since it's too much of a custom application, tying in with the main website (runs off the car model database) but here's how it looks... still a work in progress, BTW.

Holy Geeze, I'd pay for that setup. Where can I sign?

eob 05-24-2004 07:25 PM

We went through loads of formats for our YaBB enabled vGarage, the conclusion we came to in the end was to give the user 4 basic fields, manufacturer name, model name, engine size (cc's or cu's depending on your boards users), 'but i'd sell it for...'(the dream price someone would part with their car for), with 2 textarea boxes, one to list modifications, another to describe the car, then with the obvious photo upload stuff.

This was by far the most popular arrangement of vGarage for the users, the fixed capacity/model name/price fields made it easy to organise the cars, while the textarea for the description and mods fields allowed them to go into as much or as little information about the car as they liked.


All times are GMT. The time now is 05:34 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.02412 seconds
  • Memory Usage 1,794KB
  • 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
  • (1)bbcode_html_printable
  • (1)bbcode_php_printable
  • (3)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (4)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