FireGento_MageMonitoring_Model_Widget::initConfig

Returns array with default config data for this widget or false if not implemented.

Implementing this method enables you to add custom entries for user configuration. Extending from FireGento_MageMonitoring_Model_Widget_Abstract will give you persistence via core_config_data. Data is saved to core_config_data with path = 'widgets/' + $widgetClassName '/' + $config_key Format of return array: array ('config_key' => array('type' => $inputType, // 'text' or 'checkbox' for now 'scope' => 'global|widget', 'required' => true|false, 'label' => $label, 'value' => $value, 'tooltip' => $tooltipMsg), ...)