Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
F
flexslider
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
hebotek
flexslider
Commits
31264ba8
Commit
31264ba8
authored
Jul 17, 2014
by
Andy Hausmann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updated PHPDoc.
parent
3bfb4c3a
Changes
11
Show whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
34 additions
and
50 deletions
+34
-50
FlexSliderController.php
Classes/Controller/FlexSliderController.php
+2
-2
FlexSlider.php
Classes/Domain/Model/FlexSlider.php
+7
-29
FlexSliderRepository.php
Classes/Domain/Repository/FlexSliderRepository.php
+2
-2
Debug.php
Classes/Utility/Debug.php
+2
-2
Div.php
Classes/Utility/Div.php
+2
-2
EmConfiguration.php
Classes/Utility/EmConfiguration.php
+2
-2
AddCssJsViewHelper.php
Classes/ViewHelpers/AddCssJsViewHelper.php
+2
-2
AddJQueryViewHelper.php
Classes/ViewHelpers/AddJQueryViewHelper.php
+2
-2
AddJsInlineViewHelper.php
Classes/ViewHelpers/AddJsInlineViewHelper.php
+4
-4
DynLinkViewHelper.php
Classes/ViewHelpers/DynLinkViewHelper.php
+2
-2
class.flexslider_wizicon.php
Resources/Private/Php/class.flexslider_wizicon.php
+7
-1
No files found.
Classes/Controller/FlexSliderController.php
View file @
31264ba8
...
...
@@ -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 lat
er
* @
subpackage Controll
er
*/
class
Tx_Flexslider_Controller_FlexSliderController
extends
Tx_Extbase_MVC_Controller_ActionController
{
...
...
Classes/Domain/Model/FlexSlider.php
View file @
31264ba8
...
...
@@ -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
;
/**
...
...
Classes/Domain/Repository/FlexSliderRepository.php
View file @
31264ba8
...
...
@@ -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
{
...
...
Classes/Utility/Debug.php
View file @
31264ba8
...
...
@@ -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
{
...
...
Classes/Utility/Div.php
View file @
31264ba8
...
...
@@ -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
{
...
...
Classes/Utility/EmConfiguration.php
View file @
31264ba8
...
...
@@ -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
{
...
...
Classes/ViewHelpers/AddCssJsViewHelper.php
View file @
31264ba8
...
...
@@ -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
{
...
...
Classes/ViewHelpers/AddJQueryViewHelper.php
View file @
31264ba8
...
...
@@ -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
{
...
...
Classes/ViewHelpers/AddJsInlineViewHelper.php
View file @
31264ba8
...
...
@@ -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
*/
...
...
Classes/ViewHelpers/DynLinkViewHelper.php
View file @
31264ba8
...
...
@@ -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
{
...
...
Resources/Private/Php/class.flexslider_wizicon.php
View file @
31264ba8
...
...
@@ -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
()
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment