Footnotes_Widget_Base extends WP_Widget
Base Class for all Plugin Widgets. Registers each Widget to WordPress.
The following Methods MUST be overwritten in each sub class: public function widget($args, $instance) -> echo the Widget Content public function form($instance) -> echo the Settings of the Widget
Tags
Table of Contents
- __construct() : mixed
- Class Constructor. Registers the child Widget to WordPress.
- get_description() : string
- Returns the Description of the child widget.
- get_id() : string
- Returns an unique ID as string used for the Widget Base ID.
- get_name() : string
- Returns the Public name of child Widget to be displayed in the Configuration page.
- get_widget_width() : int
- Returns the width of the Widget. Default width is 250 pixel.
Methods
__construct()
Class Constructor. Registers the child Widget to WordPress.
public
__construct() : mixed
Tags
Return values
mixed —get_description()
Returns the Description of the child widget.
protected
abstract get_description() : string
Tags
Return values
string —get_id()
Returns an unique ID as string used for the Widget Base ID.
protected
abstract get_id() : string
Tags
Return values
string —get_name()
Returns the Public name of child Widget to be displayed in the Configuration page.
protected
abstract get_name() : string
Tags
Return values
string —get_widget_width()
Returns the width of the Widget. Default width is 250 pixel.
protected
get_widget_width() : int