1 contact.module contact_show_personal_copy_checkbox()

Show the personal copy checkbox on forms

Return value

bool:

File

core/modules/contact/contact.module, line 237
Enables the use of personal and site-wide contact forms.

Code

function contact_show_personal_copy_checkbox() {
  $config = config('contact.settings');
  $settings = $config->get();

  return (isset($settings['copy'])) ? $settings['copy'] : TRUE;
}