]> 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 c0705dec6108f38c5ce77b547606672583398d0c..29f520b18cdce9252d235461b66b168afce506d0 100644 (file)
@@ -1,29 +1,30 @@
 <?php
+
 /**
  * @file mod/robots_text.php
  * @brief Module which returns the default robots.txt
  * @version 0.1.2
  */
 
+use Friendica\App;
 
 /**
- * Return at init
+ * @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();
 }