forked from GNUsocial/gnu-social
		
	
		
			
				
	
	
		
			131 lines
		
	
	
		
			3.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			131 lines
		
	
	
		
			3.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| /**
 | |
|  * StatusNet, the distributed open-source microblogging tool
 | |
|  *
 | |
|  * Base class for UI widgets
 | |
|  *
 | |
|  * PHP version 5
 | |
|  *
 | |
|  * LICENCE: This program is free software: you can redistribute it and/or modify
 | |
|  * it under the terms of the GNU Affero General Public License as published by
 | |
|  * the Free Software Foundation, either version 3 of the License, or
 | |
|  * (at your option) any later version.
 | |
|  *
 | |
|  * This program is distributed in the hope that it will be useful,
 | |
|  * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | |
|  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | |
|  * GNU Affero General Public License for more details.
 | |
|  *
 | |
|  * You should have received a copy of the GNU Affero General Public License
 | |
|  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 | |
|  *
 | |
|  * @category  Widget
 | |
|  * @package   StatusNet
 | |
|  * @author    Evan Prodromou <evan@status.net>
 | |
|  * @author    Sarven Capadisli <csarven@status.net>
 | |
|  * @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://status.net/
 | |
|  */
 | |
| 
 | |
| if (!defined('GNUSOCIAL')) { exit(1); }
 | |
| 
 | |
| /**
 | |
|  * Base class for UI widgets
 | |
|  *
 | |
|  * A widget is a cluster of HTML elements that provide some functionality
 | |
|  * that's used on different parts of the site. Examples would be profile
 | |
|  * lists, notice lists, navigation menus (tabsets) and common forms.
 | |
|  *
 | |
|  * @category Widget
 | |
|  * @package  StatusNet
 | |
|  * @author   Evan Prodromou <evan@status.net>
 | |
|  * @author   Sarven Capadisli <csarven@status.net>
 | |
|  * @license  http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
 | |
|  * @link     http://status.net/
 | |
|  *
 | |
|  * @see      HTMLOutputter
 | |
|  */
 | |
| 
 | |
| class Widget
 | |
| {
 | |
|     protected $avatarSize = AVATAR_STREAM_SIZE;
 | |
| 
 | |
|     /**
 | |
|      * Action (HTMLOutputter) to use for output
 | |
|      */
 | |
| 
 | |
|     var $out = null;
 | |
| 
 | |
|     /**
 | |
|      * Prepare the widget for use
 | |
|      *
 | |
|      * @param Action $out output helper, defaults to 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'];
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Show the widget
 | |
|      *
 | |
|      * Emit the HTML for the widget, using the configured outputter.
 | |
|      *
 | |
|      * @return void
 | |
|      */
 | |
| 
 | |
|     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()));
 | |
|     }
 | |
| }
 |