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

Updated PHPDoc.

parent 3bfb4c3a
......@@ -27,9 +27,9 @@
/**
* Main Controller.
*
* @author Andy Hausmann <ah@sota-studio.de>
* @author Andy Hausmann <ah@sota-studio.de>, SOTA Studio
* @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 {
......
......@@ -27,53 +27,31 @@
/**
* Model for the FlexSlider items.
*
* @author Andy Hausmann <ah@sota-studio.de>
* @author Andy Hausmann <ah@sota-studio.de>, SOTA Studio
* @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 {
/**
* name
*
* @var string
*/
/** @var string */
protected $name;
/**
* title
*
* @var string
*/
/** @var string */
protected $title;
/**
* subtitle
*
* @var string
*/
/** @var string */
protected $subtitle;
/**
* image
*
* @var string
* @validate NotEmpty
*/
protected $image;
/**
* link
*
* @var string
*/
/** @var string */
protected $link;
/**
* caption
*
* @var string
*/
/** @var string */
protected $caption;
/**
......
......@@ -27,9 +27,9 @@
/**
* Repository for FlexSlider items.
*
* @author Andy Hausmann <ah@sota-studio.de>
* @author Andy Hausmann <ah@sota-studio.de>, SOTA Studio
* @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 {
......
......@@ -27,9 +27,9 @@
/**
* 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
* @license http://www.gnu.org/licenses/gpl.html GNU General Public License, version 3 or later
* @subpackage Utility
*/
class Tx_Flexslider_Utility_Debug {
......
......@@ -28,10 +28,10 @@
/**
* 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>
* @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 {
......
......@@ -27,9 +27,9 @@
/**
* 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
* @license http://www.gnu.org/licenses/gpl.html GNU General Public License, version 3 or later
* @subpackage Utility
*/
class Tx_Flexslider_Utility_EmConfiguration {
......
......@@ -39,9 +39,9 @@
* <output>
* </output>
*
* @author Andy Hausmann <ah@sota-studio.de>
* @author Andy Hausmann <ah@sota-studio.de>, SOTA Studio
* @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 {
......
......@@ -36,9 +36,9 @@
* <output>
* </output>
*
* @author Andy Hausmann <ah@sota-studio.de>
* @author Andy Hausmann <ah@sota-studio.de>, SOTA Studio
* @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 {
......
......@@ -38,19 +38,19 @@
* <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>
* @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 {
/**
* 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 string $uniqueLabel Unique label in order to avoid multiple code blocks of the same code.
* @return void
*/
......
......@@ -29,10 +29,10 @@
*
* 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>
* @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 {
......
......@@ -27,15 +27,21 @@
/**
* Class that adds the wizard icon.
*
* @author Andy Hausmann <ah@sota-studio.de>
* @author Andy Hausmann <ah@sota-studio.de>, SOTA Studio
* @package flexslider
* @subpackage Resources\Private\Php
* @license http://www.gnu.org/licenses/gpl.html GNU General Public License, version 3 or later
*/
class flexslider_pi1_wizicon {
/** @var string */
protected $extKey = '';
/** @var string */
protected $plugin = '';
/** @var string */
protected $pluginSignature = '';
/** @var \TYPO3\CMS\Lang\LanguageService */
protected $LANG;
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