show section and category in template - Joomla! Forum - community, help and support
i need php functions section , category article/content item.
i need display path, beside path displayed pathway.php, according menu only.
for section have:
how can category?
i need display path, beside path displayed pathway.php, according menu only.
for section have:
code: select all
function getsectionid(){
global $database;
$opt=mosgetparam($_request,'option','');
if(eregi('content',$opt)){
$tsk=mosgetparam($_request,'task','');
$sid=mosgetparam($_request,'id','0');
if(eregi('category',$tsk)){
$row = new moscategory( $database );
$row->load( $sid );
$sect=$row->section;
}elseif (eregi('view',$tsk)){
$row = new moscontent( $database );
$row->load( $sid );
$sect=$row->sectionid;
}else{
$sect=$sid;
}
}
return $sect;
}
how can category?
Comments
Post a Comment