core/libraries/form_sections/strategies/layout/EE_Form_Section_Layout_Base.strategy.php 1 location
|
@@ 96-103 (lines=8) @@
|
93 |
|
$this->_form_section, |
94 |
|
$subsection |
95 |
|
); |
96 |
|
} elseif ( $subsection instanceof EE_Form_Section_Base ){ |
97 |
|
$html .= apply_filters( |
98 |
|
'FHEE__EE_Form_Section_Layout_Base__layout_form__loop_for_non_input_' . $name . '__in_' . $this->_form_section->name(), |
99 |
|
$this->layout_subsection( $subsection ), |
100 |
|
$this->_form_section, |
101 |
|
$subsection |
102 |
|
); |
103 |
|
} |
104 |
|
} |
105 |
|
return $html; |
106 |
|
} |
core/libraries/form_sections/strategies/layout/EE_Vsprintf_Layout.strategy.php 1 location
|
@@ 54-61 (lines=8) @@
|
51 |
|
$this->_form_section, |
52 |
|
$subsection |
53 |
|
); |
54 |
|
} elseif ($subsection instanceof EE_Form_Section_Base) { |
55 |
|
$vsprintf_args[$name] = apply_filters( |
56 |
|
'FHEE__EE_Form_Section_Layout_Base__layout_form__loop_for_non_input_' . $name . '__in_' . $this->_form_section->name(), |
57 |
|
$this->layout_subsection($subsection), |
58 |
|
$this->_form_section, |
59 |
|
$subsection |
60 |
|
); |
61 |
|
} |
62 |
|
} |
63 |
|
return vsprintf($this->_v_format, $vsprintf_args); |
64 |
|
} |