96 lines
2.6 KiB
PHP
Raw Permalink Normal View History

2015-06-02 22:17:09 -03:00
<?php
class pluginOpenGraph extends Plugin {
public function init()
{
// Fields and default values for the database of this plugin
$this->dbFields = array(
'defaultImage'=>''
);
}
2015-11-28 19:46:23 -03:00
public function form()
{
global $Language;
2018-07-02 00:24:53 +02:00
$html = '<div class="alert alert-primary" role="alert">';
$html .= $this->description();
$html .= '</div>';
$html .= '<div>';
2017-10-07 21:49:41 +02:00
$html .= '<label>'.$Language->get('Default image').'</label>';
$html .= '<input id="jsdefaultImage" name="defaultImage" type="text" value="'.$this->getValue('defaultImage').'" placeholder="https://">';
2018-07-01 14:17:24 +02:00
$html .= '<span class="tip">Set a default image for the content without pictures.</span>';
2017-10-07 21:49:41 +02:00
$html .= '</div>';
return $html;
}
2015-08-06 23:13:55 -03:00
public function siteHead()
2015-06-02 22:17:09 -03:00
{
global $url;
global $site;
global $WHERE_AM_I;
global $page;
global $content;
2015-08-06 23:13:55 -03:00
2015-06-02 22:17:09 -03:00
$og = array(
'locale' =>$site->locale(),
'type' =>'website',
'title' =>$site->title(),
'description' =>$site->description(),
'url' =>$site->url(),
'image' =>'',
'siteName' =>$site->title()
2015-06-02 22:17:09 -03:00
);
switch ($WHERE_AM_I) {
2016-06-06 21:11:19 -03:00
// The user filter by page
2015-06-02 22:17:09 -03:00
case 'page':
$og['type'] = 'article';
$og['title'] = $page->title();
$og['description'] = $page->description();
$og['url'] = $page->permalink($absolute=true);
$og['image'] = $page->coverImage($absolute=true);
2015-11-28 19:46:23 -03:00
$pageContent = $page->content();
2015-11-28 19:46:23 -03:00
break;
2016-06-06 21:11:19 -03:00
// The user is in the homepage
2015-11-28 19:46:23 -03:00
default:
$pageContent = '';
// The image it's from the first page
if (isset($content[0]) ) {
$og['image'] = $content[0]->coverImage($absolute=true);
$pageContent = $content[0]->content();
2016-01-08 00:04:59 -03:00
}
2015-06-02 22:17:09 -03:00
break;
}
$html = PHP_EOL.'<!-- Open Graph -->'.PHP_EOL;
$html .= '<meta property="og:locale" content="'.$og['locale'].'">'.PHP_EOL;
$html .= '<meta property="og:type" content="'.$og['type'].'">'.PHP_EOL;
$html .= '<meta property="og:title" content="'.$og['title'].'">'.PHP_EOL;
$html .= '<meta property="og:description" content="'.$og['description'].'">'.PHP_EOL;
$html .= '<meta property="og:url" content="'.$og['url'].'">'.PHP_EOL;
2015-07-03 17:44:26 -03:00
$html .= '<meta property="og:siteName" content="'.$og['siteName'].'">'.PHP_EOL;
2015-06-02 22:17:09 -03:00
// If the page doesn't have a coverImage try to get an image from the HTML content
if (empty($og['image'])) {
2016-01-08 00:04:59 -03:00
// Get the image from the content
$src = DOM::getFirstImage($pageContent);
if ($src!==false) {
$og['image'] = $src;
} else {
2017-10-07 21:49:41 +02:00
if (Text::isNotEmpty($this->getValue('defaultImage'))) {
$og['image'] = $this->getValue('defaultImage');
}
2016-01-08 00:04:59 -03:00
}
}
$html .= '<meta property="og:image" content="'.$og['image'].'">'.PHP_EOL;
2015-06-02 22:17:09 -03:00
return $html;
}
2015-11-28 19:46:23 -03:00
}