X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=lib%2Fwidget.php;h=1ccd1e252b2f74344d60742f058a2858adb1f668;hb=0deaf6c50c0a02dd307b797729adbaf2a973db07;hp=43bc4a481f6165afb60269eb515e9f43d1118e8b;hpb=865b716f0919b6e5133133cd6be53f4143660324;p=quix0rs-gnu-social.git diff --git a/lib/widget.php b/lib/widget.php index 43bc4a481f..1ccd1e252b 100644 --- a/lib/widget.php +++ b/lib/widget.php @@ -28,7 +28,7 @@ * @link http://status.net/ */ -if (!defined('STATUSNET')) { +if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } @@ -51,8 +51,10 @@ if (!defined('STATUSNET')) { class Widget { + protected $avatarSize = AVATAR_STREAM_SIZE; + /** - * HTMLOutputter to use for output + * Action (HTMLOutputter) to use for output */ var $out = null; @@ -60,10 +62,10 @@ 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) { $this->out = $out; } @@ -79,4 +81,48 @@ class Widget function show() { } + + /** + * Get HTMLOutputter + * + * Return the HTMLOutputter for the widget. + * + * @return HTMLOutputter the output helper + */ + + function getOut() + { + return $this->out; + } + + /** + * Delegate output methods to the outputter attribute. + * + * @param string $name Name of the method + * @param array $arguments Arguments called + * + * @return mixed Return value of the method. + */ + function __call($name, $arguments) + { + 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())); + } }