haha da scheint es doch schon was zu geben aber so ganz steige ich noch nicht durch
in contenido/templates/standard/header.html steht
Code: Alles auswählen
<!-- Main Menu Items -->
<div id="firstrow">
<table cellspacing="0" cellpadding="0" border="0">
<!-- BEGIN:BLOCK -->
<td><img id="{MIMGID}" src="images/header/{SIZE}/{IMAGE}" alt=""></td>
<td nowrap="nowrap" class="nav" background="images/bg_trans.gif" {OPTIONS}>{CAPTION}</td>
<!-- END:BLOCK -->
<td><img src="images/header/{SIZE}/border_light_dark.gif" alt=""></td>
<td width="100%" background="images/bg_trans.gif" bgcolor="#334f77" align="right" nowrap="nowrap">{MYCONTENIDO} {INFO} {HELP} <a class="main" href="{LOGOUT}" target="_top"><img src="images/but_logout.gif" border="0" alt="Logout" title="Logout"> </td>
</table>
</div>
{HELP}
eingebunden im header über
contenido/scripts/help.js.php
ist da was angedacht aber nicht implementiert oder wie darf ich das verstehen?
Code: Alles auswählen
<?php
/*****************************************
* File : $RCSfile: help.js.php,v $
* Project : Contenido
* Descr : Help System
* Modified : $Date: 2005/08/22 12:21:18 $
*
* © four for business AG, www.4fb.de
*
* $Id: help.js.php,v 1.3 2005/08/22 12:21:18 timo.hummel Exp $
******************************************/
include_once ('../includes/startup.php');
include_once ($cfg["path"]["contenido"].$cfg["path"]["includes"] . 'functions.i18n.php');
header("Content-Type: text/javascript");
page_open(array('sess' => 'Contenido_Session',
'auth' => 'Contenido_Challenge_Crypt_Auth',
'perm' => 'Contenido_Perm'));
i18nInit($cfg["path"]["contenido"].$cfg["path"]["locale"], $belang);
page_close();
$baseurl = $cfg["help_url"] . "front_content.php?version=".$cfg['version']."&help=";
?>
function callHelp (path)
{
f1 = window.open('<?php echo $baseurl; ?>' + path, 'contenido_help', 'height=500,width=600,resizable=yes,scrollbars=yes,location=no,menubar=no,status=no,toolbar=no');
f1.focus();
}
wenn man dort über popup eine seite einbinden könnte die wie die smybolhilfe aufgebaut ist, wäre das genial
any ideas???