Zend加上facebook就好

时间:2012-07-25 02:11:36

标签: php zend-framework zend-db

如何在基于zend的应用程序中添加类似facebook的功能?代码是放在视图中还是放在帮助程序中?

facebook.app_id = "APPID"
facebook.app_secret = "SECRET"

感谢

1 个答案:

答案 0 :(得分:0)

在zend中添加facebook的最简单方法是在帮助程序中添加代码, 以后可以从视图中调用。

class Application_View_Helper_GetFacebookLikeBox extends Zend_View_Helper_Abstract
{
public function getFacebookLikeBox()
{
    $config = Zend_Registry::get('config');
    $app_id = $config['facebook']['app_id'];

    return '<iframe
                src="//www.facebook.com/plugins/likebox.php?href=https%3A%2F%2Fwww.facebook.com%2FEXAMPLE&amp;
                    width=250&amp;height=284&amp;colorscheme=light&amp;show_faces=true&amp;border_color&amp;
                    stream=false&amp;header=false&amp;appId='.$app_id.'"
                scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:250px; height:284px;"
                allowTransparency="true">
            </iframe>';
}
}

然后从视图中调用$ this-&gt; getFacebookLike();将呈现像facebook一样的按钮。