My First App
Component ID
1461114
Component name
My First App
Component type
module
Maintenance status
Development status
Component security advisory coverage
not-covered
Component created
Component changed
Component body
function phptemplate_search_theme_form($form) {
$form['submit']['#theme'] = 'button';
$form['submit']['#button_type'] = 'image';
$form['submit']['#attributes'] = array(
'src' => '/path-to-your-theme/img/search-button.png',
'alt' => t(Search)
);
return form_render($form);
}
