X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=lib%2Fwidget.php;h=1ccd1e252b2f74344d60742f058a2858adb1f668;hb=996345088e8d57cf39fa38129ab50ff02918a275;hp=c70505c44d662fa5ee8b6fdc9f2dca86b45cfe1b;hpb=1a02d681fa1de7c2daed2ecc951f4c9bf1c13976;p=quix0rs-gnu-social.git diff --git a/lib/widget.php b/lib/widget.php index c70505c44d..1ccd1e252b 100644 --- a/lib/widget.php +++ b/lib/widget.php @@ -1,6 +1,6 @@ . * * @category Widget - * @package Laconica - * @author Evan Prodromou - * @author Sarven Capadisli - * @copyright 2009 Control Yourself, Inc. + * @package StatusNet + * @author Evan Prodromou + * @author Sarven Capadisli + * @copyright 2009 StatusNet, Inc. * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 - * @link http://laconi.ca/ + * @link http://status.net/ */ -if (!defined('LACONICA')) { +if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } @@ -40,19 +40,21 @@ if (!defined('LACONICA')) { * lists, notice lists, navigation menus (tabsets) and common forms. * * @category Widget - * @package Laconica - * @author Evan Prodromou - * @author Sarven Capadisli + * @package StatusNet + * @author Evan Prodromou + * @author Sarven Capadisli * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 - * @link http://laconi.ca/ + * @link http://status.net/ * * @see HTMLOutputter */ 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())); + } }