File tree Expand file tree Collapse file tree 2 files changed +6
-5
lines changed
app/code/Magento/Config/Model/Config/Structure Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,8 @@ class ElementVisibilityComposite implements ElementVisibilityInterface
22
22
private $ visibility = [];
23
23
24
24
/**
25
- * @param ElementVisibilityInterface[] $visibility List of objects which implement ElementVisibilityInterface.
25
+ * @param ElementVisibilityInterface[] $visibility List of objects which define visibility status of form elements
26
+ * under its own conditions.
26
27
* @throws ConfigurationMismatchException It is thrown if some object from list $visibility
27
28
* implements the wrong interface.
28
29
*/
Original file line number Diff line number Diff line change 7
7
8
8
/**
9
9
* Checks visibility status of form elements on Stores > Settings > Configuration page in Admin Panel
10
- * by their paths in the structure.
10
+ * by their paths in the system.xml structure.
11
11
*/
12
12
interface ElementVisibilityInterface
13
13
{
@@ -21,15 +21,15 @@ interface ElementVisibilityInterface
21
21
/**
22
22
* Check whether form element is disabled by path.
23
23
*
24
- * @param string $path The path of form element in the structure
24
+ * @param string $path The path of form element in the system.xml structure
25
25
* @return bool
26
26
*/
27
27
public function isDisabled ($ path );
28
28
29
29
/**
30
- * Check whether form element is hidden from form by path.
30
+ * Check whether form element is hidden in form by path.
31
31
*
32
- * @param string $path The path of form element in the structure
32
+ * @param string $path The path of form element in the system.xml structure
33
33
* @return bool
34
34
*/
35
35
public function isHidden ($ path );
You can’t perform that action at this time.
0 commit comments