symfony:如何通过 _partial 执行操作
在我的应用程序中,我有一个部分菜单(_menu.php),
我需要在整个应用程序上的菜单中访问该菜单:
$this->user = $this->getUser()->getGuardUser();
$this->unread = Doctrine::getTable('sfSocialMessageRcpt')->countUnreadMessages($this->user);
但是如何为渲染的部分创建一个操作在整个应用程序中?
谢谢
in my application, I have a menu which is a partial (_menu.php)
I need in my menu which is on the entire application, to have access to that :
$this->user = $this->getUser()->getGuardUser();
$this->unread = Doctrine::getTable('sfSocialMessageRcpt')->countUnreadMessages($this->user);
But how to create an action for my partial which is rendered in the entire application ?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,我用组件代替。
它解决了我的问题
ok, i used components instead.
it fixed my problem