XenForo/Model/Avatar.php
You can directly change the l, m and s avatar sizes here. I just want to know if its possible to make an add-on for this so that you don't need to edit this file directly. I am trying to make this add-on with the help of this guide, but I see no function to extend. How to proceed?
Code:
class XenForo_Model_Avatar extends XenForo_Model
{
/**
* List of available avatar sizes. The largest must go first.
* Avatars of each size code (directory name) will be no bigger
* than the given pixel amount.
*
* @var array Format: [code] => max pixels
*/
protected static $_sizes = array(
'l' => 192,
'm' => 96,
's' => 48
);
You can directly change the l, m and s avatar sizes here. I just want to know if its possible to make an add-on for this so that you don't need to edit this file directly. I am trying to make this add-on with the help of this guide, but I see no function to extend. How to proceed?