PATH:
home
/
letacommog
/
letaweb
/
protected
/
extensions
/
yii-facebook-opengraph
/
plugins
<?php /** * ActivityFeed 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 Activity Feed plugin displays the most interesting recent activity * taking place on your site. * * @see http://developers.facebook.com/docs/reference/plugins/activity */ class ActivityFeed extends SPluginBase { /** * @var string The domain to show activity for. Defaults to the current * domain. */ public $site; /** * @var int The height of the plugin in pixels. Default height: 300px. */ public $height; /** * @var int The width of the plugin in pixels. Default width: 300px. */ public $width; /** * @var bool Specifies whether to show the Facebook header. */ public $header; /** * @var string The color scheme for the plugin. Options: 'light', 'dark' */ public $colorscheme; /** * @var string The font to display in the plugin. Options: 'arial', * 'lucida grande', 'segoe ui', 'tahoma', 'trebuchet ms', 'verdana' */ public $font; /** * @var string The border color of the plugin. */ public $border_color; /** * @var bool Specifies whether to always show recommendations in the plugin. * * If set to true, the plugin will display recommendations in the bottom * half. */ public $recomendations; /** * @var string Allows you to filter which URLs are shown in the plugin. * * The plugin will only include URLs which contain the filter in the first * two path parameters of the URL. If nothing in the first two path * parameters of the URL matches the filter, the URL will not be included. */ public $filter; /** * @var string A label for tracking referrals; must be less than 50 * characters and can contain alphanumeric characters and some punctuation * (currently +/=-.:_). */ public $ref; public function run() { parent::run(); $params = $this->getParams(); $this->renderTag('activity', $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]