koblog/bl-plugins/twitter-cards/plugin.php

90 lines
2.3 KiB
PHP
Raw Normal View History

2017-07-11 23:53:53 +02:00
<?php
class pluginTwitterCards extends Plugin
{
2017-07-11 23:53:53 +02:00
public function init()
{
// Fields and default values for the database of this plugin
$this->dbFields = array(
'defaultImage' => ''
);
}
public function form()
{
global $L;
2018-07-02 00:24:53 +02:00
$html = '<div class="alert alert-primary" role="alert">';
$html .= $this->description();
2017-10-07 21:49:41 +02:00
$html .= '</div>';
2018-07-02 00:24:53 +02:00
$html .= '<div>';
$html .= '<label>' . $L->get('Default image') . '</label>';
$html .= '<input id="jsdefaultImage" name="defaultImage" type="text" dir="auto" value="' . $this->getValue('defaultImage') . '" placeholder="https://">';
$html .= '</div>';
return $html;
}
2017-07-11 23:53:53 +02:00
public function siteHead()
{
global $url;
global $site;
2017-07-11 23:53:53 +02:00
global $WHERE_AM_I;
global $content;
2017-07-11 23:53:53 +02:00
global $page;
$data = array(
'card' => 'summary',
'site' => '',
'title' => $site->title(),
'description' => $site->description(),
'image' => ''
2017-07-11 23:53:53 +02:00
);
switch ($WHERE_AM_I) {
// The user filter by page
2017-07-11 23:53:53 +02:00
case 'page':
$data['title'] = $page->title();
$data['description'] = $page->description();
$data['image'] = $page->coverImage($absolute = true);
2017-07-11 23:53:53 +02:00
$pageContent = $page->content();
2017-07-11 23:53:53 +02:00
break;
// The user is in the homepage
2017-07-11 23:53:53 +02:00
default:
$pageContent = '';
2017-07-11 23:53:53 +02:00
// The image it's from the first page
if (isset($content[0])) {
$data['image'] = $content[0]->coverImage($absolute = true);
$pageContent = $content[0]->content();
2017-07-11 23:53:53 +02:00
}
break;
}
$html = PHP_EOL . '<!-- Twitter Cards -->' . PHP_EOL;
$html .= '<meta property="twitter:card" content="' . $data['card'] . '">' . PHP_EOL;
$html .= '<meta property="twitter:site" content="' . $data['site'] . '">' . PHP_EOL;
$html .= '<meta property="twitter:title" content="' . $data['title'] . '">' . PHP_EOL;
$html .= '<meta property="twitter:description" content="' . $data['description'] . '">' . PHP_EOL;
2017-07-11 23:53:53 +02:00
// If the page doesn't have a coverImage try to get an image from the HTML content
if (empty($data['image'])) {
2017-07-11 23:53:53 +02:00
// Get the image from the content
$src = DOM::getFirstImage($pageContent);
if ($src !== false) {
2017-10-16 19:59:23 +02:00
$data['image'] = $src;
} else {
2017-10-07 21:49:41 +02:00
if (Text::isNotEmpty($this->getValue('defaultImage'))) {
2017-10-16 19:59:23 +02:00
$data['image'] = $this->getValue('defaultImage');
2017-10-07 21:49:41 +02:00
}
2017-07-11 23:53:53 +02:00
}
}
$html .= '<meta property="twitter:image" content="' . $data['image'] . '">' . PHP_EOL;
2017-07-11 23:53:53 +02:00
return $html;
}
}