]> git.mxchange.org Git - friendica.git/commitdiff
Coding standards part and bad empty Disallow
authorDenis Chenu <denis@sondages.pro>
Wed, 26 Apr 2017 15:07:24 +0000 (17:07 +0200)
committerDenis Chenu <denis@sondages.pro>
Wed, 26 Apr 2017 15:07:24 +0000 (17:07 +0200)
- Unsure PHP_EOL is the best here : PHP_EOL are not the same on *nux and win, it's not for server , but for browser
- _content vs _init : seems not really a web content ?

mod/robots_txt.php

index 450b854a1bae8c889813a15af7ab6fe4d5cc9f26..2af5ea56276ca7f4d3a6d160f018aa3f60deac5b 100644 (file)
@@ -1,29 +1,27 @@
 <?php
 /**
  * return the default robots.txt
- * @version 0.1.0
+ * @version 0.1.1
  */
 
 /**
  * Simple robots.txt
- * @inheritdoc (?)
+ * @param App $a
+ * @return void
  */
 function robots_txt_init(App $a) {
 
-    /** @var string[] globally disallowed url */
-    $allDisalloweds=array(
-        '/settings/',
-        '/admin/',
-        '/message/',
-    );
+       /** @var string[] globally disallowed url */
+       $allDisalloweds = array(
+               "/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: *\n";
+       foreach($allDisalloweds as $disallowed) {
+               echo "Disallow: {$disallowed}\n";
+       }
+       killme();
 }