]> git.mxchange.org Git - friendica.git/blobdiff - mod/robots_txt.php
Docs: add a note on adding `use` on theme.php
[friendica.git] / mod / robots_txt.php
index 2af5ea56276ca7f4d3a6d160f018aa3f60deac5b..29f520b18cdce9252d235461b66b168afce506d0 100644 (file)
@@ -1,27 +1,30 @@
 <?php
+
 /**
- * return the default robots.txt
- * @version 0.1.1
+ * @file mod/robots_text.php
+ * @brief Module which returns the default robots.txt
+ * @version 0.1.2
  */
 
+use Friendica\App;
+
 /**
- * Simple robots.txt
+ * @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";
-       foreach($allDisalloweds as $disallowed) {
-               echo "Disallow: {$disallowed}\n";
+       header('Content-Type: text/plain');
+       echo 'User-agent: *' . PHP_EOL;
+       foreach ($allDisalloweds as $disallowed) {
+               echo 'Disallow: ' . $disallowed . PHP_EOL;
        }
        killme();
 }