vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB4 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=252)
-   -   How can I add plugin for class_block.php (https://vborg.vbsupport.ru/showthread.php?t=264846)

galerio 06-07-2011 01:45 PM

How can I add plugin for class_block.php
 
I'm trying to add Gravatar images to forum's sidebar widget for my plugin "Gravatar as default avatar". Unfortunatly there is no hook in \includes\calss_block.php and I need to manually modify the code.

The plugin is really simple, if the avatar url is empty, then it calls the gravatar url.

Is there a way to do it via plugin and not with a manual edit? (I'm not asking the code, I just ask if there is a templete hook to use).

Lynne 06-07-2011 04:09 PM

Maybe parse_templates? If you go into debug mode, then all the hooks that are called on the page are listed on the bottom.

galerio 06-07-2011 06:47 PM

Thank you for the help, but it doesn't work.
I tell you what I need to do:

in file /includes/class_block.php at line 481 replace
Code:

$userinfo['avatarurl'] = '';
with
Code:

$userinfo['avatarurl'] = 'http://www.gravatar.com/avatar/'.md5($userinfo['email']).'.png?s='.$this->registry->options['gravatar_dimension'].'&d='.$this->registry->options['gravatar_type'].'&r='.$this->registry->options['gravatar_rating'].'';
This is the first of the things I would like to transform in a plugin.
Then in file /includes/blog_functions.php at line 1219 replace the same code above with:
Code:

$userinfo['avatarurl'] = 'http://www.gravatar.com/avatar/'.md5($userinfo['email']).'.png?s='.$vbulletin->options['gravatar_dimension'].'&d='.$vbulletin->options['gravatar_type'].'&r='.$vbulletin->options['gravatar_rating'].'';
then in file /includes/class_blog_response.php at line 426 replace with:
Code:

$this->response['avatarurl'] = 'http://www.gravatar.com/avatar/'.md5($this->response['email']).'.png?s='.$this->registry->options['gravatar_dimension'].'&d='.$this->registry->options['gravatar_type'].'&r='.$this->registry->options['gravatar_rating'].'';
and then in file \includes\api\1\api_getnewtop.php at line 527 replace with
Code:

$userinfo['avatarurl'] = 'http://www.gravatar.com/avatar/'.md5($userinfo['email']).'.png?s='.$vbulletin->options['gravatar_dimension'].'&d='.$vbulletin->options['gravatar_type'].'&r='.$vbulletin->options['gravatar_rating'].'';
If this mod was only for me, then I wouldn't need to create plugins, but I would like to share it with a simple xml product to import.

Any chance to do it?

Lynne 06-07-2011 08:51 PM

Is your forum sideblock a php block? If so, just modify it in there. If it isn't a php block, then what type of block is it?

galerio 06-08-2011 07:17 AM

They are the standard widget for sidebar, you can only choose between Blog Entries, CMS Articles, Forum Threads, New Forum Posts. You can't modify the php in the control panel because they are called from a default template located at includes\block\. But the avatar images are controlled by the file \includes\calss_block.php.

Is there a way to make a xml product that can modifiy the files on server? Something like "search and replace" (and the undo option when someone uninstall the product)

Thanks

Lynne 06-08-2011 02:47 PM

So you are trying to change the avatar in *any* block basically?

You cannot edit files through a product.

galerio 06-08-2011 03:17 PM

yes, I want to change avatar everywhere avatarurl is empty. Take a look at my forum 1e2.it/forum.
I' have aready done it on thread, memberlist, profile.
But now to do it on sidebar and on Blog I can't find a way other than manual edit.

Lynne 06-08-2011 03:31 PM

I don't think you will be able to do it without a code edit. I know you will need to edit \includes\api\1\api_getnewtop.php manually (I had to write a product to change the avatars on my site for the mobile app).


All times are GMT. The time now is 02:42 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.01012 seconds
  • Memory Usage 1,726KB
  • 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
  • (5)bbcode_code_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (8)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
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete