Documentation

MCI_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
author

Stefan Herndler

since
1.5.0

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

get_description()

Returns the Description of the child widget.

protected abstract get_description() : string
Tags
since
1.5.0
Return values
string

get_id()

Returns an unique ID as string used for the Widget Base ID.

protected abstract get_id() : string
Tags
since
1.5.0
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
since
1.5.0
Return values
string

get_widget_width()

Returns the width of the Widget. Default width is 250 pixel.

protected get_widget_width() : int
Tags
since
1.5.0
Return values
int

Search results