Log in

View Full Version : phpcode Preview in Plugin Manager


Lynne
10-18-2008, 10:00 PM
Ever been searching for a plugin and wish you didn't have to open each one to edit to find the one you want? All you need is to see the first couple lines in order to see if it's the one you want, so why not have a preview like you can with threads?

Open up admincp/plugin.php and find this code:
$title = ($plugin['active'] AND $product['active']) ? $title : "<strike>$title</strike>";



Right under it add:
$preview = strip_quotes($plugin['phpcode']);
$preview = htmlspecialchars_uni(fetch_trimmed_title($preview, 200));



Now find this line (a couple lines below the above lines):
"<a href=\"plugin.php?" . $vbulletin->session->vars['sessionurl'] . "do=edit&amp;pluginid=$plugin[pluginid]\">$title</a>",



And change it to:
"<a href=\"plugin.php?" . $vbulletin->session->vars['sessionurl'] . "do=edit&amp;pluginid=$plugin[pluginid]\" title=\"$preview\">$title</a>",



Save the file and upload it. Now when you hover your mouse over the plugin link in the Plugin Manager, you should see the first 200 characters of the phpcode. (If you want more or less than 200 characters, then change that number in the second $preview statement above.)

I've tested this on both my 3.6.8 board and my 3.7.3 board and it worked fine.

Nоrman
10-21-2008, 11:24 AM
Usefull as always, Lynne. Thank you.

ringleader
11-17-2008, 01:32 PM
Oh excellent.
I wasn't even looking for this, but it will be so handy :D
I never remember which plugins have which code.

Mutt
05-03-2009, 03:34 PM
thanks

dandanch
08-30-2009, 04:40 AM
thanks works great