* The default values for the theme variables. Make sure $defaults exactly
* matches the $defaults in the theme-settings.php file.
*/
$defaults = array(// <-- change this array
'who_we_are_title' =>'QUEM SOMOS',
'who_we_are_text' =>'Prestamos o <strong>melhor serviço</strong> na área de seguros com os melhores produtos das <strong>principais seguradoras</strong> do mercado',
'#description' =>t('If is needed, you can change the title "QUEM SOMOS" localized on the front page.'),
);
$form['who_we_are_text'] = array(
'#type' =>'textarea',
'#title' =>t('Text of the title "QUEM SOMOS"'),
//'#default_value' => 'Prestamos o <strong>melhor serviço</strong> na área de seguros com os melhores produtos das <strong>principais seguradoras</strong> do mercado.',
'#default_value' =>t('Prestamos o <strong>melhor servico</strong> na area de seguros com os melhores produtos das <strong>principais seguradoras</strong> do mercado.'),
'#size' =>100,
'#maxlength' =>255,
'#description' =>t('If is needed, you can change the text of the title "QUEM SOMOS" localized on the front page.'),
);
$form['made_by'] = array(
'#type' =>'checkbox',
'#title' =>t('Enable link to developer.'),
'#default_value' =>$settings['made_by'],
'#description' =>t('If enabled, the link to developer will appear close of message footer.'),