2018-07-13 18:30:42 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
class pluginRobots extends Plugin {
|
|
|
|
|
2018-09-16 19:26:23 +02:00
|
|
|
public function init()
|
|
|
|
{
|
|
|
|
$this->dbFields = array(
|
|
|
|
'robotstxt'=>'User-agent: *'.PHP_EOL.'Allow: /'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function form()
|
|
|
|
{
|
|
|
|
$html = '<div class="alert alert-primary" role="alert">';
|
|
|
|
$html .= $this->description();
|
|
|
|
$html .= '</div>';
|
|
|
|
|
|
|
|
$html .= '<div>';
|
|
|
|
$html .= '<label>'.DOMAIN.'/robots.txt</label>';
|
|
|
|
$html .= '<textarea name="robotstxt" id="jsrobotstxt">'.$this->getValue('robotstxt').'</textarea>';
|
|
|
|
$html .= '</div>';
|
|
|
|
|
|
|
|
return $html;
|
|
|
|
}
|
|
|
|
|
2018-07-13 18:30:42 +02:00
|
|
|
public function siteHead()
|
|
|
|
{
|
|
|
|
global $WHERE_AM_I;
|
|
|
|
|
|
|
|
$html = PHP_EOL.'<!-- Robots plugin -->'.PHP_EOL;
|
|
|
|
if ($WHERE_AM_I=='page') {
|
2018-09-16 19:26:23 +02:00
|
|
|
global $page;
|
2018-07-13 18:30:42 +02:00
|
|
|
$robots = array();
|
|
|
|
|
|
|
|
if ($page->noindex()) {
|
|
|
|
$robots['noindex'] = 'noindex';
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($page->nofollow()) {
|
|
|
|
$robots['nofollow'] = 'nofollow';
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($page->noarchive()) {
|
|
|
|
$robots['noarchive'] = 'noarchive';
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!empty($robots)) {
|
2019-02-13 16:28:22 +01:00
|
|
|
$robots = implode(',', $robots);
|
2018-07-13 18:30:42 +02:00
|
|
|
$html .= '<meta name="robots" content="'.$robots.'">'.PHP_EOL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $html;
|
|
|
|
}
|
|
|
|
|
2018-09-16 19:26:23 +02:00
|
|
|
public function beforeAll()
|
|
|
|
{
|
|
|
|
$webhook = 'robots.txt';
|
|
|
|
if ($this->webhook($webhook)) {
|
|
|
|
header('Content-type: text/plain');
|
|
|
|
echo $this->getValue('robotstxt');
|
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-13 16:28:22 +01:00
|
|
|
}
|