Completed
Push — master ( b70884...5fde98 )
by Fabien
55:11
created
Classes/ViewHelpers/GpViewHelper.php 1 patch
Indentation   +38 added lines, -38 removed lines patch added patch discarded remove patch
@@ -18,42 +18,42 @@
 block discarded – undo
18 18
  */
19 19
 class GpViewHelper extends AbstractViewHelper
20 20
 {
21
-    /**
22
-     * @return void
23
-     */
24
-    public function initializeArguments()
25
-    {
26
-        $this->registerArgument('argument', 'string', 'The argument name', true);
27
-        $this->registerArgument('encode', 'bool', 'Whether to encode the URL.', false, true);
28
-    }
29
-
30
-    /**
31
-     * Tells whether the argument exists or not.
32
-     *
33
-     * @return boolean
34
-     */
35
-    public function render()
36
-    {
37
-        $value = ''; // default value
38
-
39
-        // Merge parameters
40
-        $parameters = GeneralUtility::_GET();
41
-        $post = GeneralUtility::_POST();
42
-        ArrayUtility::mergeRecursiveWithOverrule($parameters, $post);
43
-
44
-        // Traverse argument parts and retrieve value.
45
-        $argumentParts = GeneralUtility::trimExplode('|', $this->arguments['argument']);
46
-        foreach ($argumentParts as $argumentPart) {
47
-            if (isset($parameters[$argumentPart])) {
48
-                $value = $parameters[$argumentPart];
49
-                $parameters = $value;
50
-            }
51
-        }
52
-
53
-        // Possible url encode.
54
-        if ($this->arguments['encode']) {
55
-            $value = urlencode($value);
56
-        }
57
-        return $value;
58
-    }
21
+	/**
22
+	 * @return void
23
+	 */
24
+	public function initializeArguments()
25
+	{
26
+		$this->registerArgument('argument', 'string', 'The argument name', true);
27
+		$this->registerArgument('encode', 'bool', 'Whether to encode the URL.', false, true);
28
+	}
29
+
30
+	/**
31
+	 * Tells whether the argument exists or not.
32
+	 *
33
+	 * @return boolean
34
+	 */
35
+	public function render()
36
+	{
37
+		$value = ''; // default value
38
+
39
+		// Merge parameters
40
+		$parameters = GeneralUtility::_GET();
41
+		$post = GeneralUtility::_POST();
42
+		ArrayUtility::mergeRecursiveWithOverrule($parameters, $post);
43
+
44
+		// Traverse argument parts and retrieve value.
45
+		$argumentParts = GeneralUtility::trimExplode('|', $this->arguments['argument']);
46
+		foreach ($argumentParts as $argumentPart) {
47
+			if (isset($parameters[$argumentPart])) {
48
+				$value = $parameters[$argumentPart];
49
+				$parameters = $value;
50
+			}
51
+		}
52
+
53
+		// Possible url encode.
54
+		if ($this->arguments['encode']) {
55
+			$value = urlencode($value);
56
+		}
57
+		return $value;
58
+	}
59 59
 }
Please login to merge, or discard this patch.
Classes/ViewHelpers/SpriteViewHelper.php 1 patch
Indentation   +23 added lines, -23 removed lines patch added patch discarded remove patch
@@ -19,29 +19,29 @@
 block discarded – undo
19 19
  */
20 20
 class SpriteViewHelper extends AbstractViewHelper
21 21
 {
22
-    /**
23
-     * @return void
24
-     */
25
-    public function initializeArguments()
26
-    {
27
-        $this->registerArgument('name', 'string', 'the file to include', true);
28
-    }
22
+	/**
23
+	 * @return void
24
+	 */
25
+	public function initializeArguments()
26
+	{
27
+		$this->registerArgument('name', 'string', 'the file to include', true);
28
+	}
29 29
 
30
-    /**
31
-     * Returns an icon using sprites
32
-     *
33
-     * @return string
34
-     */
35
-    public function render()
36
-    {
37
-        return $this->getIconFactory()->getIcon($this->arguments['name'], Icon::SIZE_SMALL);
38
-    }
30
+	/**
31
+	 * Returns an icon using sprites
32
+	 *
33
+	 * @return string
34
+	 */
35
+	public function render()
36
+	{
37
+		return $this->getIconFactory()->getIcon($this->arguments['name'], Icon::SIZE_SMALL);
38
+	}
39 39
 
40
-    /**
41
-     * @return IconFactory|object
42
-     */
43
-    protected function getIconFactory()
44
-    {
45
-        return GeneralUtility::makeInstance(IconFactory::class);
46
-    }
40
+	/**
41
+	 * @return IconFactory|object
42
+	 */
43
+	protected function getIconFactory()
44
+	{
45
+		return GeneralUtility::makeInstance(IconFactory::class);
46
+	}
47 47
 }
Please login to merge, or discard this patch.
Classes/ViewHelpers/LanguagesViewHelper.php 1 patch
Indentation   +20 added lines, -20 removed lines patch added patch discarded remove patch
@@ -17,27 +17,27 @@
 block discarded – undo
17 17
  */
18 18
 class LanguagesViewHelper extends AbstractViewHelper
19 19
 {
20
-    /**
21
-     * Returns an array of available languages.
22
-     *
23
-     * @return array
24
-     */
25
-    public function render()
26
-    {
27
-        $languages[0] = $this->getLanguageService()->getDefaultFlag();
20
+	/**
21
+	 * Returns an array of available languages.
22
+	 *
23
+	 * @return array
24
+	 */
25
+	public function render()
26
+	{
27
+		$languages[0] = $this->getLanguageService()->getDefaultFlag();
28 28
 
29
-        foreach ($this->getLanguageService()->getLanguages() as $language) {
30
-            $languages[$language['uid']] = $language['flag'];
31
-        }
29
+		foreach ($this->getLanguageService()->getLanguages() as $language) {
30
+			$languages[$language['uid']] = $language['flag'];
31
+		}
32 32
 
33
-        return $languages;
34
-    }
33
+		return $languages;
34
+	}
35 35
 
36
-    /**
37
-     * @return LanguageService|object
38
-     */
39
-    protected function getLanguageService()
40
-    {
41
-        return GeneralUtility::makeInstance(LanguageService::class);
42
-    }
36
+	/**
37
+	 * @return LanguageService|object
38
+	 */
39
+	protected function getLanguageService()
40
+	{
41
+		return GeneralUtility::makeInstance(LanguageService::class);
42
+	}
43 43
 }
Please login to merge, or discard this patch.
Classes/ViewHelpers/IsRelatedToViewHelper.php 1 patch
Indentation   +42 added lines, -42 removed lines patch added patch discarded remove patch
@@ -18,46 +18,46 @@
 block discarded – undo
18 18
  */
19 19
 class IsRelatedToViewHelper extends AbstractViewHelper
20 20
 {
21
-    /**
22
-     * @return void
23
-     */
24
-    public function initializeArguments()
25
-    {
26
-        $this->registerArgument('relatedContent', Content::class, 'The related content', true);
27
-    }
28
-
29
-    /**
30
-     * Tells whether a Content is related to another content.
31
-     * The $fieldName corresponds to the relational field name
32
-     * between the first content object and the second.
33
-     *
34
-     * @return boolean
35
-     */
36
-    public function render()
37
-    {
38
-        /** @var Content $relatedContent */
39
-        $relatedContent = $this->arguments['relatedContent'];
40
-
41
-        $isChecked = false;
42
-
43
-        // Only computes whether the object is checked if one row is beeing edited.
44
-        $numberOfObjects = $this->templateVariableContainer->get('numberOfObjects');
45
-        if ($numberOfObjects === 1) {
46
-            /** @var Content $content */
47
-            $content = $this->templateVariableContainer->get('content');
48
-            $fieldName = $this->templateVariableContainer->get('fieldName');
49
-
50
-            // Build an array of user group uids
51
-            $relatedContentsIdentifiers = [];
52
-
53
-            /** @var Content $contentObject */
54
-            foreach ($content[$fieldName] as $contentObject) {
55
-                $relatedContentsIdentifiers[] = $contentObject->getUid();
56
-            }
57
-
58
-            $isChecked = in_array($relatedContent->getUid(), $relatedContentsIdentifiers, true);
59
-        }
60
-
61
-        return $isChecked;
62
-    }
21
+	/**
22
+	 * @return void
23
+	 */
24
+	public function initializeArguments()
25
+	{
26
+		$this->registerArgument('relatedContent', Content::class, 'The related content', true);
27
+	}
28
+
29
+	/**
30
+	 * Tells whether a Content is related to another content.
31
+	 * The $fieldName corresponds to the relational field name
32
+	 * between the first content object and the second.
33
+	 *
34
+	 * @return boolean
35
+	 */
36
+	public function render()
37
+	{
38
+		/** @var Content $relatedContent */
39
+		$relatedContent = $this->arguments['relatedContent'];
40
+
41
+		$isChecked = false;
42
+
43
+		// Only computes whether the object is checked if one row is beeing edited.
44
+		$numberOfObjects = $this->templateVariableContainer->get('numberOfObjects');
45
+		if ($numberOfObjects === 1) {
46
+			/** @var Content $content */
47
+			$content = $this->templateVariableContainer->get('content');
48
+			$fieldName = $this->templateVariableContainer->get('fieldName');
49
+
50
+			// Build an array of user group uids
51
+			$relatedContentsIdentifiers = [];
52
+
53
+			/** @var Content $contentObject */
54
+			foreach ($content[$fieldName] as $contentObject) {
55
+				$relatedContentsIdentifiers[] = $contentObject->getUid();
56
+			}
57
+
58
+			$isChecked = in_array($relatedContent->getUid(), $relatedContentsIdentifiers, true);
59
+		}
60
+
61
+		return $isChecked;
62
+	}
63 63
 }
Please login to merge, or discard this patch.
Classes/ViewHelpers/Content/FindOneViewHelper.php 1 patch
Indentation   +153 added lines, -153 removed lines patch added patch discarded remove patch
@@ -22,157 +22,157 @@
 block discarded – undo
22 22
  */
23 23
 class FindOneViewHelper extends AbstractViewHelper
24 24
 {
25
-    /**
26
-     * @return void
27
-     */
28
-    public function initializeArguments()
29
-    {
30
-        parent::initializeArguments();
31
-
32
-        $this->registerArgument('type', 'string', 'The content type', true, '');
33
-        $this->registerArgument('matches', 'array', 'Key / value array to be used as filter. The key corresponds to a field name.', false, []);
34
-        $this->registerArgument('identifier', 'int', 'The identifier of the object to be fetched.', false, 0);
35
-        $this->registerArgument('argumentName', 'string', 'The parameter name where to retrieve the identifier', false, 'tx_vidifrontend_pi1|uid');
36
-        $this->registerArgument('as', 'string', 'The alias object', false, 'object');
37
-    }
38
-
39
-    /**
40
-     * @return string Rendered string
41
-     * @api
42
-     */
43
-    public function render()
44
-    {
45
-        return static::renderStatic(
46
-            $this->arguments,
47
-            $this->buildRenderChildrenClosure(),
48
-            $this->renderingContext
49
-        );
50
-    }
51
-
52
-    /**
53
-     * @param array $arguments
54
-     * @param \Closure $renderChildrenClosure
55
-     * @param RenderingContextInterface $renderingContext
56
-     *
57
-     * @return string
58
-     */
59
-    public static function renderStatic(array $arguments, \Closure $renderChildrenClosure, RenderingContextInterface $renderingContext)
60
-    {
61
-        // Fetch the object
62
-        $matches = self::computeMatches($arguments);
63
-        $matcher = self::getMatcher($arguments['type'], $matches);
64
-
65
-        $contentRepository = ContentRepositoryFactory::getInstance($arguments['type']);
66
-        $object = $contentRepository->findOneBy($matcher);
67
-
68
-        $output = '';
69
-        if ($object) {
70
-            // Render children with "as" variable.
71
-            $templateVariableContainer = $renderingContext->getTemplateVariableContainer();
72
-            $templateVariableContainer->add($arguments['as'], $object);
73
-            $output = $renderChildrenClosure();
74
-            $templateVariableContainer->remove($arguments['as']);
75
-        }
76
-
77
-        return $output;
78
-    }
79
-
80
-    /**
81
-     * @param array $arguments
82
-     * @return array
83
-     */
84
-    protected static function computeMatches(array $arguments)
85
-    {
86
-        $matches = [];
87
-
88
-        $argumentValue = self::getArgumentValue($arguments['argumentName']);
89
-        if ($argumentValue > 0) {
90
-            $matches['uid'] = $argumentValue;
91
-        }
92
-
93
-        if ($arguments['matches']) {
94
-            $matches = $arguments['matches'];
95
-        }
96
-
97
-        if ($arguments['identifier'] > 0) {
98
-            $matches['uid'] = $arguments['identifier'];
99
-        }
100
-
101
-        // We want a default value in any case.
102
-        if (!$matches) {
103
-            $matches['uid'] = 0;
104
-        }
105
-        return $matches;
106
-    }
107
-
108
-    /**
109
-     * Returns a matcher object.
110
-     *
111
-     * @param string $dataType
112
-     * @param array $matches
113
-     * @return Matcher
114
-     */
115
-    protected static function getMatcher($dataType, array $matches = [])
116
-    {
117
-        /** @var $matcher Matcher */
118
-        $matcher = GeneralUtility::makeInstance(Matcher::class, [], $dataType);
119
-
120
-        foreach ($matches as $fieldNameAndPath => $value) {
121
-            // CSV values should be considered as "in" operator in Query, otherwise "equals".
122
-            $explodedValues = GeneralUtility::trimExplode(',', $value, true);
123
-
124
-            // The matching value contains a "1,2" as example
125
-            if (count($explodedValues) > 1) {
126
-                $resolvedDataType = self::getFieldPathResolver()->getDataType($fieldNameAndPath, $dataType);
127
-                $resolvedFieldName = self::getFieldPathResolver()->stripFieldPath($fieldNameAndPath, $dataType);
128
-
129
-                // "equals" if in presence of a relation.
130
-                // "in" if not a relation.
131
-                if (Tca::table($resolvedDataType)->field($resolvedFieldName)->hasRelation()) {
132
-                    foreach ($explodedValues as $explodedValue) {
133
-                        $matcher->equals($fieldNameAndPath, $explodedValue);
134
-                    }
135
-                } else {
136
-                    $matcher->in($fieldNameAndPath, $explodedValues);
137
-                }
138
-            } else {
139
-                $matcher->equals($fieldNameAndPath, $explodedValues[0]);
140
-            }
141
-        }
142
-
143
-        return $matcher;
144
-    }
145
-
146
-    /**
147
-     * @return FieldPathResolver
148
-     */
149
-    protected static function getFieldPathResolver()
150
-    {
151
-        return GeneralUtility::makeInstance(FieldPathResolver::class);
152
-    }
153
-
154
-    /**
155
-     * @param string $argumentName
156
-     * @return int
157
-     */
158
-    protected static function getArgumentValue($argumentName)
159
-    {
160
-        $value = ''; // default value
161
-
162
-        // Merge parameters
163
-        $parameters = GeneralUtility::_GET();
164
-        $post = GeneralUtility::_POST();
165
-        ArrayUtility::mergeRecursiveWithOverrule($parameters, $post);
166
-
167
-        // Traverse argument parts and retrieve value.
168
-        $argumentParts = GeneralUtility::trimExplode('|', $argumentName);
169
-        foreach ($argumentParts as $argumentPart) {
170
-            if (isset($parameters[$argumentPart])) {
171
-                $value = $parameters[$argumentPart];
172
-                $parameters = $value;
173
-            }
174
-        }
175
-
176
-        return (int)$value;
177
-    }
25
+	/**
26
+	 * @return void
27
+	 */
28
+	public function initializeArguments()
29
+	{
30
+		parent::initializeArguments();
31
+
32
+		$this->registerArgument('type', 'string', 'The content type', true, '');
33
+		$this->registerArgument('matches', 'array', 'Key / value array to be used as filter. The key corresponds to a field name.', false, []);
34
+		$this->registerArgument('identifier', 'int', 'The identifier of the object to be fetched.', false, 0);
35
+		$this->registerArgument('argumentName', 'string', 'The parameter name where to retrieve the identifier', false, 'tx_vidifrontend_pi1|uid');
36
+		$this->registerArgument('as', 'string', 'The alias object', false, 'object');
37
+	}
38
+
39
+	/**
40
+	 * @return string Rendered string
41
+	 * @api
42
+	 */
43
+	public function render()
44
+	{
45
+		return static::renderStatic(
46
+			$this->arguments,
47
+			$this->buildRenderChildrenClosure(),
48
+			$this->renderingContext
49
+		);
50
+	}
51
+
52
+	/**
53
+	 * @param array $arguments
54
+	 * @param \Closure $renderChildrenClosure
55
+	 * @param RenderingContextInterface $renderingContext
56
+	 *
57
+	 * @return string
58
+	 */
59
+	public static function renderStatic(array $arguments, \Closure $renderChildrenClosure, RenderingContextInterface $renderingContext)
60
+	{
61
+		// Fetch the object
62
+		$matches = self::computeMatches($arguments);
63
+		$matcher = self::getMatcher($arguments['type'], $matches);
64
+
65
+		$contentRepository = ContentRepositoryFactory::getInstance($arguments['type']);
66
+		$object = $contentRepository->findOneBy($matcher);
67
+
68
+		$output = '';
69
+		if ($object) {
70
+			// Render children with "as" variable.
71
+			$templateVariableContainer = $renderingContext->getTemplateVariableContainer();
72
+			$templateVariableContainer->add($arguments['as'], $object);
73
+			$output = $renderChildrenClosure();
74
+			$templateVariableContainer->remove($arguments['as']);
75
+		}
76
+
77
+		return $output;
78
+	}
79
+
80
+	/**
81
+	 * @param array $arguments
82
+	 * @return array
83
+	 */
84
+	protected static function computeMatches(array $arguments)
85
+	{
86
+		$matches = [];
87
+
88
+		$argumentValue = self::getArgumentValue($arguments['argumentName']);
89
+		if ($argumentValue > 0) {
90
+			$matches['uid'] = $argumentValue;
91
+		}
92
+
93
+		if ($arguments['matches']) {
94
+			$matches = $arguments['matches'];
95
+		}
96
+
97
+		if ($arguments['identifier'] > 0) {
98
+			$matches['uid'] = $arguments['identifier'];
99
+		}
100
+
101
+		// We want a default value in any case.
102
+		if (!$matches) {
103
+			$matches['uid'] = 0;
104
+		}
105
+		return $matches;
106
+	}
107
+
108
+	/**
109
+	 * Returns a matcher object.
110
+	 *
111
+	 * @param string $dataType
112
+	 * @param array $matches
113
+	 * @return Matcher
114
+	 */
115
+	protected static function getMatcher($dataType, array $matches = [])
116
+	{
117
+		/** @var $matcher Matcher */
118
+		$matcher = GeneralUtility::makeInstance(Matcher::class, [], $dataType);
119
+
120
+		foreach ($matches as $fieldNameAndPath => $value) {
121
+			// CSV values should be considered as "in" operator in Query, otherwise "equals".
122
+			$explodedValues = GeneralUtility::trimExplode(',', $value, true);
123
+
124
+			// The matching value contains a "1,2" as example
125
+			if (count($explodedValues) > 1) {
126
+				$resolvedDataType = self::getFieldPathResolver()->getDataType($fieldNameAndPath, $dataType);
127
+				$resolvedFieldName = self::getFieldPathResolver()->stripFieldPath($fieldNameAndPath, $dataType);
128
+
129
+				// "equals" if in presence of a relation.
130
+				// "in" if not a relation.
131
+				if (Tca::table($resolvedDataType)->field($resolvedFieldName)->hasRelation()) {
132
+					foreach ($explodedValues as $explodedValue) {
133
+						$matcher->equals($fieldNameAndPath, $explodedValue);
134
+					}
135
+				} else {
136
+					$matcher->in($fieldNameAndPath, $explodedValues);
137
+				}
138
+			} else {
139
+				$matcher->equals($fieldNameAndPath, $explodedValues[0]);
140
+			}
141
+		}
142
+
143
+		return $matcher;
144
+	}
145
+
146
+	/**
147
+	 * @return FieldPathResolver
148
+	 */
149
+	protected static function getFieldPathResolver()
150
+	{
151
+		return GeneralUtility::makeInstance(FieldPathResolver::class);
152
+	}
153
+
154
+	/**
155
+	 * @param string $argumentName
156
+	 * @return int
157
+	 */
158
+	protected static function getArgumentValue($argumentName)
159
+	{
160
+		$value = ''; // default value
161
+
162
+		// Merge parameters
163
+		$parameters = GeneralUtility::_GET();
164
+		$post = GeneralUtility::_POST();
165
+		ArrayUtility::mergeRecursiveWithOverrule($parameters, $post);
166
+
167
+		// Traverse argument parts and retrieve value.
168
+		$argumentParts = GeneralUtility::trimExplode('|', $argumentName);
169
+		foreach ($argumentParts as $argumentPart) {
170
+			if (isset($parameters[$argumentPart])) {
171
+				$value = $parameters[$argumentPart];
172
+				$parameters = $value;
173
+			}
174
+		}
175
+
176
+		return (int)$value;
177
+	}
178 178
 }
Please login to merge, or discard this patch.
Classes/ViewHelpers/Content/CountViewHelper.php 1 patch
Indentation   +20 added lines, -20 removed lines patch added patch discarded remove patch
@@ -16,27 +16,27 @@
 block discarded – undo
16 16
  */
17 17
 class CountViewHelper extends AbstractContentViewHelper
18 18
 {
19
-    /**
20
-     * Count a result set.
21
-     *
22
-     * @return int
23
-     */
24
-    public function render()
25
-    {
26
-        if (!empty($this->arguments['dataType'])) {
27
-            print 'Sorry to be so rude! There is something to change in the View Helper "v:find". Please replace attribute "dataType" by "type". This is a shorter syntax...';
28
-            exit();
29
-        }
30
-        $dataType = $this->arguments['type'];
31
-        $matches = $this->replacesAliases($this->arguments['matches']);
32
-        $ignoreEnableFields = $this->arguments['ignoreEnableFields'];
19
+	/**
20
+	 * Count a result set.
21
+	 *
22
+	 * @return int
23
+	 */
24
+	public function render()
25
+	{
26
+		if (!empty($this->arguments['dataType'])) {
27
+			print 'Sorry to be so rude! There is something to change in the View Helper "v:find". Please replace attribute "dataType" by "type". This is a shorter syntax...';
28
+			exit();
29
+		}
30
+		$dataType = $this->arguments['type'];
31
+		$matches = $this->replacesAliases($this->arguments['matches']);
32
+		$ignoreEnableFields = $this->arguments['ignoreEnableFields'];
33 33
 
34
-        $matcher = $this->getMatcher($dataType, $matches);
34
+		$matcher = $this->getMatcher($dataType, $matches);
35 35
 
36
-        $contentRepository = ContentRepositoryFactory::getInstance($dataType);
37
-        $contentRepository->setDefaultQuerySettings($this->getDefaultQuerySettings($ignoreEnableFields));
36
+		$contentRepository = ContentRepositoryFactory::getInstance($dataType);
37
+		$contentRepository->setDefaultQuerySettings($this->getDefaultQuerySettings($ignoreEnableFields));
38 38
 
39
-        $numberOfObjects = ContentRepositoryFactory::getInstance($dataType)->countBy($matcher);
40
-        return $numberOfObjects;
41
-    }
39
+		$numberOfObjects = ContentRepositoryFactory::getInstance($dataType)->countBy($matcher);
40
+		return $numberOfObjects;
41
+	}
42 42
 }
Please login to merge, or discard this patch.
Classes/ViewHelpers/Content/FindViewHelper.php 1 patch
Indentation   +53 added lines, -53 removed lines patch added patch discarded remove patch
@@ -19,68 +19,68 @@
 block discarded – undo
19 19
  */
20 20
 class FindViewHelper extends AbstractContentViewHelper
21 21
 {
22
-    /**
23
-     * @return void
24
-     * @throws Exception
25
-     */
26
-    public function initializeArguments()
27
-    {
28
-        parent::initializeArguments();
22
+	/**
23
+	 * @return void
24
+	 * @throws Exception
25
+	 */
26
+	public function initializeArguments()
27
+	{
28
+		parent::initializeArguments();
29 29
 
30
-        $this->registerArgument('orderings', 'array', 'Key / value array to be used for ordering. The key corresponds to a field name. The value can be "DESC" or "ASC".', false, array());
31
-        $this->registerArgument('limit', 'int', 'Limit the number of records being fetched.', false, 0);
32
-        $this->registerArgument('offset', 'int', 'Where to start the list of records.', false, 0);
33
-    }
30
+		$this->registerArgument('orderings', 'array', 'Key / value array to be used for ordering. The key corresponds to a field name. The value can be "DESC" or "ASC".', false, array());
31
+		$this->registerArgument('limit', 'int', 'Limit the number of records being fetched.', false, 0);
32
+		$this->registerArgument('offset', 'int', 'Where to start the list of records.', false, 0);
33
+	}
34 34
 
35
-    /**
36
-     * Fetch and returns a list of content objects.
37
-     *
38
-     * @return array
39
-     * @throws \BadMethodCallException
40
-     */
41
-    public function render()
42
-    {
43
-        $selectionIdentifier = (int)$this->arguments['selection'];
35
+	/**
36
+	 * Fetch and returns a list of content objects.
37
+	 *
38
+	 * @return array
39
+	 * @throws \BadMethodCallException
40
+	 */
41
+	public function render()
42
+	{
43
+		$selectionIdentifier = (int)$this->arguments['selection'];
44 44
 
45
-        if ($selectionIdentifier > 0) {
46
-            /** @var SelectionRepository $selectionRepository */
47
-            $selectionRepository = GeneralUtility::makeInstance(SelectionRepository::class);
45
+		if ($selectionIdentifier > 0) {
46
+			/** @var SelectionRepository $selectionRepository */
47
+			$selectionRepository = GeneralUtility::makeInstance(SelectionRepository::class);
48 48
 
49
-            /** @var Selection $selection */
50
-            $selection = $selectionRepository->findByUid($selectionIdentifier);
51
-            $matches = json_decode($selection->getQuery(), true);
52
-            $dataType = $selection->getDataType();
53
-        } else {
54
-            $dataType = $this->arguments['type'];
55
-            if (!empty($this->arguments['dataType'])) {
56
-                print 'Sorry to be so rude! There is something to change in the View Helper "v:find". Please replace attribute "dataType" by "type". This is a shorter syntax...';
57
-                exit();
58
-            }
59
-            $matches = $this->replacesAliases($this->arguments['matches']);
60
-        }
49
+			/** @var Selection $selection */
50
+			$selection = $selectionRepository->findByUid($selectionIdentifier);
51
+			$matches = json_decode($selection->getQuery(), true);
52
+			$dataType = $selection->getDataType();
53
+		} else {
54
+			$dataType = $this->arguments['type'];
55
+			if (!empty($this->arguments['dataType'])) {
56
+				print 'Sorry to be so rude! There is something to change in the View Helper "v:find". Please replace attribute "dataType" by "type". This is a shorter syntax...';
57
+				exit();
58
+			}
59
+			$matches = $this->replacesAliases($this->arguments['matches']);
60
+		}
61 61
 
62
-        $orderings = $this->replacesAliases($this->arguments['orderings']);
63
-        $limit = $this->arguments['limit'];
64
-        $offset = $this->arguments['offset'];
65
-        $ignoreEnableFields = $this->arguments['ignoreEnableFields'];
62
+		$orderings = $this->replacesAliases($this->arguments['orderings']);
63
+		$limit = $this->arguments['limit'];
64
+		$offset = $this->arguments['offset'];
65
+		$ignoreEnableFields = $this->arguments['ignoreEnableFields'];
66 66
 
67
-        $querySignature = $this->getQuerySignature($dataType, $matches, $orderings, $limit, $offset);
67
+		$querySignature = $this->getQuerySignature($dataType, $matches, $orderings, $limit, $offset);
68 68
 
69
-        $resultSet = $this->getResultSetStorage()->get($querySignature);
70
-        if (!$resultSet) {
71
-            $matcher = $this->getMatcher($dataType, $matches);
72
-            $orderings = $this->getOrder($dataType, $orderings);
69
+		$resultSet = $this->getResultSetStorage()->get($querySignature);
70
+		if (!$resultSet) {
71
+			$matcher = $this->getMatcher($dataType, $matches);
72
+			$orderings = $this->getOrder($dataType, $orderings);
73 73
 
74
-            $this->emitPostProcessLimitSignal($dataType, $limit);
75
-            $this->emitPostProcessOffsetSignal($dataType, $offset);
74
+			$this->emitPostProcessLimitSignal($dataType, $limit);
75
+			$this->emitPostProcessOffsetSignal($dataType, $offset);
76 76
 
77
-            $contentRepository = ContentRepositoryFactory::getInstance($dataType);
78
-            $contentRepository->setDefaultQuerySettings($this->getDefaultQuerySettings($ignoreEnableFields));
77
+			$contentRepository = ContentRepositoryFactory::getInstance($dataType);
78
+			$contentRepository->setDefaultQuerySettings($this->getDefaultQuerySettings($ignoreEnableFields));
79 79
 
80
-            $resultSet = $contentRepository->findBy($matcher, $orderings, $limit, $offset);
81
-            $this->getResultSetStorage()->set($querySignature, $resultSet); // store the result set for performance sake.
82
-        }
80
+			$resultSet = $contentRepository->findBy($matcher, $orderings, $limit, $offset);
81
+			$this->getResultSetStorage()->set($querySignature, $resultSet); // store the result set for performance sake.
82
+		}
83 83
 
84
-        return $resultSet;
85
-    }
84
+		return $resultSet;
85
+	}
86 86
 }
Please login to merge, or discard this patch.
Classes/ViewHelpers/Selection/VisibilityOptionsViewHelper.php 1 patch
Indentation   +23 added lines, -23 removed lines patch added patch discarded remove patch
@@ -18,30 +18,30 @@
 block discarded – undo
18 18
  */
19 19
 class VisibilityOptionsViewHelper extends AbstractViewHelper
20 20
 {
21
-    /**
22
-     * Returns the options for the visibility field of a Selection.
23
-     *
24
-     * @return array
25
-     */
26
-    public function render()
27
-    {
28
-        $options[Selection::VISIBILITY_PRIVATE] = LocalizationUtility::translate('LLL:EXT:vidi/Resources/Private/Language/tx_vidi_selection.xlf:visibility.private', 'vidi');
29
-        $options[Selection::VISIBILITY_EVERYONE] = LocalizationUtility::translate('LLL:EXT:vidi/Resources/Private/Language/tx_vidi_selection.xlf:visibility.everyone', 'vidi');
21
+	/**
22
+	 * Returns the options for the visibility field of a Selection.
23
+	 *
24
+	 * @return array
25
+	 */
26
+	public function render()
27
+	{
28
+		$options[Selection::VISIBILITY_PRIVATE] = LocalizationUtility::translate('LLL:EXT:vidi/Resources/Private/Language/tx_vidi_selection.xlf:visibility.private', 'vidi');
29
+		$options[Selection::VISIBILITY_EVERYONE] = LocalizationUtility::translate('LLL:EXT:vidi/Resources/Private/Language/tx_vidi_selection.xlf:visibility.everyone', 'vidi');
30 30
 
31
-        if ($this->getBackendUser()->isAdmin()) {
32
-            $options[Selection::VISIBILITY_ADMIN_ONLY] = LocalizationUtility::translate('LLL:EXT:vidi/Resources/Private/Language/tx_vidi_selection.xlf:visibility.admin_only', 'vidi');
33
-        }
34
-        return $options;
35
-    }
31
+		if ($this->getBackendUser()->isAdmin()) {
32
+			$options[Selection::VISIBILITY_ADMIN_ONLY] = LocalizationUtility::translate('LLL:EXT:vidi/Resources/Private/Language/tx_vidi_selection.xlf:visibility.admin_only', 'vidi');
33
+		}
34
+		return $options;
35
+	}
36 36
 
37 37
 
38
-    /**
39
-     * Returns an instance of the current Backend User.
40
-     *
41
-     * @return BackendUserAuthentication
42
-     */
43
-    protected function getBackendUser()
44
-    {
45
-        return $GLOBALS['BE_USER'];
46
-    }
38
+	/**
39
+	 * Returns an instance of the current Backend User.
40
+	 *
41
+	 * @return BackendUserAuthentication
42
+	 */
43
+	protected function getBackendUser()
44
+	{
45
+		return $GLOBALS['BE_USER'];
46
+	}
47 47
 }
Please login to merge, or discard this patch.
Classes/ViewHelpers/PublicPathViewHelper.php 1 patch
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -16,13 +16,13 @@
 block discarded – undo
16 16
  */
17 17
 class PublicPathViewHelper extends AbstractViewHelper
18 18
 {
19
-    /**
20
-     * Returns the public path to Vidi extension.
21
-     *
22
-     * @return string
23
-     */
24
-    public function render()
25
-    {
26
-        return ExtensionManagementUtility::siteRelPath('vidi');
27
-    }
19
+	/**
20
+	 * Returns the public path to Vidi extension.
21
+	 *
22
+	 * @return string
23
+	 */
24
+	public function render()
25
+	{
26
+		return ExtensionManagementUtility::siteRelPath('vidi');
27
+	}
28 28
 }
Please login to merge, or discard this patch.