The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
vBStatus - Facebook Style Status Display (v4) Details »» | |||||||||||||||||||||||||||
vBStatus - Facebook Style Status Display (v4)
Developer Last Online: Nov 2023
This modification thread will not be upgraded, since it is possible that some users may prefer v4. Compatible with 3.6.x and 3.5.x vBStatus allows your users to update their status to tell other members what they are doing/thinking at any given time. A user's status is displayed under their names in their postbit, in their User Profile, and anywhere else you choose!User's can edit their status quickly and easily via AJAX. Administrative options include:
Update 2.0: Please reinstall the product xml file, and re-edit your templates following the new instructions in the readme file. This is to correct a small cosmetic bug that displays non-functional links to guests and non-admins. Update 3.0: A number of bugs were fixed, and a few new admin options were added. Please uninstall the previous product and reinstall this one. Please re-edit your templates and reupload all files. Sorry for the inconvenience (but at least we are getting this handled in the first 12 hours of release.) Update 4.0: This is a fairly comprehensive update. You must remove all previous template edits and add the new template code. You must also "Allow Overwrite" when importing the new product. The DB structure hasn't changed. New features include:
I added status prefixes. If your updating from version 4 just reimport the product (with overwrite set to yes), and reupload all the files. No template edits necessary when upgrading from v4 to v4.01. (And I'm not going to change the file version because this update came so quickly on the heals of v4.) Please do not forget to click INSTALL Show Your Support
|
Comments |
#442
|
|||
|
|||
is it possible to have them feed onto forumhome? or index, like the facebook updates?
|
#443
|
|||
|
|||
Quote:
https://vborg.vbsupport.ru/showpost....&postcount=391 |
#444
|
|||
|
|||
Anyone tried it on 3.8.3?
|
#445
|
|||
|
|||
I have problems with this, when users click edit the drop down menu for the username shows up :/
|
#446
|
|||
|
|||
i'd like to know this as well since i have a perfect spot where they could update it in my header which would also allow me to eliminate he "edit" int he post bit and profile
|
#447
|
|||
|
|||
Hi, nice mod.
Why are these functions in att_include.php? Code:
class AttilitusImage{ function vbimghost_imgtype ($val){ $types = array( 1 => '.GIF', 2 => '.JPG', 3 => '.PNG', 4 => '.SWF', 5 => '.PSD', 6 => '.BMP', 7 => '.TIFF', 8 => '.TIFF', 9 => '.JPC', 10 => '.JP2', 11 => '.JPX', 12 => '.JB2', 13 => '.SWC', 14 => '.IFF', 15 => '.WBMP', 16 => '.XBM' ); if ($val > 16 ) return false; else return strtolower($types[$val]); } function resize($filename,$imagew,$imageh){ $filepath="$directory/$filename"; $filepath=$filename; if(!$dime = getimagesize($filepath)){ eval(standard_error("Not an Image")); } $fileext=$this->vbimghost_imgtype($dime[2]); switch ($fileext){ case (".gif"): $srcImg = imagecreatefromgif($filepath); $colortrans = imagecolortransparent($srcImg); $thumbImg = imagecreate($imagew, $imageh); imagepalettecopy($thumbImg,$srcImg); imagefill($thumbImg,0,0,$colortrans); imagecolortransparent($thumbImg,$colortrans); imagecopyresized($thumbImg,$srcImg,0,0,0,0,$imagew,$imageh,$dime[0],$dime[1]); imagegif($thumbImg,$filepath); break; case (".jpg"): case (".jpeg"): $srcImg = imagecreatefromjpeg($filepath); if (function_exists('imagecreatetruecolor')){ $thumbImg = imagecreatetruecolor($imagew,$imageh); imagecopyresampled($thumbImg,$srcImg,0,0,0,0,$imagew,$imageh,$dime[0],$dime[1]); }else{ $thumbImg = imagecreate($imagew,$imageh); imagecopyresized($thumbImg,$srcImg,0,0,0,0,$imagew,$imageh,$dime[0],$dime[1]); } imagejpeg($thumbImg,$filepath,75); break; case (".png"): $srcImg = imagecreatefrompng($filepath); if (function_exists('imagecreatetruecolor')){ $thumbImg = imagecreatetruecolor($imagew,$imageh); imagecopyresampled($thumbImg,$srcImg,0,0,0,0,$imagew,$imageh,$dime[0],$dime[1]); }else{ $thumbImg = imagecreate($imagew,$imageh); imagecopyresized($thumbImg,$srcImg,0,0,0,0,$imagew,$imageh,$dime[0],$dime[1]); } imagepng($thumbImg,$filepath); break; default: return false; break; } imagedestroy($srcImg); imagedestroy($thumbImg); return true; } function upload($file,$filename,$directory,$maxw,$maxh){ $AllowedExtensions=".jpg|.gif|.jpeg|.png"; $AllowedExtensions=explode("|",strtolower($AllowedExtensions)); $upfilename = str_replace("'","",$file['name']); $upfilesize = ($file['size']/1024); $upfiletype = $file['type']; $upfiletname = $file['tmp_name']; $upfileerro = $file['error']; $fileext =trim(strtolower(strrchr($upfilename, '.'))); //fix for getimagesize errors $tmpname = "tmp_".uniqid($userid).$fileext; if(move_uploaded_file($upfiletname, $directory."/".$tmpname)){ $upfiletname = $directory."/".$tmpname; } if ($upfilename!="") { if(!$dime = getimagesize($upfiletname)){ eval(standard_error("Not an Image")); } if (!$dime){ eval(standard_error("Error image size not defined")); } $fileext = $this->vbimghost_imgtype($dime[2]); $this->Uploaded_EXT=$fileext; if(! in_array($fileext,$AllowedExtensions)){ eval(standard_error("Image extension is not allowed.")); } //If Width or Height are off resize. if($dime[0] > $maxw) { $ResizeRatio=($maxw/$dime[0]); $NewWidth=$ResizeRatio*$dime[0]; $NewHeight=$ResizeRatio*$dime[1]; $this->resize($upfiletname,$NewWidth,$NewHeight); }else if($dime[1] > $maxh){ $ResizeRatio=($maxh/$dime[1]); $NewWidth=$ResizeRatio*$dime[0]; $NewHeight=$ResizeRatio*$dime[1]; $this->resize($upfiletname,$NewWidth,$NewHeight); } @copy($upfiletname, $directory."/".$filename.$fileext); //remove temp file unlink($upfiletname); } } } |
#448
|
||||
|
||||
not support another charcters.
|
#449
|
||||
|
||||
nice mod! voted and installed. Kudos to the coder!
just a note: I modified it a little to fit and look a little nicer on my forum. If anyone is interested: I commented out the: $post[username] ... so it does not display the username before the status. I felt it was sorta redundant since it gets displayed right under the user's name anyway. I also added: <br><hr> ... after the EDIT link so it displays a little bar right under the status. This breaks up the status and the rest of the 'stuff' that appears on the left (ie. the avatar, post count, etc..) it worked for me on 3.8.3 |
#450
|
|||
|
|||
Thank you for the confirmation on 3.8.3.
I didn't see the little bar between the status and username when I looked at your site as a guest. |
#451
|
||||
|
||||
that is exactly what i am looking for too.
|
Thread Tools | |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|