PATH:
home
/
letacommog
/
letaweb
/
protected
/
extensions
/
yii-facebook-opengraph
/
plugins
<?php /** * Comments 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 Comments Box easily enables your users to comment on your site's content — * whether it's for a web page, article, photo, or other piece of content. * * @see http://developers.facebook.com/docs/reference/plugins/comments */ class Comments extends SPluginBase { /** * @var int Number of posts to show. */ public $numposts; /** * @var int The width of the widget. */ public $width; /** * @var bool Specify whether to publish a comment on the user's wall. */ public $publish_feed = true; public function run() { parent::run(); $params = $this->getParams(); $this->renderTag('comments', $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]