LLMS_BBP_Widget_Course_Forums_List::form( array $instance )
Output widget options form
Parameters Parameters
- $instance
-
(array) (Required) instance data
Return Return
(void)
Source Source
File: includes/widgets/class.llms.bbp.widget.course.forums.list.php
public function form( $instance ) {
$title = isset( $instance['title'] ) ? $instance['title'] : __( 'Course Forums', 'lifterlms' );
?>
<p>
<label for="<?php echo $this->get_field_id( 'title' ); ?>"><?php esc_html_e( 'Title:', 'lifterlms' ); ?></label>
<input class="widefat" id="<?php echo $this->get_field_id( 'title' ); ?>" name="<?php echo $this->get_field_name( 'title' ); ?>" type="text" value="<?php echo esc_attr( $title ); ?>">
</p>
<?php
}
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
| Version | Description |
|---|---|
| 3.12.0 | Introduced. |