Posted: Wed Jul 25, 2007 5:47 pm
how can I add static pages to a df website ? (like this website's about section). Is this possible without building a new action ? (-action=my_static_page)
thanks in advance.
thanks in advance.
How can I have the page listed in the "tables_menu" (like you have on this website)?
How did you make this expandable navigation menu? For example when you click "about" the menu expands showing a few subcategories "Dataface Features" ... etc.
How can I tune the bread crumbs to show the location more exactly.
function getBreadCrumbs(&$record){
return array(
'Home' => DATAFACE_SITE_URL,
$record->display('category') => DATAFACE_SITE_HREF.'?-action=list&-category=$record->val('category'),
$record->getTitle() => $record->getURL('-action=view')
);
}
function block__bread_crumbs(){
echo "This is some stuff that should show up instead of breadcrumbs";
}