Skip to content

Commit

Permalink
Merge pull request #25 from kdambekalns/rename-object-and-resource
Browse files Browse the repository at this point in the history
TASK: Adjust to renamed Object and Resource namespaces/classes
  • Loading branch information
robertlemke committed Nov 23, 2016
2 parents e9c938b + ca6391f commit 01392e2
Show file tree
Hide file tree
Showing 86 changed files with 880 additions and 850 deletions.
18 changes: 9 additions & 9 deletions Classes/TYPO3/Form/Core/Model/AbstractFinisher.php
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
<?php
namespace TYPO3\Form\Core\Model;

/* *
* This script belongs to the TYPO3 Flow package "TYPO3.Form". *
* *
* It is free software; you can redistribute it and/or modify it under *
* the terms of the GNU Lesser General Public License, either version 3 *
* of the License, or (at your option) any later version. *
* *
* The TYPO3 project - inspiring people to share! *
* */
/*
* This file is part of the TYPO3.Form package.
*
* (c) Contributors of the Neos Project - www.neos.io
*
* This package is Open Source Software. For the full copyright and license
* information, please view the LICENSE file which was distributed with this
* source code.
*/

use TYPO3\Form\Core\Model\FinisherContext;

Expand Down
18 changes: 9 additions & 9 deletions Classes/TYPO3/Form/Core/Model/AbstractFormElement.php
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
<?php
namespace TYPO3\Form\Core\Model;

/* *
* This script belongs to the TYPO3 Flow package "TYPO3.Form". *
* *
* It is free software; you can redistribute it and/or modify it under *
* the terms of the GNU Lesser General Public License, either version 3 *
* of the License, or (at your option) any later version. *
* *
* The TYPO3 project - inspiring people to share! *
* */
/*
* This file is part of the TYPO3.Form package.
*
* (c) Contributors of the Neos Project - www.neos.io
*
* This package is Open Source Software. For the full copyright and license
* information, please view the LICENSE file which was distributed with this
* source code.
*/

use TYPO3\Flow\Annotations as Flow;

Expand Down
18 changes: 9 additions & 9 deletions Classes/TYPO3/Form/Core/Model/AbstractSection.php
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
<?php
namespace TYPO3\Form\Core\Model;

/* *
* This script belongs to the TYPO3 Flow package "TYPO3.Form". *
* *
* It is free software; you can redistribute it and/or modify it under *
* the terms of the GNU Lesser General Public License, either version 3 *
* of the License, or (at your option) any later version. *
* *
* The TYPO3 project - inspiring people to share! *
* */
/*
* This file is part of the TYPO3.Form package.
*
* (c) Contributors of the Neos Project - www.neos.io
*
* This package is Open Source Software. For the full copyright and license
* information, please view the LICENSE file which was distributed with this
* source code.
*/

use TYPO3\Flow\Annotations as Flow;

Expand Down
18 changes: 9 additions & 9 deletions Classes/TYPO3/Form/Core/Model/FinisherContext.php
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
<?php
namespace TYPO3\Form\Core\Model;

/* *
* This script belongs to the TYPO3 Flow package "TYPO3.Form". *
* *
* It is free software; you can redistribute it and/or modify it under *
* the terms of the GNU Lesser General Public License, either version 3 *
* of the License, or (at your option) any later version. *
* *
* The TYPO3 project - inspiring people to share! *
* */
/*
* This file is part of the TYPO3.Form package.
*
* (c) Contributors of the Neos Project - www.neos.io
*
* This package is Open Source Software. For the full copyright and license
* information, please view the LICENSE file which was distributed with this
* source code.
*/

use TYPO3\Form\Core\Runtime\FormRuntime;

Expand Down
18 changes: 9 additions & 9 deletions Classes/TYPO3/Form/Core/Model/FinisherInterface.php
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
<?php
namespace TYPO3\Form\Core\Model;

/* *
* This script belongs to the TYPO3 Flow package "TYPO3.Form". *
* *
* It is free software; you can redistribute it and/or modify it under *
* the terms of the GNU Lesser General Public License, either version 3 *
* of the License, or (at your option) any later version. *
* *
* The TYPO3 project - inspiring people to share! *
* */
/*
* This file is part of the TYPO3.Form package.
*
* (c) Contributors of the Neos Project - www.neos.io
*
* This package is Open Source Software. For the full copyright and license
* information, please view the LICENSE file which was distributed with this
* source code.
*/

use TYPO3\Form\Core\Model\FinisherContext;

Expand Down
28 changes: 14 additions & 14 deletions Classes/TYPO3/Form/Core/Model/FormDefinition.php
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
<?php
namespace TYPO3\Form\Core\Model;

/* *
* This script belongs to the TYPO3 Flow package "TYPO3.Form". *
* *
* It is free software; you can redistribute it and/or modify it under *
* the terms of the GNU Lesser General Public License, either version 3 *
* of the License, or (at your option) any later version. *
* *
* The TYPO3 project - inspiring people to share! *
* */
/*
* This file is part of the TYPO3.Form package.
*
* (c) Contributors of the Neos Project - www.neos.io
*
* This package is Open Source Software. For the full copyright and license
* information, please view the LICENSE file which was distributed with this
* source code.
*/

use TYPO3\Flow\Annotations as Flow;

Expand Down Expand Up @@ -84,10 +84,10 @@
* $formDefaults = array(
* 'formElementTypes' => array(
* 'TYPO3.Form:Page' => array(
* 'implementationClassName' => 'TYPO3\Form\Core\Model\Page'
* 'implementationClassName' => \TYPO3\Form\Core\Model\Page::class
* ),
* 'TYPO3.Form:Textfield' => array(
* 'implementationClassName' => 'TYPO3\Form\Core\Model\GenericFormElement'
* 'implementationClassName' => \TYPO3\Form\Core\Model\GenericFormElement::class
* )
* )
* )
Expand All @@ -102,11 +102,11 @@
* $formDefaults = array(
* 'formElementTypes' => array(
* 'TYPO3.Form:Page' => array(
* 'implementationClassName' => 'TYPO3\Form\Core\Model\Page',
* 'implementationClassName' => \TYPO3\Form\Core\Model\Page::class,
* 'label' => 'this is the label of the page if nothing is specified'
* ),
* 'TYPO3.Form:Textfield' => array(
* 'implementationClassName' => 'TYPO3\Form\Core\Model\GenericFormElement',
* 'implementationClassName' => \TYPO3\Form\Core\Model\GenericFormElement::class,
* 'label' = >'Default Label',
* 'defaultValue' => 'Default form element value',
* 'properties' => array(
Expand All @@ -129,7 +129,7 @@
* $formDefaults = array(
* 'formElementTypes' => array(
* 'TYPO3.Form:Base' => array(
* 'implementationClassName' => 'TYPO3\Form\Core\Model\GenericFormElement',
* 'implementationClassName' => \TYPO3\Form\Core\Model\GenericFormElement::class,
* 'label' = >'Default Label'
* ),
* 'TYPO3.Form:Textfield' => array(
Expand Down
18 changes: 9 additions & 9 deletions Classes/TYPO3/Form/Core/Model/FormElementInterface.php
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
<?php
namespace TYPO3\Form\Core\Model;

/* *
* This script belongs to the TYPO3 Flow package "TYPO3.Form". *
* *
* It is free software; you can redistribute it and/or modify it under *
* the terms of the GNU Lesser General Public License, either version 3 *
* of the License, or (at your option) any later version. *
* *
* The TYPO3 project - inspiring people to share! *
* */
/*
* This file is part of the TYPO3.Form package.
*
* (c) Contributors of the Neos Project - www.neos.io
*
* This package is Open Source Software. For the full copyright and license
* information, please view the LICENSE file which was distributed with this
* source code.
*/

/**
* A base form element interface, which can be the starting point for creating
Expand Down
18 changes: 9 additions & 9 deletions Classes/TYPO3/Form/Core/Model/Page.php
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
<?php
namespace TYPO3\Form\Core\Model;

/* *
* This script belongs to the TYPO3 Flow package "TYPO3.Form". *
* *
* It is free software; you can redistribute it and/or modify it under *
* the terms of the GNU Lesser General Public License, either version 3 *
* of the License, or (at your option) any later version. *
* *
* The TYPO3 project - inspiring people to share! *
* */
/*
* This file is part of the TYPO3.Form package.
*
* (c) Contributors of the Neos Project - www.neos.io
*
* This package is Open Source Software. For the full copyright and license
* information, please view the LICENSE file which was distributed with this
* source code.
*/

use TYPO3\Flow\Annotations as Flow;

Expand Down
18 changes: 9 additions & 9 deletions Classes/TYPO3/Form/Core/Model/ProcessingRule.php
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
<?php
namespace TYPO3\Form\Core\Model;

/* *
* This script belongs to the TYPO3 Flow package "TYPO3.Form". *
* *
* It is free software; you can redistribute it and/or modify it under *
* the terms of the GNU Lesser General Public License, either version 3 *
* of the License, or (at your option) any later version. *
* *
* The TYPO3 project - inspiring people to share! *
* */
/*
* This file is part of the TYPO3.Form package.
*
* (c) Contributors of the Neos Project - www.neos.io
*
* This package is Open Source Software. For the full copyright and license
* information, please view the LICENSE file which was distributed with this
* source code.
*/

use TYPO3\Flow\Annotations as Flow;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
<?php
namespace TYPO3\Form\Core\Model\Renderable;

/* *
* This script belongs to the TYPO3 Flow package "TYPO3.Form". *
* *
* It is free software; you can redistribute it and/or modify it under *
* the terms of the GNU Lesser General Public License, either version 3 *
* of the License, or (at your option) any later version. *
* *
* The TYPO3 project - inspiring people to share! *
* */
/*
* This file is part of the TYPO3.Form package.
*
* (c) Contributors of the Neos Project - www.neos.io
*
* This package is Open Source Software. For the full copyright and license
* information, please view the LICENSE file which was distributed with this
* source code.
*/

/**
* Convenience base class which implements common functionality for most
Expand Down
18 changes: 9 additions & 9 deletions Classes/TYPO3/Form/Core/Model/Renderable/AbstractRenderable.php
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
<?php
namespace TYPO3\Form\Core\Model\Renderable;

/* *
* This script belongs to the TYPO3 Flow package "TYPO3.Form". *
* *
* It is free software; you can redistribute it and/or modify it under *
* the terms of the GNU Lesser General Public License, either version 3 *
* of the License, or (at your option) any later version. *
* *
* The TYPO3 project - inspiring people to share! *
* */
/*
* This file is part of the TYPO3.Form package.
*
* (c) Contributors of the Neos Project - www.neos.io
*
* This package is Open Source Software. For the full copyright and license
* information, please view the LICENSE file which was distributed with this
* source code.
*/

/**
* Convenience base class which implements common functionality for most
Expand Down
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
<?php
namespace TYPO3\Form\Core\Model\Renderable;

/* *
* This script belongs to the TYPO3 Flow package "TYPO3.Form". *
* *
* It is free software; you can redistribute it and/or modify it under *
* the terms of the GNU Lesser General Public License, either version 3 *
* of the License, or (at your option) any later version. *
* *
* The TYPO3 project - inspiring people to share! *
* */
/*
* This file is part of the TYPO3.Form package.
*
* (c) Contributors of the Neos Project - www.neos.io
*
* This package is Open Source Software. For the full copyright and license
* information, please view the LICENSE file which was distributed with this
* source code.
*/

/**
* Interface which all Form Parts must adhere to **when they have sub elements**.
Expand Down
18 changes: 9 additions & 9 deletions Classes/TYPO3/Form/Core/Model/Renderable/RenderableInterface.php
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
<?php
namespace TYPO3\Form\Core\Model\Renderable;

/* *
* This script belongs to the TYPO3 Flow package "TYPO3.Form". *
* *
* It is free software; you can redistribute it and/or modify it under *
* the terms of the GNU Lesser General Public License, either version 3 *
* of the License, or (at your option) any later version. *
* *
* The TYPO3 project - inspiring people to share! *
* */
/*
* This file is part of the TYPO3.Form package.
*
* (c) Contributors of the Neos Project - www.neos.io
*
* This package is Open Source Software. For the full copyright and license
* information, please view the LICENSE file which was distributed with this
* source code.
*/

/**
* Base interface which all Form Parts except the FormDefinition must adhere
Expand Down
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
<?php
namespace TYPO3\Form\Core\Model\Renderable;

/* *
* This script belongs to the TYPO3 Flow package "TYPO3.Form". *
* *
* It is free software; you can redistribute it and/or modify it under *
* the terms of the GNU Lesser General Public License, either version 3 *
* of the License, or (at your option) any later version. *
* *
* The TYPO3 project - inspiring people to share! *
* */
/*
* This file is part of the TYPO3.Form package.
*
* (c) Contributors of the Neos Project - www.neos.io
*
* This package is Open Source Software. For the full copyright and license
* information, please view the LICENSE file which was distributed with this
* source code.
*/

/**
* Base interface which all parts of a form must adhere to.
Expand Down

0 comments on commit 01392e2

Please sign in to comment.