ho fatto una manovra che non so quanto sia corretta ma per ora risolve allego tutti i passaggi
nella cartella
/propriosito.xxx/libraries/joomla/document/html/renderer/
ci sono i file richiamabili da jdoc
ho così creato un mio file title.php partendo dall'esempio di head.php
vi allego il risultato
<?php
/**
* @version $Id: title.php 11917 2009-05-29 19:37:05Z ian $
* @package Joomla.Framework
* @subpackage Document
* @copyright Copyright (C) 2005 - 2008 Open Source Matters. All rights reserved.
* @license GNU/GPL, see LICENSE.php
* Joomla! is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses.
* See COPYRIGHT.php for copyright notices and details.
*/
// Check to ensure this file is within the rest of the framework
defined('JPATH_BASE') or die();
/**
* JDocument page title render
*
*/
class JDocumentRendererTitle extends JDocumentRenderer
{
/**
* Renders the document head and returns the results as a string
*
* @access public
* @param string $name (unused)
* @param array $params Associative array of values
* @return string The output of the script
*/
function render( $title = null, $params = array(), $content = null )
{
ob_start();
echo $this->fetchTitle($this->_doc);
$contents = ob_get_contents();
ob_end_clean();
return $contents;
}
/**
* Generates the head html and return the results as a string
*
* @access public
* @return string
*/
function fetchTitle(&$document)
{
// get line endings
$lnEnd = $document->_getLineEnd();
$tab = $document->_getTab();
$tagEnd = ' />';
$strHtml = '';
$strHtml .= $tab.''.htmlspecialchars($document->getTitle()).''.$lnEnd;
return $strHtml;
}
}
così dall'index.php mi basterà richiamare
jdoc include type="title"
e il gioco è fatto
spero possa servire a qualcun'altro!
grazie comunque dell'aiuto!!!