X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=lib%2Fwidget.php;h=227fe0ccee2d0fb6c1d70d4f04ae6ce5898605ec;hb=15ab9ff9e3303255ff14166ee86ffdf3bc4f52ce;hp=d068dea0f031b295a85fa73232c223abd437fb4e;hpb=0b53b6768e03932f4beec6b6655763e6ecedc36d;p=quix0rs-gnu-social.git diff --git a/lib/widget.php b/lib/widget.php index d068dea0f0..227fe0ccee 100644 --- a/lib/widget.php +++ b/lib/widget.php @@ -28,9 +28,7 @@ * @link http://status.net/ */ -if (!defined('STATUSNET') && !defined('LACONICA')) { - exit(1); -} +if (!defined('GNUSOCIAL')) { exit(1); } /** * Base class for UI widgets @@ -51,8 +49,10 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { class Widget { + protected $avatarSize = AVATAR_STREAM_SIZE; + /** - * HTMLOutputter to use for output + * Action (HTMLOutputter) to use for output */ var $out = null; @@ -60,12 +60,16 @@ class Widget /** * Prepare the widget for use * - * @param HTMLOutputter $out output helper, defaults to null + * @param Action $out output helper, defaults to null */ - function __construct($out=null) + function __construct(Action $out=null, array $widgetOpts=array()) { $this->out = $out; + if (!array_key_exists('scoped', $widgetOpts)) { + $this->widgetOpts['scoped'] = Profile::current(); + } + $this->scoped = $this->widgetOpts['scoped']; } /** @@ -105,4 +109,22 @@ class Widget { return call_user_func_array(array($this->out, $name), $arguments); } + + /** + * Default avatar size for this widget. + */ + public function avatarSize() + { + return $this->avatarSize; + } + + protected function showAvatar(Profile $profile, $size=null) + { + $avatar_url = $profile->avatarUrl($size ?: $this->avatarSize()); + $this->out->element('img', array('src' => $avatar_url, + 'class' => 'avatar u-photo', + 'width' => $this->avatarSize(), + 'height' => $this->avatarSize(), + 'alt' => $profile->getBestName())); + } }