]> git.mxchange.org Git - friendica.git/blobdiff - mod/robots_txt.php
Catch HTTPExceptions in App::runFrontend()
[friendica.git] / mod / robots_txt.php
index 450b854a1bae8c889813a15af7ab6fe4d5cc9f26..29f520b18cdce9252d235461b66b168afce506d0 100644 (file)
@@ -1,29 +1,30 @@
 <?php
+
 /**
- * return the default robots.txt
- * @version 0.1.0
+ * @file mod/robots_text.php
+ * @brief Module which returns the default robots.txt
+ * @version 0.1.2
  */
 
+use Friendica\App;
+
 /**
- * Simple robots.txt
- * @inheritdoc (?)
+ * @brief Return default robots.txt when init
+ * @param App $a
+ * @return void
  */
-function robots_txt_init(App $a) {
-
-    /** @var string[] globally disallowed url */
-    $allDisalloweds=array(
-        '/settings/',
-        '/admin/',
-        '/message/',
-    );
+function robots_txt_init(App $a)
+{
+       $allDisalloweds = [
+               '/settings/',
+               '/admin/',
+               '/message/',
+       ];
 
-    header("Content-Type: text/plain");
-    echo "User-agent: *\n";
-    echo "Disallow:\n";
-    echo "\n";
-    echo "User-agent: *\n";
-    foreach($allDisalloweds as $disallowed) {
-        echo "Disallow: {$disallowed}\n";
-    }
-    killme();
+       header('Content-Type: text/plain');
+       echo 'User-agent: *' . PHP_EOL;
+       foreach ($allDisalloweds as $disallowed) {
+               echo 'Disallow: ' . $disallowed . PHP_EOL;
+       }
+       killme();
 }