如何在基于 zend 的应用程序中添加类似 facebook 的功能?代码是放在视图中还是放在助手中?
facebook.app_id = "APPID"
facebook.app_secret = "SECRET"
谢谢
如何在基于 zend 的应用程序中添加类似 facebook 的功能?代码是放在视图中还是放在助手中?
facebook.app_id = "APPID"
facebook.app_secret = "SECRET"
谢谢
在 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&
width=250&height=284&colorscheme=light&show_faces=true&border_color&
stream=false&header=false&appId='.$app_id.'"
scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:250px; height:284px;"
allowTransparency="true">
</iframe>';
}
}
然后从视图中调用 $this->getFacebookLike(); 将呈现 facebook like 按钮。