LLMS_Forms::get_free_enroll_form_html( LLMS_Access_Plan $plan )
Retrieve the HTML of form fields used for the “free enrollment” form
Description Description
See also See also
Parameters Parameters
- $plan
-
(LLMS_Access_Plan) (Required) Access plan being used for enrollment.
Return Return
(string)
Source Source
File: includes/forms/class-llms-forms.php
public function get_free_enroll_form_html( $plan ) { $html = ''; foreach ( $this->get_free_enroll_form_fields( $plan ) as $field ) { $html .= llms_form_field( $field, false ); } return $html; }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
5.0.0 | Introduced. |