public function BoxPlugin::values in Boxes 7.2
Define the form values and their defaults
Be sure to call combine the results form the parent::values() with yours
Overrides BoxTypePluginInterface::values
1 method overrides BoxPlugin::values()
- BoxTestPlugin::values in tests/
boxes_test.module - Define the form values and their defaults
File
- plugins/
base.inc, line 54 - Base Plugin Class
Class
- BoxPlugin
- @file Base Plugin Class
Code
public function values() {
return array(
'view_mode' => 'default',
);
}