Commit 31264ba8 authored by Andy Hausmann's avatar Andy Hausmann

Updated PHPDoc.

parent 3bfb4c3a
...@@ -27,9 +27,9 @@ ...@@ -27,9 +27,9 @@
/** /**
* Main Controller. * Main Controller.
* *
* @author Andy Hausmann <ah@sota-studio.de> * @author Andy Hausmann <ah@sota-studio.de>, SOTA Studio
* @package flexslider * @package flexslider
* @license http://www.gnu.org/licenses/gpl.html GNU General Public License, version 3 or later * @subpackage Controller
*/ */
class Tx_Flexslider_Controller_FlexSliderController extends Tx_Extbase_MVC_Controller_ActionController { class Tx_Flexslider_Controller_FlexSliderController extends Tx_Extbase_MVC_Controller_ActionController {
......
...@@ -27,53 +27,31 @@ ...@@ -27,53 +27,31 @@
/** /**
* Model for the FlexSlider items. * Model for the FlexSlider items.
* *
* @author Andy Hausmann <ah@sota-studio.de> * @author Andy Hausmann <ah@sota-studio.de>, SOTA Studio
* @package flexslider * @package flexslider
* @license http://www.gnu.org/licenses/gpl.html GNU General Public License, version 3 or later * @subpackage Domain\Model
*/ */
class Tx_Flexslider_Domain_Model_FlexSlider extends Tx_Extbase_DomainObject_AbstractEntity { class Tx_Flexslider_Domain_Model_FlexSlider extends Tx_Extbase_DomainObject_AbstractEntity {
/** /** @var string */
* name
*
* @var string
*/
protected $name; protected $name;
/** /** @var string */
* title
*
* @var string
*/
protected $title; protected $title;
/** /** @var string */
* subtitle
*
* @var string
*/
protected $subtitle; protected $subtitle;
/** /**
* image
*
* @var string * @var string
* @validate NotEmpty * @validate NotEmpty
*/ */
protected $image; protected $image;
/** /** @var string */
* link
*
* @var string
*/
protected $link; protected $link;
/** /** @var string */
* caption
*
* @var string
*/
protected $caption; protected $caption;
/** /**
......
...@@ -27,9 +27,9 @@ ...@@ -27,9 +27,9 @@
/** /**
* Repository for FlexSlider items. * Repository for FlexSlider items.
* *
* @author Andy Hausmann <ah@sota-studio.de> * @author Andy Hausmann <ah@sota-studio.de>, SOTA Studio
* @package flexslider * @package flexslider
* @license http://www.gnu.org/licenses/gpl.html GNU General Public License, version 3 or later * @subpackage Domain\Repository
*/ */
class Tx_Flexslider_Domain_Repository_FlexSliderRepository extends Tx_Extbase_Persistence_Repository { class Tx_Flexslider_Domain_Repository_FlexSliderRepository extends Tx_Extbase_Persistence_Repository {
......
...@@ -27,9 +27,9 @@ ...@@ -27,9 +27,9 @@
/** /**
* Helper Class which makes debugging tools available * Helper Class which makes debugging tools available
* *
* @author Andy Hausmann <ah@sota-studio.de> * @author Andy Hausmann <ah@sota-studio.de>, SOTA Studio
* @package flexslider * @package flexslider
* @license http://www.gnu.org/licenses/gpl.html GNU General Public License, version 3 or later * @subpackage Utility
*/ */
class Tx_Flexslider_Utility_Debug { class Tx_Flexslider_Utility_Debug {
......
...@@ -28,10 +28,10 @@ ...@@ -28,10 +28,10 @@
/** /**
* Helper Class which makes various tools and helper available * Helper Class which makes various tools and helper available
* *
* @author Andy Hausmann <ah@sota-studio.de> * @author Andy Hausmann <ah@sota-studio.de>, SOTA Studio
* @author Xaver Maierhofer <xaver.maierhofer@xwissen.info> * @author Xaver Maierhofer <xaver.maierhofer@xwissen.info>
* @package flexslider * @package flexslider
* @license http://www.gnu.org/licenses/gpl.html GNU General Public License, version 3 or later * @subpackage Utility
*/ */
class Tx_Flexslider_Utility_Div { class Tx_Flexslider_Utility_Div {
......
...@@ -27,9 +27,9 @@ ...@@ -27,9 +27,9 @@
/** /**
* Helper Class which makes various tools and helper available * Helper Class which makes various tools and helper available
* *
* @author Andy Hausmann <ah@sota-studio.de> * @author Andy Hausmann <ah@sota-studio.de>, SOTA Studio
* @package flexslider * @package flexslider
* @license http://www.gnu.org/licenses/gpl.html GNU General Public License, version 3 or later * @subpackage Utility
*/ */
class Tx_Flexslider_Utility_EmConfiguration { class Tx_Flexslider_Utility_EmConfiguration {
......
...@@ -39,9 +39,9 @@ ...@@ -39,9 +39,9 @@
* <output> * <output>
* </output> * </output>
* *
* @author Andy Hausmann <ah@sota-studio.de> * @author Andy Hausmann <ah@sota-studio.de>, SOTA Studio
* @package flexslider * @package flexslider
* @license http://www.gnu.org/licenses/gpl.html GNU General Public License, version 3 or later * @subpackage ViewHelpers
*/ */
class Tx_Flexslider_ViewHelpers_AddCssJsViewHelper extends Tx_Fluid_Core_ViewHelper_AbstractTagBasedViewHelper { class Tx_Flexslider_ViewHelpers_AddCssJsViewHelper extends Tx_Fluid_Core_ViewHelper_AbstractTagBasedViewHelper {
......
...@@ -36,9 +36,9 @@ ...@@ -36,9 +36,9 @@
* <output> * <output>
* </output> * </output>
* *
* @author Andy Hausmann <ah@sota-studio.de> * @author Andy Hausmann <ah@sota-studio.de>, SOTA Studio
* @package flexslider * @package flexslider
* @license http://www.gnu.org/licenses/gpl.html GNU General Public License, version 3 or later * @subpackage ViewHelpers
*/ */
class Tx_Flexslider_ViewHelpers_AddJQueryViewHelper extends Tx_Fluid_Core_ViewHelper_AbstractTagBasedViewHelper { class Tx_Flexslider_ViewHelpers_AddJQueryViewHelper extends Tx_Fluid_Core_ViewHelper_AbstractTagBasedViewHelper {
......
...@@ -38,19 +38,19 @@ ...@@ -38,19 +38,19 @@
* <output> * <output>
* </output> * </output>
* *
* @author Andy Hausmann <ah@sota-studio.de> * @author Andy Hausmann <ah@sota-studio.de>, SOTA Studio
* @author Xaver Maierhofer <xaver.maierhofer@xwissen.info> * @author Xaver Maierhofer <xaver.maierhofer@xwissen.info>
* @package flexslider * @package flexslider
* @license http://www.gnu.org/licenses/gpl.html GNU General Public License, version 3 or later * @subpackage ViewHelpers
*/ */
class Tx_Flexslider_ViewHelpers_AddJsInlineViewHelper extends Tx_Fluid_Core_ViewHelper_AbstractTagBasedViewHelper { class Tx_Flexslider_ViewHelpers_AddJsInlineViewHelper extends Tx_Fluid_Core_ViewHelper_AbstractTagBasedViewHelper {
/** /**
* Adds JS and CSS to the frontend * Adds JS and CSS to the frontend
* *
* @param string $code The JS code * @param string $code JS Block
* @param string $name Unique key to avoid multiple inclusions
* @param bool $moveToFooter Move the the ending body tag? * @param bool $moveToFooter Move the the ending body tag?
* @param string $uniqueLabel Unique label in order to avoid multiple code blocks of the same code.
* @return void * @return void
*/ */
......
...@@ -29,10 +29,10 @@ ...@@ -29,10 +29,10 @@
* *
* A view helper for dynamic rendering of links. * A view helper for dynamic rendering of links.
* *
* @author Andy Hausmann <ah@sota-studio.de> * @author Andy Hausmann <ah@sota-studio.de>, SOTA Studio
* @author Simon Rauterberg <rauterberg@goldland-media.com> * @author Simon Rauterberg <rauterberg@goldland-media.com>
* @package flexslider * @package flexslider
* @license http://www.gnu.org/licenses/gpl.html GNU General Public License, version 3 or later * @subpackage ViewHelpers
*/ */
class Tx_Flexslider_ViewHelpers_DynLinkViewHelper extends Tx_Fluid_Core_ViewHelper_AbstractTagBasedViewHelper { class Tx_Flexslider_ViewHelpers_DynLinkViewHelper extends Tx_Fluid_Core_ViewHelper_AbstractTagBasedViewHelper {
......
...@@ -27,15 +27,21 @@ ...@@ -27,15 +27,21 @@
/** /**
* Class that adds the wizard icon. * Class that adds the wizard icon.
* *
* @author Andy Hausmann <ah@sota-studio.de> * @author Andy Hausmann <ah@sota-studio.de>, SOTA Studio
* @package flexslider * @package flexslider
* @subpackage Resources\Private\Php
* @license http://www.gnu.org/licenses/gpl.html GNU General Public License, version 3 or later * @license http://www.gnu.org/licenses/gpl.html GNU General Public License, version 3 or later
*/ */
class flexslider_pi1_wizicon { class flexslider_pi1_wizicon {
/** @var string */
protected $extKey = ''; protected $extKey = '';
/** @var string */
protected $plugin = ''; protected $plugin = '';
/** @var string */
protected $pluginSignature = ''; protected $pluginSignature = '';
/** @var \TYPO3\CMS\Lang\LanguageService */
protected $LANG;
public function __construct() { public function __construct() {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment