Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to use the facebook share button for which I want to dynamically set the title, description and image using the meta tags

<meta property="og:title" content="title" />
<meta property="og:description" content="description" />
<meta property="og:image" content="thumbnail_image" />

This is the same question : Zend framework: Meta property integration

I have tried doing what was suggested - but its not working This is what I've implemented in my layout.phtml

<?php
$doctypeHelper = new Zend_View_Helper_Doctype();
$doctypeHelper->doctype('XHTML1_RDFA');
echo $this->doctype();
?>

<html xmlns="http://www.w3.org/1999/xhtml" xmlns:og="http://opengraphprotocol.org/schema/">
<head>
<?php echo $this->headMeta();?>
</head>

Then in my views, I try setting the meta property as

<?php $this->headMeta()->setProperty('og:title', 'my article title');?>

But this code wont execute and i'm getting an error when the view is rendered - something along the lines of

Invalid value passed to set; please use setMeta()
C:\webserver\apache\htdocs\dezyre\trunk\library\Zend\View\Helper\HeadMeta.php(164): Zend_View_Helper_HeadMeta->set(Object(stdClass))

Any idea, whats wrong here Thanks for your help

share|improve this question

1 Answer

up vote 2 down vote accepted

There is a hidden treasure in the view helper in the _isValid() method

// <meta property= ... /> is only supported with doctype RDFa

Unfortunately the error message you'll get is only to "please use setMeta()". The follow either in your controller or view should fix this problem.

$this->view->doctype('XHTML1_RDFA');  // controller
$this->doctype('XHTML1_RDFA');  // view
share|improve this answer
Thank you Adrian - it works perfectly now :) – Gublooo Apr 23 '12 at 8:36
@Gublooo glad to help – Adrian World Apr 23 '12 at 13:24

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.