Index: typo3/sysext/reports/mod/index.php =================================================================== --- typo3/sysext/reports/mod/index.php (revision 6526) +++ typo3/sysext/reports/mod/index.php (working copy) @@ -21,11 +21,6 @@ * * This copyright notice MUST APPEAR in all copies of the script! ***************************************************************/ -/** - * [CLASS/FUNCTION INDEX of SCRIPT] - * - * Hint: use extdeveval to insert/update function index above. - */ $LANG->includeLLFile('EXT:reports/mod/locallang.xml'); @@ -36,9 +31,11 @@ /** * Module 'Reports' for the 'reports' extension. * - * @author Ingo Renner - * @package TYPO3 + * @author Ingo Renner + * @package TYPO3 * @subpackage tx_reports + * + * $Id$ */ class tx_reports_Module extends t3lib_SCbase { Index: typo3/sysext/reports/interfaces/interface.tx_reports_report.php =================================================================== --- typo3/sysext/reports/interfaces/interface.tx_reports_report.php (revision 6526) +++ typo3/sysext/reports/interfaces/interface.tx_reports_report.php (working copy) @@ -29,9 +29,11 @@ /** * Interface for classes which provide a report. * - * @author Ingo Renner - * @package TYPO3 - * @subpackage tx_reports + * @author Ingo Renner + * @package TYPO3 + * @subpackage tx_reports + * + * $Id$ */ interface tx_reports_Report { Index: typo3/sysext/reports/interfaces/interface.tx_reports_statusprovider.php =================================================================== --- typo3/sysext/reports/interfaces/interface.tx_reports_statusprovider.php (revision 6526) +++ typo3/sysext/reports/interfaces/interface.tx_reports_statusprovider.php (working copy) @@ -29,9 +29,11 @@ /** * Interface for classes which provide a status report entry. * - * @author Ingo Renner - * @package TYPO3 - * @subpackage tx_reports + * @author Ingo Renner + * @package TYPO3 + * @subpackage tx_reports + * + * $Id$ */ interface tx_reports_StatusProvider { Index: typo3/sysext/reports/reports/status/class.tx_reports_reports_status_configurationstatus.php =================================================================== --- typo3/sysext/reports/reports/status/class.tx_reports_reports_status_configurationstatus.php (revision 6526) +++ typo3/sysext/reports/reports/status/class.tx_reports_reports_status_configurationstatus.php (working copy) @@ -26,21 +26,23 @@ /** * Performs some checks about the install tool protection status * - * @author Ingo Renner - * @package TYPO3 - * @subpackage reports + * @author Ingo Renner + * @package TYPO3 + * @subpackage reports + * + * $Id$ */ class tx_reports_reports_status_ConfigurationStatus implements tx_reports_StatusProvider { /** * Determines the Install Tool's status, mainly concerning its protection. * + * @return array List of statuses * @see typo3/sysext/reports/interfaces/tx_reports_StatusProvider::getStatus() */ public function getStatus() { $statuses = array( 'emptyReferenceIndex' => $this->getReferenceIndexStatus(), - ); if ($this->isMemcachedUsed()) { @@ -85,11 +87,11 @@ * @return boolean True if memcached is used, false otherwise. */ protected function isMemcachedUsed() { - $memcachedUsed = false; + $memcachedUsed = FALSE; $memcachedServers = $this->getConfiguredMemcachedServers(); if (count($memcachedServers)) { - $memcachedUsed = true; + $memcachedUsed = TRUE; } return $memcachedUsed; Property changes on: typo3/sysext/reports/reports/status/class.tx_reports_reports_status_configurationstatus.php ___________________________________________________________________ Name: svn:keywords + Id Revision Index: typo3/sysext/reports/reports/status/class.tx_reports_reports_status_securitystatus.php =================================================================== --- typo3/sysext/reports/reports/status/class.tx_reports_reports_status_securitystatus.php (revision 6526) +++ typo3/sysext/reports/reports/status/class.tx_reports_reports_status_securitystatus.php (working copy) @@ -26,15 +26,18 @@ /** * Performs several checks about the system's health * - * @author Ingo Renner - * @package TYPO3 - * @subpackage reports + * @author Ingo Renner + * @package TYPO3 + * @subpackage reports + * + * $Id$ */ class tx_reports_reports_status_SecurityStatus implements tx_reports_StatusProvider { /** * Determines the Install Tool's status, mainly concerning its protection. * + * @return array List of statuses * @see typo3/sysext/reports/interfaces/tx_reports_StatusProvider::getStatus() */ public function getStatus() { @@ -175,11 +178,11 @@ * @return boolean True if memcached is used, false otherwise. */ protected function isMemcachedUsed() { - $memcachedUsed = false; + $memcachedUsed = FALSE; $memcachedServers = $this->getConfiguredMemcachedServers(); if (count($memcachedServers)) { - $memcachedUsed = true; + $memcachedUsed = TRUE; } return $memcachedUsed; @@ -194,7 +197,7 @@ protected function executeAdminCommand() { $command = t3lib_div::_GET('adminCmd'); - switch($command) { + switch ($command) { case 'remove_ENABLE_INSTALL_TOOL': unlink(PATH_site . 'typo3conf/ENABLE_INSTALL_TOOL'); break; Property changes on: typo3/sysext/reports/reports/status/class.tx_reports_reports_status_securitystatus.php ___________________________________________________________________ Name: svn:keywords + Id Revision Index: typo3/sysext/reports/reports/status/class.tx_reports_reports_status_typo3status.php =================================================================== --- typo3/sysext/reports/reports/status/class.tx_reports_reports_status_typo3status.php (revision 6526) +++ typo3/sysext/reports/reports/status/class.tx_reports_reports_status_typo3status.php (working copy) @@ -29,18 +29,20 @@ * @author Ingo Renner * @package TYPO3 * @subpackage reports + * + * $Id$ */ class tx_reports_reports_status_Typo3Status implements tx_reports_StatusProvider { /** * Returns the status for this report * + * @return array List of statuses * @see typo3/sysext/reports/interfaces/tx_reports_StatusProvider::getStatus() */ public function getStatus() { $statuses = array( 'Typo3Version' => $this->getTypo3VersionStatus(), - ); return $statuses; Property changes on: typo3/sysext/reports/reports/status/class.tx_reports_reports_status_typo3status.php ___________________________________________________________________ Name: svn:keywords + Id Revision Index: typo3/sysext/reports/reports/status/class.tx_reports_reports_status_status.php =================================================================== --- typo3/sysext/reports/reports/status/class.tx_reports_reports_status_status.php (revision 6526) +++ typo3/sysext/reports/reports/status/class.tx_reports_reports_status_status.php (working copy) @@ -26,9 +26,11 @@ /** * A class representing a certain status * - * @author Ingo Renner - * @package TYPO3 - * @subpackage reports + * @author Ingo Renner + * @package TYPO3 + * @subpackage reports + * + * $Id$ */ class tx_reports_reports_status_Status { Index: typo3/sysext/reports/reports/status/class.tx_reports_reports_status_systemstatus.php =================================================================== --- typo3/sysext/reports/reports/status/class.tx_reports_reports_status_systemstatus.php (revision 6526) +++ typo3/sysext/reports/reports/status/class.tx_reports_reports_status_systemstatus.php (working copy) @@ -26,15 +26,16 @@ /** * Performs several checks about the system's health * - * @author Ingo Renner - * @package TYPO3 - * @subpackage reports + * @author Ingo Renner + * @package TYPO3 + * @subpackage reports */ class tx_reports_reports_status_SystemStatus implements tx_reports_StatusProvider { /** * Determines the Install Tool's status, mainly concerning its protection. * + * @return array List of statuses * @see typo3/sysext/reports/interfaces/tx_reports_StatusProvider::getStatus() */ public function getStatus() { Index: typo3/sysext/reports/reports/class.tx_reports_reports_status.php =================================================================== --- typo3/sysext/reports/reports/class.tx_reports_reports_status.php (revision 6526) +++ typo3/sysext/reports/reports/class.tx_reports_reports_status.php (working copy) @@ -26,9 +26,11 @@ /** * The status report * - * @author Ingo Renner - * @package TYPO3 - * @subpackage reports + * @author Ingo Renner + * @package TYPO3 + * @subpackage reports + * + * $Id$ */ class tx_reports_reports_Status implements tx_reports_Report { @@ -215,7 +217,7 @@ array_multisort($sortTitle, SORT_DESC, $statuses); // making sure that the core version information is always on the top - if(is_object($header)) { + if (is_object($header)) { array_unshift($statuses, $header); } return $statuses; Index: typo3/sysext/install/report/class.tx_install_report_installstatus.php =================================================================== --- typo3/sysext/install/report/class.tx_install_report_installstatus.php (revision 6526) +++ typo3/sysext/install/report/class.tx_install_report_installstatus.php (working copy) @@ -29,9 +29,11 @@ /** * Provides an installation status report * - * @author Ingo Renner - * @package TYPO3 - * @subpackage tx_install + * @author Ingo Renner + * @package TYPO3 + * @subpackage tx_install + * + * $Id$ */ class tx_install_report_InstallStatus implements tx_reports_StatusProvider { @@ -40,6 +42,7 @@ /** * Compiles a collection of system status checks as a status report. * + * @return array List of statuses * @see typo3/sysext/reports/interfaces/tx_reports_StatusProvider::getStatus() */ public function getStatus() { @@ -54,9 +57,9 @@ } /** - * Checks for several directoris being writable. + * Checks for several directories being writable. * - * @return unknown_type + * @return tx_reports_reports_status_Status An tx_reports_reports_status_Status object indicating the status of the file system */ protected function getFileSystemStatus() { $value = $GLOBALS['LANG']->sL('LLL:EXT:install/report/locallang.xml:status_writable');