| 1 | <?php |
||
| 5 | class Opengraph extends MetaBase implements MetaInterface |
||
| 6 | { |
||
| 7 | const META_ATTRIBUTE_NAME = 'property'; |
||
| 8 | const META_NAME_PREFIX = 'og:'; |
||
| 9 | |||
| 10 | protected static $characterLimits = array( |
||
| 11 | 'title' => 65, |
||
| 12 | 'description' => 156, |
||
| 13 | ); |
||
| 14 | |||
| 15 | /** |
||
| 16 | * {@inheritdoc} |
||
| 17 | */ |
||
| 18 | protected function generateTags() |
||
| 39 | } |
||
| 40 |