'0';"; // V x
$db->setQuery( $q );
if (!shTranslateUrl($option, $shLangName)) // V 1.2.4.m
$tree[$mosConfig_lang] = $db->loadObjectList( 'id', false); // V 1.2.4.m if Joomfish, and don't translate
// use special call of loadObjectList, asking JF not to translate
else
$tree[$mosConfig_lang] = $db->loadObjectList( 'id' );
}
if (SH404SEF_DP_INSERT_ALL_CATEGORIES == 1) // only one category
$title[] = (SH404SEF_DP_INSERT_CAT_ID != 0 ?
$tree[$mosConfig_lang][ $category_id ]->id.$sefConfig->replacement : '')
.$tree[$mosConfig_lang][ $category_id ]->title;
else
do { // all categories and subcategories.
$title[] = (SH404SEF_DP_INSERT_CAT_ID ?
$tree[$mosConfig_lang][ $category_id ]->id.$sefConfig->replacement : '') // to category
.$tree[$mosConfig_lang][ $category_id ]->title; // will always be unique
$category_id = $tree[$mosConfig_lang][ $category_id ]->parent_id;
} while( $category_id != 0 );
return array_reverse( $title );
}
}
$task = isset($task) ? @$task : null;
// shumisha : insert component name from menu
$shDPName = shGetComponentPrefix($option);
if (!empty($shDPName))
$title[] = $shDPName;
else {
$shDPName = empty($shDPName) ? getMenuTitle($option, null, @$Itemid, null, $shLangName ) : $shDPName;
$shDPName = $shDPName == '/' ? 'DP':$shDPName;
}
switch ($task){
case 'catShow':
if ( !empty($id) ) {
$categoryTitle = dp_sef_get_category_array( &$database, $id, $option, $shLangName );
if ( !empty($categoryTitle) ) {
if (empty($title)) // there may already be component name in $title
$title = $categoryTitle;
else
$title = array_merge($title, $categoryTitle);
$title[] = "/";
}
}
shRemoveFromGETVarsList('id');
shRemoveFromGETVarsList('task');
break;
case 'catContShow': // showing regular content element
/* if (!empty($id)) {
if (!empty($title))
$title = array_merge($title, sef_404::getContentTitles('view',$id, (isset($Itemid) ? @$Itemid : null), $shLangName)); // V 1.2.4.q added forced language
else $title = sef_404::getContentTitles('view',$id,(isset($Itemid) ? @$Itemid : null), $shLangName);
shRemoveFromGETVarsList('id');
shRemoveFromGETVarsList('task');
if (!empty($cat))
shRemoveFromGETVarsList('cat');
}
break; */
case 'contShow':
default:
if (!empty($cat)) {
$categoryTitle = dp_sef_get_category_array( &$database, $cat, $option, $shLangName );
if ( !empty($categoryTitle) ) {
if (empty($title)) // there may already be component name in $title
$title = $categoryTitle;
else
$title = array_merge($title, $categoryTitle);
$title[] = "/";
}
}
if ( !empty($id) ) {
$sql = '
SELECT id, cat, title, name
FROM #__deeppockets
WHERE id = '.$id;
$database->setQuery($sql);
$database->loadObject( $contentTitle );
if ( $debug_plugin ) {
echo "contentTitle: ";print_r($contentTitle);echo "
";
}
}
if ( !empty($contentTitle) ) {
if (empty($cat) && !empty($contentTitle->cat)) {
$categoryTitle = dp_sef_get_category_array( &$database, $contentTitle->cat, $option, $shLangName );
if ( $categoryTitle ) {
if (empty($title)) // there may already be component name in $title
$title = $categoryTitle;
else
$title = array_merge($title, $categoryTitle);
}
}
if ( !empty($contentTitle->title)) {
$title[] = (SH404SEF_DP_INSERT_CONTENT_ID ? $id.$sefConfig->replacement:'').$contentTitle->title;
} elseif ( $contentTitle->name != '' ) {
$title[] = (SH404SEF_DP_INSERT_CONTENT_ID ? $id.$sefConfig->replacement:'').$contentTitle->name;
}
}
shRemoveFromGETVarsList('id');
shRemoveFromGETVarsList('task');
if (!empty($cat))
shRemoveFromGETVarsList('cat');
break;
}
if (empty($title)) {
$title[] = $shDPName;
$title[] = "/";
}
if ( $debug_plugin ) {
echo "title: ";print_r($title);echo "
";
}
shRemoveFromGETVarsList('option');
shRemoveFromGETVarsList('lang');
if (!empty($Itemid))
shRemoveFromGETVarsList('Itemid');
// optional removal of limit and limitstart
if (!empty($limit)) // use empty to test $limit as $limit is not allowed to be zero
shRemoveFromGETVarsList('limit');
if (isset($limitstart)) // use isset to test $limitstart, as it can be zero
shRemoveFromGETVarsList('limitstart');
// ------------------ standard plugin finalize function - don't change
if ($dosef){
$string = shFinalizePlugin( $string, $title, $shAppendString, $shItemidString,
(isset($limit) ? @$limit : null), (isset($limitstart) ? @$limitstart : null),
(isset($shLangName) ? @$shLangName : null));
}
// ------------------ standard plugin finalize function - don't change
?>