You are here

public function BoxTestPlugin::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 BoxPlugin::values

File

tests/boxes_test.module, line 62

Class

BoxTestPlugin

Code

public function values() {
  return array(
    'test_boolean' => TRUE,
    'test_string' => t('String'),
    'test_array' => array(
      'test_array_1' => 'test_array_1',
    ),
  );
}