PATH:
home
/
letacommog
/
letaweb
/
protected
/
extensions
/
yii-facebook-opengraph
/
plugins
<?php /** * Facepile class file. * * @author Evan Johnson <thaddeusmt - AT - gmail - DOT - com> * @author Ianaré Sévi (original author) www.digitick.net * * @link https://github.com/splashlab/yii-facebook-opengraph * * @copyright Copyright © 2011 SplashLab Social http://splashlabsocial.com * @license http://www.gnu.org/licenses/gpl-2.0.html GNU General Public License, version 2 */ require_once 'SPluginBase.php'; /** * The Facepile plugin displays the Facebook profile pictures of users who * have liked your page or have signed up for your site. * * @see http://developers.facebook.com/docs/reference/plugins/facepile/ */ class Facepile extends SPluginBase { /** * @var string The URL of the page. * * The plugin will display photos of users who have liked this page. */ public $href; /** * @var int The maximum number of rows of faces to display. * * Height is dynamically sized; if you specify a maximum of four rows of * faces, but there are only enough friends to fill two rows, the plugin * will set its height for two rows of faces. Default: 1. */ public $max_rows; /** * @var int Width of the plugin in pixels. Default width: 200px. */ public $width; public function run() { parent::run(); $params = $this->getParams(); $this->renderTag('facepile', $params); } }
[+]
..
[-] LikeButton.php
[edit]
[-] LikeBox.php
[edit]
[-] SPluginBase.php
[edit]
[-] ActivityFeed.php
[edit]
[-] Registration.php
[edit]
[-] Recommendations.php
[edit]
[-] LiveStream.php
[edit]
[-] RegistrationParser.php
[edit]
[-] Facepile.php
[edit]
[-] Comments.php
[edit]
[-] LoginButton.php
[edit]
[-] FanBox.php
[edit]