I read the posts and tried a few things, but essentially, I have a custom menu for my content admin user. I would be the super user. When either of us log in, we also see the username of the person logged in and menu items. I would like to have the super user menu displayed since that's how I administer the site, but not display the content admin user menu.
I'm creating a custom profile module and need to have a search function in this. For this to work nicely I need the form to keep it's values across requests and need access to these values in my page to create a list of matching profiles. I don't like keeping these values in a session variable as I'd like to provide the possibility of having several searches open. Are there any best practices on how to achieve this?
I've just started playing with CCK. I want to create a content type based on an XML schema I have. A problem I've come up against is that I want a CCK group to occur zero or more times for the content type. Is this possible?
hey folks, i am have a problem with the form api of the check boxes.
here is my form definition
$options = array()
$form['topic'] = array('#type' => 'checkboxes',
'#title' => t('topic'),
'#default_value' => $values,
'#options' => $options,
),
the boxes are arranged in a vertical line, i want to arrange them in a horizontal line, i know i can change the theme css to float:left, but sometimes i wanna keep the checkbox horizontally, are there any way to arrange them horizontally?
thanks