Skip to content
This repository has been archived by the owner on Nov 4, 2023. It is now read-only.

Commit

Permalink
[TASK] Remove doc comments (see GIT for history)
Browse files Browse the repository at this point in the history
In order to streamline the code base and to reduce the amount of code that needs to be maintaned comments are removed.

Thank you @authors

- Reinhard Führicht <[email protected]>
- Rik Willems <[email protected]>
- Christian Opitz <[email protected]>
- Stefan Froemken <[email protected]>
- Alexander Stehlik

and everyone who is involved as well! 🤖

The full file history with author names can be found at
https://github.com/PHORAX/formhandler
  • Loading branch information
7elix committed Aug 5, 2017
1 parent 43f1438 commit 4304cb5
Show file tree
Hide file tree
Showing 125 changed files with 38 additions and 420 deletions.
4 changes: 1 addition & 3 deletions Classes/Ajax/RemoveFile.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@

/**
* A class removing uploaded files. This class is called via AJAX.
*
* @author Reinhard Führicht <[email protected]>
*/
class RemoveFile
{
Expand Down Expand Up @@ -127,4 +125,4 @@ protected function init()
$ajaxHandler->initAjax();
}
}
}
}
2 changes: 0 additions & 2 deletions Classes/Ajax/Submit.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@

/**
* A class calling the controller and returning the form content as JSON. This class is called via AJAX.
*
* @author Reinhard Führicht <[email protected]>
*/
class Submit
{
Expand Down
2 changes: 0 additions & 2 deletions Classes/Ajax/Validate.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@

/**
* A class validating a field via AJAX.
*
* @author Reinhard Führicht <[email protected]>
*/
class Validate
{
Expand Down
2 changes: 0 additions & 2 deletions Classes/AjaxHandler/AbstractAjaxHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@
/**
* Abstract class for an AjaxHandler.
* The AjaxHandler takes care of adding AJAX related markers and JS used for validation and file removal.
*
* @author Reinhard Führicht <[email protected]>
* @abstract
*/
abstract class AbstractAjaxHandler extends \Typoheads\Formhandler\Component\AbstractClass
Expand Down
2 changes: 0 additions & 2 deletions Classes/AjaxHandler/JQuery.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@
/**
* Abstract class for an AjaxHandler.
* The AjaxHandler takes care of adding AJAX related markers and JS used for validation and file removal.
*
* @author Reinhard Führicht <[email protected]>
* @abstract
*/
class JQuery extends \Typoheads\Formhandler\AjaxHandler\AbstractAjaxHandler
Expand Down
2 changes: 0 additions & 2 deletions Classes/Component/AbstractClass.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@
/**
* Abstract class for any usable Formhandler component.
* This class defines some useful variables and a default constructor for all Formhandler components.
*
* @author Reinhard Führicht <[email protected]>
* @abstract
*/
abstract class AbstractClass
Expand Down
2 changes: 0 additions & 2 deletions Classes/Component/AbstractComponent.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@
/**
* Abstract component class for any usable Formhandler component.
* This class extends the abstract class and adds some useful variables and methods.
*
* @author Reinhard Führicht <[email protected]>
* @abstract
*/
abstract class AbstractComponent extends AbstractClass
Expand Down
2 changes: 0 additions & 2 deletions Classes/Component/Manager.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,6 @@
* on code mainly written by Robert Lemke. Thanx to the FLOW3 team for all the great stuff!
*
* Refactored for usage with Formhandler.
*
* @author Reinhard Führicht <[email protected]>
*/
class Manager implements SingletonInterface
{
Expand Down
9 changes: 0 additions & 9 deletions Classes/Controller/AbstractController.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@

/**
* Abstract class for Controller Classes used by Formhandler.
*
* @author Reinhard Führicht <[email protected]>
* @abstract
*/
abstract class AbstractController extends AbstractClass
Expand Down Expand Up @@ -60,7 +58,6 @@ abstract class AbstractController extends AbstractClass
* Sets the content attribute of the controller
*
* @param Content $content
* @author Reinhard Führicht <[email protected]>
* @return void
*/
public function setContent($content)
Expand All @@ -71,7 +68,6 @@ public function setContent($content)
/**
* Returns the content attribute of the controller
*
* @author Reinhard Führicht <[email protected]>
* @return Content
*/
public function getContent()
Expand All @@ -82,7 +78,6 @@ public function getContent()
/**
* Sets the internal attribute "predefined"
*
* @author Reinhard Führicht <[email protected]>
* @param string $key
* @return void
*/
Expand All @@ -94,7 +89,6 @@ public function setPredefined($key)
/**
* Sets the internal attribute "langFile"
*
* @author Reinhard Führicht <[email protected]>
* @param array $langFiles
* @return void
*/
Expand All @@ -105,8 +99,6 @@ public function setLangFiles($langFiles)

/**
* Sets the template file attribute to $template
*
* @author Reinhard Führicht <[email protected]>
* @param string $template
* @return void
*/
Expand All @@ -118,7 +110,6 @@ public function setTemplateFile($template)
/**
* Returns the right settings for the formhandler (Checks if predefined form was selected)
*
* @author Reinhard Führicht <[email protected]>
* @return array The settings
*/
public function getSettings()
Expand Down
2 changes: 0 additions & 2 deletions Classes/Controller/Configuration.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@

/**
* The configuration of the Formhandler
*
* @author Reinhard Führicht <[email protected]>
*/
class Configuration implements \ArrayAccess
{
Expand Down
2 changes: 0 additions & 2 deletions Classes/Controller/Content.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@

/**
* Content to be parsed.
*
* @author Reinhard Führicht <[email protected]>
*/
class Content
{
Expand Down
2 changes: 0 additions & 2 deletions Classes/Controller/Dispatcher.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@

/**
* The Dispatcher instantiates the Component Manager and delegates the process to the given controller.
*
* @author Reinhard Führicht <[email protected]>
*/
class Dispatcher extends \TYPO3\CMS\Frontend\Plugin\AbstractPlugin
{
Expand Down
2 changes: 0 additions & 2 deletions Classes/Controller/Form.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@

/**
* Default controller for Formhandler
*
* @author Reinhard Führicht <[email protected]>
*/
class Form extends AbstractController
{
Expand Down
2 changes: 0 additions & 2 deletions Classes/Debugger/AbstractDebugger.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@

/**
* An abstract debugger
*
* @author Reinhard Führicht <[email protected]>
* @abstract
*/
abstract class AbstractDebugger extends \Typoheads\Formhandler\Component\AbstractComponent
Expand Down
2 changes: 0 additions & 2 deletions Classes/Debugger/DevLog.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@

/**
* A simple debugger writing messages into devlog
*
* @author Reinhard Führicht <[email protected]>
*/
class DevLog extends AbstractDebugger
{
Expand Down
2 changes: 0 additions & 2 deletions Classes/Debugger/PrintToScreen.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@

/**
* A simple debugger printing the messages on the screen
*
* @author Reinhard Führicht <[email protected]>
*/
class PrintToScreen extends AbstractDebugger
{
Expand Down
2 changes: 0 additions & 2 deletions Classes/Domain/Model/Demand.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@

/**
* Demand object for log data
*
* @author Reinhard Führicht <[email protected]>
*/
class Demand extends \TYPO3\CMS\Extbase\DomainObject\AbstractEntity
{
Expand Down
1 change: 0 additions & 1 deletion Classes/Domain/Model/LogData.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
/**
* Model for log data
*
* @author Reinhard Führicht <[email protected]>
*/
class LogData extends \TYPO3\CMS\Extbase\DomainObject\AbstractEntity
{
Expand Down
1 change: 0 additions & 1 deletion Classes/Domain/Repository/LogDataRepository.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
/**
* Repository for \Typoheads\Formhandler\Domain\Model\LogData
*
* @author Reinhard Führicht <[email protected]>
*/
class LogDataRepository extends \TYPO3\CMS\Extbase\Persistence\Repository
{
Expand Down
2 changes: 0 additions & 2 deletions Classes/Finisher/AbstractFinisher.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@

/**
* Abstract class for Finisher Classes used by Formhandler
*
* @author Reinhard Führicht <[email protected]>
* @abstract
*/
abstract class AbstractFinisher extends \Typoheads\Formhandler\Component\AbstractComponent
Expand Down
2 changes: 0 additions & 2 deletions Classes/Finisher/ClearCache.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,6 @@
* finishers.1.config.pidList = TEXT
* finishers.1.config.pidList.data = GP:someparameter
* </code>
*
* @author Reinhard Führicht <[email protected]>
*/
class ClearCache extends AbstractFinisher
{
Expand Down
2 changes: 0 additions & 2 deletions Classes/Finisher/DB.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,6 @@
* finishers.1.config.fields.tstamp.special = sub_tstamp
* finishers.1.config.fields.imagecaption.special = ip
* </code>
*
* @author Reinhard Führicht <[email protected]>
*/
class DB extends AbstractFinisher
{
Expand Down
2 changes: 0 additions & 2 deletions Classes/Finisher/DifferentDB.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,6 @@
* </code>
*
* Further configuration equals the configuration of Finisher\DB.
*
* @author Reinhard Führicht <[email protected]>
* @see \Typoheads\Formhandler\Finisher\DB
*/
class DifferentDB extends DB
Expand Down
2 changes: 0 additions & 2 deletions Classes/Finisher/GenerateAuthCode.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@
/**
* This finisher generates a unique code for a database entry.
* This can be used for FE user registration or newsletter registration.
*
* @author Reinhard Führicht <[email protected]>
*/
class GenerateAuthCode extends AbstractFinisher
{
Expand Down
2 changes: 0 additions & 2 deletions Classes/Finisher/Mail.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,6 @@
* finishers.2.config.html = MyContactForm_
* finishers.2.config.pdf = MyContactFormPDF_
* </code>
*
* @author Reinhard Führicht <[email protected]>
*/
class Mail extends AbstractFinisher
{
Expand Down
2 changes: 0 additions & 2 deletions Classes/Finisher/Redirect.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,6 @@
* finishers.4.class = Finisher_Redirect
* finishers.4.config.redirectPage = 65
* </code>
*
* @author Reinhard Führicht <[email protected]>
*/
class Redirect extends AbstractFinisher
{
Expand Down
2 changes: 0 additions & 2 deletions Classes/Finisher/RestoreLanguage.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@
/**
* Finisher to restore the currently used language to the original one.
* Only useful if the language got set using Finisher_SetLanguage before.
*
* @author Reinhard Führicht <[email protected]>
*/
class RestoreLanguage extends AbstractFinisher
{
Expand Down
2 changes: 0 additions & 2 deletions Classes/Finisher/SetLanguage.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@
/**
* Finisher to set the currently used language to a set value.
* Useful if you want to send the admin email in a specific language and do not want to use the language of the user.
*
* @author Reinhard Führicht <[email protected]>
*/
class SetLanguage extends AbstractFinisher
{
Expand Down
2 changes: 0 additions & 2 deletions Classes/Finisher/StoreUploadedFiles.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,6 @@
* finishers.1.config.schemeMarkers.marker2 = TEXT
* finishers.1.config.schemeMarkers.marker2.value = Textvalue
* </code>
*
* @author Reinhard Führicht <[email protected]>
*/
class StoreUploadedFiles extends AbstractFinisher
{
Expand Down
2 changes: 0 additions & 2 deletions Classes/Finisher/SubmittedOK.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,6 @@
* finishers.3.config.csv.class = Tx_Formhandler_Generator_Csv
* finishers.3.config.csv.exportFields = firstname,lastname,interests
* </code>
*
* @author Reinhard Führicht <[email protected]>
*/
class SubmittedOK extends AbstractFinisher
{
Expand Down
2 changes: 0 additions & 2 deletions Classes/Generator/AbstractGenerator.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@

/**
* Abstract generator class for Formhandler
*
* @author Reinhard Führicht <[email protected]>
*/
abstract class AbstractGenerator extends \Typoheads\Formhandler\Component\AbstractComponent
{
Expand Down
2 changes: 0 additions & 2 deletions Classes/Generator/BackendCsv.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@

/**
* Class to generate CSV files in Backend
*
* @author Reinhard Führicht <[email protected]>
* @uses export2CSV in csv.lib.php
*/
require_once(\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::extPath('formhandler') . 'Resources/PHP/parsecsv.lib.php');
Expand Down
4 changes: 0 additions & 4 deletions Classes/Generator/BackendTcPdf.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,6 @@

/**
* Class to generate PDF files in Backend
*
* @author Reinhard Führicht <[email protected]>
* @package Tx_Formhandler
* @subpackage Generator
* @uses Tx_Formhandler_Template_TCPDF
*/
class BackendTcPdf extends \Typoheads\Formhandler\Component\AbstractComponent
Expand Down
2 changes: 0 additions & 2 deletions Classes/Generator/Csv.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@

/**
* CSV generator class for Formhandler
*
* @author Reinhard Führicht <[email protected]>
*/
require_once(\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::extPath('formhandler') . 'Resources/PHP/parsecsv.lib.php');

Expand Down
2 changes: 0 additions & 2 deletions Classes/Generator/File.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@

/**
* Generator class for Formhandler for creating any file type
*
* @author Reinhard Führicht <[email protected]>
*/
class File extends AbstractGenerator
{
Expand Down
2 changes: 0 additions & 2 deletions Classes/Generator/PdfGenerator.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@

/**
* PDF generator class for Formhandler using the extension "pdf_generator2"
*
* @author Reinhard Führicht <[email protected]>
*/
class PdfGenerator extends AbstractGenerator
{
Expand Down
2 changes: 0 additions & 2 deletions Classes/Generator/PrintVersion.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@

/**
* Generator class for Formhandler showing a print version of the SUBMITTED_OK template
*
* @author Reinhard Führicht <[email protected]>
*/
class PrintVersion extends AbstractGenerator
{
Expand Down
2 changes: 0 additions & 2 deletions Classes/Generator/TcPdf.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@

/**
* PDF generator class for Formhandler using TCPDF
*
* @author Reinhard Führicht <[email protected]>
*/
class TcPdf extends AbstractGenerator
{
Expand Down
Loading

0 comments on commit 4304cb5

Please sign in to comment.