diff options
author | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-10-28 19:17:36 +0000 |
---|---|---|
committer | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-10-28 19:17:36 +0000 |
commit | 7ddd9521b3f3a397da3b0a6b56238d31414eb4be (patch) | |
tree | 6eb6a9a51db5fa0f5d3cc2ec6de29b9e258b12a1 /install/ElggRewriteTester.php | |
parent | bd3484417d170e62bc94e9db81d4ad37e8ddee6a (diff) | |
download | elgg-7ddd9521b3f3a397da3b0a6b56238d31414eb4be.tar.gz elgg-7ddd9521b3f3a397da3b0a6b56238d31414eb4be.tar.bz2 |
Standardized code in all of core, not including language files, tests, or core mods.
git-svn-id: http://code.elgg.org/elgg/trunk@7124 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'install/ElggRewriteTester.php')
-rw-r--r-- | install/ElggRewriteTester.php | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/install/ElggRewriteTester.php b/install/ElggRewriteTester.php index 69da77721..b2e914e55 100644 --- a/install/ElggRewriteTester.php +++ b/install/ElggRewriteTester.php @@ -1,19 +1,21 @@ <?php + /** * Elgg RewriteTester. * Test if URL rewriting is working. * - * @package Elgg + * @package Elgg.Core * @subpackage Installer */ - - class ElggRewriteTester { protected $webserver; protected $serverSupportsRemoteRead; protected $rewriteTestPassed; protected $htaccessIssue; + /** + * Set the webserver as unknown. + */ public function __construct() { $this->webserver = 'unknown'; } @@ -21,8 +23,9 @@ class ElggRewriteTester { /** * Run the rewrite test and return a status array * - * @param string $url URL of rewrite test + * @param string $url URL of rewrite test * @param string $path Root directory of Elgg with trailing slash + * * @return array */ public function run($url, $path) { @@ -44,6 +47,8 @@ class ElggRewriteTester { /** * Guess the web server from $_SERVER['SERVER_SOFTWARE'] + * + * @return void */ protected function guessWebServer() { $serverString = strtolower($_SERVER['SERVER_SOFTWARE']); @@ -60,6 +65,7 @@ class ElggRewriteTester { * Hit the rewrite test URL to determine if the rewrite rules are working * * @param string $url Rewrite test URL + * * @return bool */ protected function runRewriteTest($url) { @@ -89,6 +95,7 @@ class ElggRewriteTester { * Create Elgg's .htaccess file or confirm that it exists * * @param string $path Elgg's root directory with trailing slash + * * @return bool */ public function createHtaccess($path) { @@ -133,6 +140,7 @@ class ElggRewriteTester { * Create the status array required by the ElggInstaller * * @param string $url Rewrite test URL + * * @return array */ protected function returnStatus($url) { |