Merge pull request #7100 from nupplaphil/task/mod_robots_txt

Move mod/robots_txt to src/Module/RobotsTxt
This commit is contained in:
Hypolite Petovan 2019-05-05 14:23:10 -04:00 committed by GitHub
commit 12b6ab9943
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 28 additions and 30 deletions

View file

@ -1,30 +0,0 @@
<?php
/**
* @file mod/robots_text.php
* @brief Module which returns the default robots.txt
* @version 0.1.2
*/
use Friendica\App;
/**
* @brief Return default robots.txt when init
* @param App $a
* @return void
*/
function robots_txt_init(App $a)
{
$allDisalloweds = [
'/settings/',
'/admin/',
'/message/',
];
header('Content-Type: text/plain');
echo 'User-agent: *' . PHP_EOL;
foreach ($allDisalloweds as $disallowed) {
echo 'Disallow: ' . $disallowed . PHP_EOL;
}
exit();
}