Привет! Делаю темизаци radios, ничего не меняется.
Делаю тоже самое с textfield, все работает.
<?php
function companies_sort_form() {
$form['search_field'] = array (
'#id' => 'search-field',
'#type' => 'textfield',
'#theme' => 'local_search_textfield'
);
$form['sort'] = array (
'#type' => 'radios',
'#title' => FALSE,
'#theme' => 'local_search_radios',
'#options' => array (
t('First with a rated'),
t('Аirst with the lowest rating'),
),
);
return $form;
}?>
<?php
function theme_local_search_radios($element) {
}
function
theme_local_search_textfield($element) {
}
?>
Нет никакого глюка в D6 с radios?