2006-12-11 00:44:18 +01:00
< ? php
2008-03-21 21:11:59 +01:00
/**
2011-08-31 09:50:28 +02:00
* EGroupware idots template set
2008-08-06 09:33:36 +02:00
*
2008-03-21 21:11:59 +01:00
* @ link http :// www . egroupware . org
* @ author Ralf Becker < RalfBecker - AT - outdoor - training . de > rewrite in 12 / 2006
* @ author Pim Snel < pim @ lingewoud . nl > author of the idots template set
* @ license http :// opensource . org / licenses / gpl - license . php GPL - GNU General Public License
* @ package api
* @ subpackage framework
* @ access public
* @ version $Id $
*/
2007-01-09 23:44:30 +01:00
2008-03-21 21:11:59 +01:00
/**
* eGW idots template
2008-08-06 09:33:36 +02:00
*
2008-03-21 21:11:59 +01:00
* The idots_framework class draws the default idots template . It ' s a phplib template based template - set .
2008-08-06 09:33:36 +02:00
*
2008-03-21 21:11:59 +01:00
* Other phplib template based template - sets should extend ( not copy ! ) this class and reimplement methods they which to change .
*/
class idots_framework extends egw_framework
{
/**
* HTML of the sidebox menu , get ' s collected here by calls to $this -> sidebox
*
* @ var string
*/
var $sidebox_content = '' ;
/**
* Instance of the phplib Template class for the API ' s template dir ( EGW_TEMPLATE_DIR )
*
* @ var Template
*/
var $tpl ;
/**
* Instance of the Savant template class
*
* @ var tplsavant2
*/
var $tplsav2 ;
2008-08-06 09:33:36 +02:00
2008-03-21 21:11:59 +01:00
/**
2008-08-06 09:33:36 +02:00
* Contains array with linked icons in the topmenu
*
2008-03-21 21:11:59 +01:00
* @ var mixed
* @ access public
*/
var $topmenu_icon_arr = array ();
2008-08-06 09:33:36 +02:00
2009-12-17 19:07:59 +01:00
/**
* Contains array of information for additional topmenu items added
* by hooks
*/
private static $hook_items = array ();
2008-03-21 21:11:59 +01:00
/**
* Constructor
*
* @ param string $template = 'idots' name of the template
* @ return idots_framework
*/
2009-04-18 19:34:40 +02:00
function __construct ( $template = 'idots' )
2008-03-21 21:11:59 +01:00
{
2011-08-31 09:50:28 +02:00
parent :: __construct ( $template ); // call the constructor of the extended class
2008-08-06 09:33:36 +02:00
2012-05-10 10:43:40 +02:00
// js stuff is not needed by login page and gives errors
$GLOBALS [ 'egw_info' ][ 'flags' ][ 'js_link_registry' ] = $GLOBALS [ 'egw_info' ][ 'flags' ][ 'currentapp' ] !== 'login' ;
2012-03-08 15:05:00 +01:00
2009-06-08 18:21:14 +02:00
$this -> tplsav2 = new tplsavant2 ();
2008-03-21 21:11:59 +01:00
$this -> tplsav2 -> set_tpl_path ( EGW_SERVER_ROOT . SEP . 'phpgwapi' . SEP . 'templates' . SEP . 'idots' );
}
2008-08-06 09:33:36 +02:00
2009-04-18 19:34:40 +02:00
/**
* @ deprecated use __construct ()
*/
function idots_framework ( $template = 'idots' )
{
self :: __construct ( $template );
}
2008-03-21 21:11:59 +01:00
/**
* Returns the html - header incl . the opening body tag
*
* @ return string with html
*/
function header ()
{
2009-05-01 09:55:18 +02:00
// make sure header is output only once
if ( self :: $header_done ) return '' ;
self :: $header_done = true ;
2011-08-23 18:15:54 +02:00
2008-03-21 21:11:59 +01:00
// add a content-type header to overwrite an existing default charset in apache (AddDefaultCharset directiv)
2011-06-02 13:13:41 +02:00
header ( 'Content-type: text/html; charset=' . translation :: charset ());
2008-08-06 09:33:36 +02:00
2008-03-21 21:11:59 +01:00
// catch error echo'ed before the header, ob_start'ed in the header.inc.php
$content = ob_get_contents ();
ob_end_clean ();
2008-08-06 09:33:36 +02:00
2008-03-21 21:11:59 +01:00
// the instanciation of the template has to be here and not in the constructor,
// as the old Template class has problems if restored from the session (php-restore)
2011-08-23 16:29:56 +02:00
if ( ! is_object ( $this -> tpl )) ;
$this -> tpl = new Template ( EGW_TEMPLATE_DIR , 'keep' );
2008-03-21 21:11:59 +01:00
$this -> tpl -> set_file ( array ( '_head' => 'head.tpl' ));
$this -> tpl -> set_block ( '_head' , 'head' );
2008-08-06 09:33:36 +02:00
2011-07-06 09:19:54 +02:00
if ( html :: $ua_mobile )
{
self :: $css_include_files [] = '/phpgwapi/templates/idots/mobile.css' ;
2011-07-10 14:05:20 +02:00
// hide location bar
egw_framework :: set_onload ( 'window.setTimeout(function(){window.scrollTo(0, 1);}, 100);' );
2011-07-06 09:19:54 +02:00
}
2008-03-21 21:11:59 +01:00
$this -> tpl -> set_var ( $this -> _get_header ());
2008-08-06 09:33:36 +02:00
2008-03-21 21:11:59 +01:00
$content .= $this -> tpl -> fp ( 'out' , 'head' );
2008-08-06 09:33:36 +02:00
$this -> sidebox_content = '' ; // need to be emptied here, as the object get's stored in the session
2008-03-21 21:11:59 +01:00
return $content ;
}
2008-08-06 09:33:36 +02:00
2008-03-21 21:11:59 +01:00
/**
* Returns the html from the body - tag til the main application area ( incl . opening div tag )
*
* @ return string with html
*/
function navbar ()
{
2009-05-01 09:55:18 +02:00
if ( self :: $navbar_done ) return '' ;
self :: $navbar_done = true ;
2008-08-06 09:33:36 +02:00
2008-03-21 21:11:59 +01:00
// the navbar
2010-10-18 12:46:47 +02:00
if ( ! is_object ( $this -> tpl )) $this -> tpl = new Template ( EGW_TEMPLATE_DIR , 'keep' );
2008-03-21 21:11:59 +01:00
$this -> tpl -> set_file ( array ( 'navbar' => 'navbar.tpl' ));
2008-08-06 09:33:36 +02:00
2008-03-21 21:11:59 +01:00
$this -> tpl -> set_block ( 'navbar' , 'extra_blocks_header' , 'extra_block_header' );
$this -> tpl -> set_block ( 'navbar' , 'extra_block_row' , 'extra_block_row' );
$this -> tpl -> set_block ( 'navbar' , 'extra_block_row_raw' , 'extra_block_row_raw' );
$this -> tpl -> set_block ( 'navbar' , 'extra_block_row_no_link' , 'extra_block_row_no_link' );
$this -> tpl -> set_block ( 'navbar' , 'extra_block_spacer' , 'extra_block_spacer' );
$this -> tpl -> set_block ( 'navbar' , 'extra_blocks_footer' , 'extra_blocks_footer' );
$this -> tpl -> set_block ( 'navbar' , 'sidebox_hide_header' , 'sidebox_hide_header' );
$this -> tpl -> set_block ( 'navbar' , 'sidebox_hide_footer' , 'sidebox_hide_footer' );
$this -> tpl -> set_block ( 'navbar' , 'appbox' , 'appbox' );
$this -> tpl -> set_block ( 'navbar' , 'navbar_footer' , 'navbar_footer' );
2008-08-06 09:33:36 +02:00
2008-03-21 21:11:59 +01:00
$this -> tpl -> set_block ( 'navbar' , 'upper_tab_block' , 'upper_tabs' );
$this -> tpl -> set_block ( 'navbar' , 'app_icon_block' , 'app_icons' );
$this -> tpl -> set_block ( 'navbar' , 'app_title_block' , 'app_titles' );
$this -> tpl -> set_block ( 'navbar' , 'app_extra_block' , 'app_extra_icons' );
$this -> tpl -> set_block ( 'navbar' , 'app_extra_icons_div' );
$this -> tpl -> set_block ( 'navbar' , 'app_extra_icons_icon' );
2008-08-06 09:33:36 +02:00
2011-07-09 18:35:18 +02:00
if ( html :: $ua_mobile ) // replace whole navbar with just the extra apps icon
{
$this -> tpl -> set_block ( 'navbar' , 'navbar' , 'mobil_not_needed' );
$this -> tpl -> set_block ( 'app_extra_icons_icon' , 'extra_icons_show' );
$this -> tpl -> set_var ( 'mobil_not_needed' , $this -> tpl -> get_var ( 'extra_icons_show' ));
}
2008-03-21 21:11:59 +01:00
$this -> tpl -> set_block ( 'navbar' , 'navbar_header' , 'navbar_header' );
2008-08-06 09:33:36 +02:00
2008-03-21 21:11:59 +01:00
$apps = $this -> _get_navbar_apps ();
$vars = $this -> _get_navbar ( $apps );
2008-08-06 09:33:36 +02:00
2011-06-02 13:13:41 +02:00
// add link registry to non-popup windows
if ( ! isset ( $GLOBALS [ 'egw_info' ][ 'flags' ][ 'js_link_registry' ]))
{
2011-08-26 18:27:57 +02:00
self :: validate_file ( '/phpgwapi/config.php' );
2011-08-31 00:19:38 +02:00
self :: validate_file ( '/phpgwapi/images.php' , array ( 'template' => $GLOBALS [ 'egw_info' ][ 'user' ][ 'preferences' ][ 'common' ][ 'template_set' ]));
2011-08-23 16:29:56 +02:00
$content .= ' < script type = " text/javascript " >
egw . set_preferences ( '.json_encode($GLOBALS[' egw_info '][' user '][' preferences '][' common ']).' , " common " );
2011-08-31 14:17:34 +02:00
egw . set_user ( '.$GLOBALS[' egw ']->accounts->json($GLOBALS[' egw_info '][' user '][' account_id ']).' );
2011-08-23 16:29:56 +02:00
</ script > ' . " \n " ;
2011-06-02 13:13:41 +02:00
}
2011-07-09 18:35:18 +02:00
if ( $GLOBALS [ 'egw_info' ][ 'user' ][ 'preferences' ][ 'common' ][ 'show_general_menu' ] != 'sidebox' && ! html :: $ua_mobile )
2008-08-06 09:33:36 +02:00
{
2011-06-02 13:13:41 +02:00
$content .= $this -> topmenu ( $vars , $apps );
2008-08-06 09:33:36 +02:00
$vars [ 'current_users' ] = $vars [ 'quick_add' ] = $vars [ 'user_info' ] = '' ;
}
2008-03-21 21:11:59 +01:00
$this -> tpl -> set_var ( $vars );
$content .= $this -> tpl -> fp ( 'out' , 'navbar_header' );
2008-08-06 09:33:36 +02:00
2008-03-21 21:11:59 +01:00
// general (app-unspecific) sidebox menu
if ( $GLOBALS [ 'egw_info' ][ 'user' ][ 'preferences' ][ 'common' ][ 'show_general_menu' ] == 'sidebox' )
//if($GLOBALS['egw_info']['user']['preferences']['common']['show_general_sideboxmenu']!='no')
{
2007-01-09 23:44:30 +01:00
$menu_title = lang ( 'General Menu' );
2008-08-06 09:33:36 +02:00
2007-01-09 23:44:30 +01:00
$file [ 'Home' ] = $apps [ 'home' ][ 'url' ];
if ( $GLOBALS [ 'egw_info' ][ 'user' ][ 'apps' ][ 'preferences' ])
{
2008-03-21 21:11:59 +01:00
$file [ 'Preferences' ] = $apps [ 'preferences' ][ 'url' ];
}
if ( $GLOBALS [ 'egw_info' ][ 'user' ][ 'apps' ][ 'manual' ] && $apps [ 'manual' ])
{
$file [ 'manual' ] = array (
'text' => 'manual' ,
'no_lang' => false ,
'target' => $apps [ 'manual' ][ 'target' ],
'link' => $apps [ 'manual' ][ 'url' ]
);
2007-01-09 23:44:30 +01:00
}
$file += array (
2008-03-21 21:11:59 +01:00
$GLOBALS [ 'egw_info' ][ 'user' ][ 'userid' ] != 'anonymous' ? 'Logout' : 'Login' => $apps [ 'logout' ][ 'url' ]
2007-01-09 23:44:30 +01:00
);
$this -> sidebox ( '' , $menu_title , $file );
2008-03-21 21:11:59 +01:00
}
2008-08-06 09:33:36 +02:00
2009-04-18 19:34:40 +02:00
// allow other apps to hook into sidebox menu of an app, hook-name: sidebox_$app
$GLOBALS [ 'egw' ] -> hooks -> process ( 'sidebox_' . $GLOBALS [ 'egw_info' ][ 'flags' ][ 'currentapp' ],
array ( $GLOBALS [ 'egw_info' ][ 'flags' ][ 'currentapp' ]), true ); // true = call independent of app-permissions
// calling the old hook
2008-03-21 21:11:59 +01:00
$GLOBALS [ 'egw' ] -> hooks -> single ( 'sidebox_menu' , $GLOBALS [ 'egw_info' ][ 'flags' ][ 'currentapp' ]);
2008-08-06 09:33:36 +02:00
2011-02-03 17:30:40 +01:00
// allow other apps to hook into sidebox menu of every app: sidebox_all
2011-06-02 13:13:41 +02:00
$GLOBALS [ 'egw' ] -> hooks -> process ( 'sidebox_all' , array ( $GLOBALS [ 'egw_info' ][ 'flags' ][ 'currentapp' ]), true );
2011-02-03 17:30:40 +01:00
2008-03-21 21:11:59 +01:00
if ( $this -> sidebox_content )
{
2011-07-09 18:35:18 +02:00
if ( $GLOBALS [ 'egw_info' ][ 'user' ][ 'preferences' ][ 'common' ][ 'auto_hide_sidebox' ] || html :: $ua_mobile )
2007-01-09 23:44:30 +01:00
{
2008-03-21 21:11:59 +01:00
$this -> tpl -> set_var ( 'lang_show_menu' , lang ( 'show menu' ));
$content .= $this -> tpl -> parse ( 'out' , 'sidebox_hide_header' );
2008-08-06 09:33:36 +02:00
2008-03-21 21:11:59 +01:00
$content .= $this -> sidebox_content ; // content from calls to $this->sidebox
2008-08-06 09:33:36 +02:00
2008-03-21 21:11:59 +01:00
$content .= $this -> tpl -> parse ( 'out' , 'sidebox_hide_footer' );
2008-08-06 09:33:36 +02:00
2009-04-18 19:34:40 +02:00
$var [ 'sideboxcolstart' ] = '' ;
2008-08-06 09:33:36 +02:00
2008-03-21 21:11:59 +01:00
$this -> tpl -> set_var ( $var );
$content .= $this -> tpl -> parse ( 'out' , 'appbox' );
$var [ 'remove_padding' ] = 'style="padding-left:0px;"' ;
$var [ 'sideboxcolend' ] = '' ;
2007-01-09 23:44:30 +01:00
}
else
{
2008-03-21 21:11:59 +01:00
$prefs = array ();
2008-08-06 09:33:36 +02:00
2009-11-18 21:00:26 +01:00
if ( isset ( $GLOBALS [ 'egw_info' ][ 'user' ][ 'preferences' ][ $GLOBALS [ 'egw_info' ][ 'flags' ][ 'currentapp' ]][ 'idotssideboxwidth' ]))
2008-03-21 21:11:59 +01:00
{
2009-11-18 21:00:26 +01:00
$sideboxwidth = $GLOBALS [ 'egw_info' ][ 'user' ][ 'preferences' ][ $GLOBALS [ 'egw_info' ][ 'flags' ][ 'currentapp' ]][ 'idotssideboxwidth' ];
2008-03-21 21:11:59 +01:00
}
if (( int ) $sideboxwidth < 1 )
{
$sideboxwidth = 203 ;
}
2008-08-06 09:33:36 +02:00
2008-03-21 21:11:59 +01:00
$var [ 'menu_link' ] = '' ;
2008-08-06 09:33:36 +02:00
2008-03-21 21:11:59 +01:00
$var [ 'sideboxcolstart' ] = '<td id="tdSidebox" valign="top"><div id="thesideboxcolumn" style="width:' . $sideboxwidth . 'px">' ;
$var [ 'sideboxcolstart' ] .= '<div id="sideresize"></div>' ;
$var [ 'remove_padding' ] = '' ;
$this -> tpl -> set_var ( $var );
$content .= $this -> tpl -> parse ( 'out' , 'appbox' );
2008-08-06 09:33:36 +02:00
2008-03-21 21:11:59 +01:00
$content .= $this -> sidebox_content ;
2008-08-06 09:33:36 +02:00
2008-03-21 21:11:59 +01:00
$var [ 'sideboxcolend' ] = '</div></td>' ;
2008-08-06 09:33:36 +02:00
2008-03-21 21:11:59 +01:00
$this -> tplsav2 -> assign ( 'sideboxwidth' , $sideboxwidth );
2008-08-06 09:33:36 +02:00
2008-03-21 21:11:59 +01:00
$GLOBALS [ 'egw_info' ][ 'flags' ][ 'need_footer' ] .= $this -> tplsav2 -> fetch ( 'sidebox_dhtml.tpl.php' );
2007-01-09 23:44:30 +01:00
}
2008-03-21 21:11:59 +01:00
}
else
{
2008-08-06 09:33:36 +02:00
$var [ 'sideboxcolend' ] = '' ;
2008-03-21 21:11:59 +01:00
}
2008-08-06 09:33:36 +02:00
2008-03-21 21:11:59 +01:00
$this -> tpl -> set_var ( $var );
$content .= $this -> tpl -> parse ( 'out' , 'navbar_footer' );
2008-08-06 09:33:36 +02:00
2008-03-21 21:11:59 +01:00
// depricated (!) application header, if not disabled
// ToDo: check if it can be removed
if ( !@ $GLOBALS [ 'egw_info' ][ 'flags' ][ 'noappheader' ] && @ isset ( $_GET [ 'menuaction' ]))
{
2006-12-11 00:44:18 +01:00
list ( $app , $class , $method ) = explode ( '.' , $_GET [ 'menuaction' ]);
if ( is_array ( $GLOBALS [ $class ] -> public_functions ) && $GLOBALS [ $class ] -> public_functions [ 'header' ])
{
2008-03-21 21:11:59 +01:00
ob_start ();
$GLOBALS [ $class ] -> header ();
$content .= ob_get_contents ();
ob_end_clean ();
2006-12-11 00:44:18 +01:00
}
2008-03-21 21:11:59 +01:00
}
2008-08-06 09:33:36 +02:00
2008-03-21 21:11:59 +01:00
// hook after navbar
2010-06-07 19:31:43 +02:00
$content .= $this -> _get_after_navbar ();
2008-08-06 09:33:36 +02:00
2010-10-18 12:46:47 +02:00
// make sure header is output (not explicitly calling header, allows to put validate calls eg. in sidebox)
if ( ! self :: $header_done ) $content = $this -> header () . $content ;
2010-12-19 22:17:37 +01:00
2008-03-21 21:11:59 +01:00
return $content ;
}
2008-08-06 09:33:36 +02:00
2012-03-07 09:45:57 +01:00
/**
* Return true if we are rendering the top - level EGroupware window
*
* A top - level EGroupware window has a navbar : eg . no popup and for a framed template ( jdots ) only frameset itself
*
* @ return boolean $consider_navbar_not_yet_called_as_true = true
* @ return boolean
*/
public function isTop ( $consider_navbar_not_yet_called_as_true = true )
{
return self :: $navbar_done || $consider_navbar_not_yet_called_as_true ||
isset ( $GLOBALS [ 'egw_info' ][ 'flags' ][ 'nonavbar' ]) && ! $GLOBALS [ 'egw_info' ][ 'flags' ][ 'nonavbar' ];
}
2008-03-21 21:11:59 +01:00
/**
* displays a login screen
*
* @ param string $extra_vars for login url
*/
function login_screen ( $extra_vars )
{
2009-06-08 18:21:14 +02:00
$tmpl = new Template ( $GLOBALS [ 'egw_info' ][ 'server' ][ 'template_dir' ]);
2008-08-06 09:33:36 +02:00
2008-03-21 21:11:59 +01:00
$tmpl -> set_file ( array ( 'login_form' => 'login.tpl' ));
2008-08-06 09:33:36 +02:00
2008-03-21 21:11:59 +01:00
$tmpl -> set_var ( 'lang_message' , $GLOBALS [ 'loginscreenmessage' ]);
2008-08-06 09:33:36 +02:00
2008-03-21 21:11:59 +01:00
$last_loginid = $_COOKIE [ 'last_loginid' ];
2008-08-06 09:33:36 +02:00
2008-03-21 21:11:59 +01:00
if ( $GLOBALS [ 'egw_info' ][ 'server' ][ 'show_domain_selectbox' ])
{
2006-12-25 12:05:44 +01:00
foreach ( $GLOBALS [ 'egw_domain' ] as $domain => $data )
{
2008-03-21 21:11:59 +01:00
$domains [ $domain ] = $domain ;
2006-12-25 12:05:44 +01:00
}
$tmpl -> set_var ( array (
2008-03-21 21:11:59 +01:00
'lang_domain' => lang ( 'domain' ),
2012-01-26 12:57:17 +01:00
'select_domain' => html :: select ( 'logindomain' , $_COOKIE [ 'last_domain' ], $domains , true , 'tabindex="2"' ),
2006-12-25 12:05:44 +01:00
));
2008-03-21 21:11:59 +01:00
}
else
{
2006-12-25 12:05:44 +01:00
/* trick to make domain section disapear */
2006-12-27 16:37:37 +01:00
$tmpl -> set_block ( 'login_form' , 'domain_selection' );
2008-08-06 09:33:36 +02:00
$tmpl -> set_var ( 'domain_selection' , $GLOBALS [ 'egw_info' ][ 'user' ][ 'domain' ] ?
2008-03-21 21:11:59 +01:00
html :: input_hidden ( 'logindomain' , $GLOBALS [ 'egw_info' ][ 'user' ][ 'domain' ]) : '' );
2008-08-06 09:33:36 +02:00
2006-12-25 12:05:44 +01:00
if ( $last_loginid !== '' )
{
2008-03-21 21:11:59 +01:00
reset ( $GLOBALS [ 'egw_domain' ]);
list ( $default_domain ) = each ( $GLOBALS [ 'egw_domain' ]);
2008-08-06 09:33:36 +02:00
2008-03-21 21:11:59 +01:00
if ( $_COOKIE [ 'last_domain' ] != $default_domain && ! empty ( $_COOKIE [ 'last_domain' ]))
{
$last_loginid .= '@' . $_COOKIE [ 'last_domain' ];
}
2006-12-25 12:05:44 +01:00
}
2008-03-21 21:11:59 +01:00
}
2008-08-06 09:33:36 +02:00
2008-03-21 21:11:59 +01:00
$config_reg = config :: read ( 'registration' );
2008-08-06 09:33:36 +02:00
2011-01-25 18:30:47 +01:00
if ( $config_reg [ 'enable_registration' ])
2008-03-21 21:11:59 +01:00
{
2011-01-25 18:30:47 +01:00
if ( $config_reg [ 'register_link' ])
2006-12-25 12:05:44 +01:00
{
2008-03-21 21:11:59 +01:00
$reg_link = ' <a href="' . $GLOBALS [ 'egw' ] -> link ( '/registration/index.php' , 'lang_code=' . $_GET [ 'lang' ]) . '">' . lang ( 'Not a user yet? Register now' ) . '</a><br/>' ;
2006-12-25 12:05:44 +01:00
}
2011-01-25 18:30:47 +01:00
if ( $config_reg [ 'lostpassword_link' ])
2006-12-25 12:05:44 +01:00
{
2011-01-25 18:30:47 +01:00
$lostpw_link = ' <a href="' . $GLOBALS [ 'egw' ] -> link ( '/registration/index.php' , 'menuaction=registration.registration_ui.lost_password&lang_code=' . $_GET [ 'lang' ]) . '">' . lang ( 'Lost password' ) . '</a><br/>' ;
2006-12-25 12:05:44 +01:00
}
2011-01-25 18:30:47 +01:00
if ( $config_reg [ 'lostid_link' ])
2006-12-25 12:05:44 +01:00
{
2011-01-25 18:30:47 +01:00
$lostid_link = ' <a href="' . $GLOBALS [ 'egw' ] -> link ( '/registration/index.php' , 'menuaction=registration.registration_ui.lost_username&lang_code=' . $_GET [ 'lang' ]) . '">' . lang ( 'Lost Login Id' ) . '</a><br/>' ;
2006-12-25 12:05:44 +01:00
}
2008-08-06 09:33:36 +02:00
2006-12-25 12:05:44 +01:00
/* if at least one option of "registration" is activated display the registration section */
2011-01-25 18:30:47 +01:00
if ( $config_reg [ 'register_link' ] || $config_reg [ 'lostpassword_link' ] || $config_reg [ 'lostid_link' ] )
2006-12-25 12:05:44 +01:00
{
2008-03-21 21:11:59 +01:00
$tmpl -> set_var ( array (
'register_link' => $reg_link ,
'lostpassword_link' => $lostpw_link ,
'lostid_link' => $lostid_link ,
));
2006-12-25 12:05:44 +01:00
}
else
{
2008-03-21 21:11:59 +01:00
/* trick to make registration section disapear */
$tmpl -> set_block ( 'login_form' , 'registration' );
$tmpl -> set_var ( 'registration' , '' );
2006-12-25 12:05:44 +01:00
}
2008-03-21 21:11:59 +01:00
}
2008-08-06 09:33:36 +02:00
2008-03-21 21:11:59 +01:00
$tmpl -> set_var ( 'login_url' , $GLOBALS [ 'egw_info' ][ 'server' ][ 'webserver_url' ] . '/login.php' . $extra_vars );
$tmpl -> set_var ( 'version' , $GLOBALS [ 'egw_info' ][ 'server' ][ 'versions' ][ 'phpgwapi' ]);
$tmpl -> set_var ( 'cd' , check_logoutcode ( $_GET [ 'cd' ]));
$tmpl -> set_var ( 'cookie' , $last_loginid );
2008-08-06 09:33:36 +02:00
2008-03-21 21:11:59 +01:00
$tmpl -> set_var ( 'lang_username' , lang ( 'username' ));
$tmpl -> set_var ( 'lang_password' , lang ( 'password' ));
$tmpl -> set_var ( 'lang_login' , lang ( 'login' ));
2008-08-06 09:33:36 +02:00
2008-03-21 21:11:59 +01:00
$tmpl -> set_var ( 'website_title' , $GLOBALS [ 'egw_info' ][ 'server' ][ 'site_title' ]);
$tmpl -> set_var ( 'template_set' , $this -> template );
2008-08-06 09:33:36 +02:00
2013-06-24 09:45:11 +02:00
if ( substr ( $GLOBALS [ 'egw_info' ][ 'server' ][ 'login_logo_file' ], 0 , 4 ) == 'http' ||
strpos ( $GLOBALS [ 'egw_info' ][ 'server' ][ 'login_logo_file' ], '//' ) !== false )
2008-03-21 21:11:59 +01:00
{
2006-12-25 12:05:44 +01:00
$var [ 'logo_file' ] = $GLOBALS [ 'egw_info' ][ 'server' ][ 'login_logo_file' ];
2008-03-21 21:11:59 +01:00
}
else
{
2009-11-18 21:00:26 +01:00
$var [ 'logo_file' ] = common :: image ( 'phpgwapi' , $GLOBALS [ 'egw_info' ][ 'server' ][ 'login_logo_file' ] ? $GLOBALS [ 'egw_info' ][ 'server' ][ 'login_logo_file' ] : 'logo' );
2008-03-21 21:11:59 +01:00
}
$var [ 'logo_url' ] = $GLOBALS [ 'egw_info' ][ 'server' ][ 'login_logo_url' ] ? $GLOBALS [ 'egw_info' ][ 'server' ][ 'login_logo_url' ] : 'http://www.eGroupWare.org' ;
if ( substr ( $var [ 'logo_url' ], 0 , 4 ) != 'http' )
{
2006-12-25 12:05:44 +01:00
$var [ 'logo_url' ] = 'http://' . $var [ 'logo_url' ];
2008-03-21 21:11:59 +01:00
}
$var [ 'logo_title' ] = $GLOBALS [ 'egw_info' ][ 'server' ][ 'login_logo_title' ] ? $GLOBALS [ 'egw_info' ][ 'server' ][ 'login_logo_title' ] : 'www.eGroupWare.org' ;
$tmpl -> set_var ( $var );
2008-08-06 09:33:36 +02:00
2008-03-21 21:11:59 +01:00
/* language section if activated in site config */
if ( @ $GLOBALS [ 'egw_info' ][ 'server' ][ 'login_show_language_selection' ])
{
2006-12-25 12:05:44 +01:00
$tmpl -> set_var ( array (
2008-03-21 21:11:59 +01:00
'lang_language' => lang ( 'Language' ),
'select_language' => html :: select ( 'lang' , $GLOBALS [ 'egw_info' ][ 'user' ][ 'preferences' ][ 'common' ][ 'lang' ],
2012-01-26 12:57:17 +01:00
translation :: get_installed_langs (), true , 'tabindex="1"' ),
2006-12-25 12:05:44 +01:00
));
2008-03-21 21:11:59 +01:00
}
else
{
2006-12-25 12:05:44 +01:00
$tmpl -> set_block ( 'login_form' , 'language_select' );
$tmpl -> set_var ( 'language_select' , '' );
2008-03-21 21:11:59 +01:00
}
2008-08-06 09:33:36 +02:00
2008-03-21 21:11:59 +01:00
/******************************************************** \
* Check if authentification via cookies is allowed *
* and place a time selectbox , how long cookie is valid *
\ ********************************************************/
2008-08-06 09:33:36 +02:00
2008-03-21 21:11:59 +01:00
if ( $GLOBALS [ 'egw_info' ][ 'server' ][ 'allow_cookie_auth' ])
{
2006-12-25 12:05:44 +01:00
$tmpl -> set_block ( 'login_form' , 'remember_me_selection' );
$tmpl -> set_var ( 'lang_remember_me' , lang ( 'Remember me' ));
2010-12-19 22:17:37 +01:00
$tmpl -> set_var ( 'select_remember_me' , html :: select ( 'remember_me' , '' , array (
'' => lang ( 'not' ),
2008-03-21 21:11:59 +01:00
'1hour' => lang ( '1 Hour' ),
'1day' => lang ( '1 Day' ),
'1week' => lang ( '1 Week' ),
'1month' => lang ( '1 Month' ),
'forever' => lang ( 'Forever' ),
2012-01-26 12:57:17 +01:00
), true , 'tabindex="3"' ));
2008-03-21 21:11:59 +01:00
}
else
{
2006-12-25 12:05:44 +01:00
/* trick to make remember_me section disapear */
$tmpl -> set_block ( 'login_form' , 'remember_me_selection' );
$tmpl -> set_var ( 'remember_me_selection' , '' );
2008-03-21 21:11:59 +01:00
}
$tmpl -> set_var ( 'autocomplete' , ( $GLOBALS [ 'egw_info' ][ 'server' ][ 'autocomplete_login' ] ? 'autocomplete="off"' : '' ));
2008-08-06 09:33:36 +02:00
2008-03-21 21:11:59 +01:00
$GLOBALS [ 'egw' ] -> js -> set_onload ( 'document.login_form.login.focus();' );
2008-08-06 09:33:36 +02:00
2008-03-21 21:11:59 +01:00
$this -> render ( $tmpl -> fp ( 'loginout' , 'login_form' ), false , false );
}
2008-08-06 09:33:36 +02:00
2008-03-21 21:11:59 +01:00
/**
* displays a login denied message
*/
function denylogin_screen ()
{
2009-06-08 18:21:14 +02:00
$tmpl = new Template ( $GLOBALS [ 'egw_info' ][ 'server' ][ 'template_dir' ]);
2008-08-06 09:33:36 +02:00
2008-03-21 21:11:59 +01:00
$tmpl -> set_file ( array (
2006-12-25 12:05:44 +01:00
'login_form' => 'login_denylogin.tpl'
2008-03-21 21:11:59 +01:00
));
2008-08-06 09:33:36 +02:00
2008-03-21 21:11:59 +01:00
$tmpl -> set_var ( array (
2006-12-25 12:05:44 +01:00
'template_set' => 'default' ,
'deny_msg' => lang ( 'Oops! You caught us in the middle of system maintainance.' ) .
2007-01-09 23:44:30 +01:00
'<br />' . lang ( 'Please, check back with us shortly.' ),
2008-03-21 21:11:59 +01:00
));
$this -> render ( $tmpl -> fp ( 'loginout' , 'login_form' ), false , false );
2008-08-06 09:33:36 +02:00
}
2008-03-21 21:11:59 +01:00
/**
* Get navbar as array to eg . set as vars for a template ( from idots ' navbar . inc . php )
2008-08-06 09:33:36 +02:00
*
2008-03-21 21:11:59 +01:00
* Reimplemented so set the vars for the navbar itself ( uses $this -> tpl and the blocks a and b )
*
* @ internal PHP5 protected
* @ param array $apps navbar apps from _get_navbar_apps
* @ return array
*/
function _get_navbar ( $apps )
{
$var = parent :: _get_navbar ( $apps );
2008-08-06 09:33:36 +02:00
2011-07-06 09:19:54 +02:00
if ( $GLOBALS [ 'egw_info' ][ 'user' ][ 'preferences' ][ 'common' ][ 'click_or_onmouseover' ] == 'onmouseover' && ! html :: $ua_mobile )
2008-03-21 21:11:59 +01:00
{
2006-12-11 00:44:18 +01:00
$var [ 'show_menu_event' ] = 'onMouseOver' ;
2008-03-21 21:11:59 +01:00
}
else
{
2006-12-11 00:44:18 +01:00
$var [ 'show_menu_event' ] = 'onClick' ;
2008-03-21 21:11:59 +01:00
}
2008-08-06 09:33:36 +02:00
2008-03-21 21:11:59 +01:00
if ( $GLOBALS [ 'egw_info' ][ 'user' ][ 'userid' ] == 'anonymous' )
{
$config_reg = config :: read ( 'registration' );
2008-08-06 09:33:36 +02:00
2006-12-11 00:44:18 +01:00
$this -> tpl -> set_var ( array (
2008-03-21 21:11:59 +01:00
'url' => $GLOBALS [ 'egw' ] -> link ( '/logout.php' ),
'title' => lang ( 'Login' ),
2006-12-11 00:44:18 +01:00
));
$this -> tpl -> fp ( 'upper_tabs' , 'upper_tab_block' );
if ( $config_reg [ enable_registration ] == 'True' && $config_reg [ register_link ] == 'True' )
{
2008-03-21 21:11:59 +01:00
$this -> tpl -> set_var ( array (
'url' => $GLOBALS [ 'egw' ] -> link ( '/registration/index.php' ),
'title' => lang ( 'Register' ),
));
2006-12-11 00:44:18 +01:00
}
2008-03-21 21:11:59 +01:00
}
2010-06-10 17:37:47 +02:00
else
{
$this -> tpl -> set_var ( 'upper_tabs' , '' );
}
2008-08-06 09:33:36 +02:00
2011-07-10 14:05:20 +02:00
if ( html :: $ua_mobile )
{
$max_icons = 0 ;
$this -> tpl -> set_var ( 'app_icons' , '' );
}
elseif ( ! ( $max_icons = $GLOBALS [ 'egw_info' ][ 'user' ][ 'preferences' ][ 'common' ][ 'max_icons' ]))
2008-03-21 21:11:59 +01:00
{
2006-12-11 00:44:18 +01:00
$max_icons = 30 ;
2008-03-21 21:11:59 +01:00
}
2008-08-06 09:33:36 +02:00
2011-07-10 14:05:20 +02:00
if ( $GLOBALS [ 'egw_info' ][ 'user' ][ 'preferences' ][ 'common' ][ 'start_and_logout_icons' ] == 'no' && ! html :: $ua_mobile )
2008-03-21 21:11:59 +01:00
{
2006-12-11 00:44:18 +01:00
$tdwidth = 100 / $max_icons ;
2008-03-21 21:11:59 +01:00
}
else
{
2006-12-11 00:44:18 +01:00
$tdwidth = 100 / ( $max_icons + 1 ); // +1 for logout
2008-03-21 21:11:59 +01:00
}
$this -> tpl -> set_var ( 'tdwidth' , round ( $tdwidth ));
2008-08-06 09:33:36 +02:00
2008-03-21 21:11:59 +01:00
// not shown in the navbar
foreach ( $apps as $app => $app_data )
{
2007-01-17 18:51:47 +01:00
if ( $app != 'preferences' && $app != 'about' && $app != 'logout' && $app != 'manual' &&
2011-07-06 09:19:54 +02:00
( $app != 'home' || $GLOBALS [ 'egw_info' ][ 'user' ][ 'preferences' ][ 'common' ][ 'start_and_logout_icons' ] != 'no' ) ||
html :: $ua_mobile && in_array ( $app , array ( 'preferences' , 'logout' , 'home' )))
2006-12-11 00:44:18 +01:00
{
2008-03-21 21:11:59 +01:00
$this -> tpl -> set_var ( $app_data );
2008-08-06 09:33:36 +02:00
2008-03-21 21:11:59 +01:00
if ( $i < $max_icons )
{
$this -> tpl -> set_var ( $app_data );
if ( $GLOBALS [ 'egw_info' ][ 'user' ][ 'preferences' ][ 'common' ][ 'navbar_format' ] != 'text' )
{
$this -> tpl -> fp ( 'app_icons' , 'app_icon_block' , true );
}
if ( $GLOBALS [ 'egw_info' ][ 'user' ][ 'preferences' ][ 'common' ][ 'navbar_format' ] != 'icons' )
{
$this -> tpl -> fp ( 'app_titles' , 'app_title_block' , true );
}
}
else // generate extra icon layer shows icons and/or text
{
$this -> tpl -> fp ( 'app_extra_icons' , 'app_extra_block' , true );
}
$i ++ ;
2006-12-11 00:44:18 +01:00
}
2008-03-21 21:11:59 +01:00
}
// settings for the extra icons dif
if ( $i <= $max_icons ) // no extra icon div
{
2006-12-17 14:14:16 +01:00
$this -> tpl -> set_var ( 'app_extra_icons_div' , '' );
$this -> tpl -> set_var ( 'app_extra_icons_icon' , '' );
2008-03-21 21:11:59 +01:00
}
else
{
2006-12-17 14:14:16 +01:00
$var [ 'lang_close' ] = lang ( 'Close' );
$var [ 'lang_show_more_apps' ] = lang ( 'show_more_apps' );
2008-03-21 21:11:59 +01:00
}
2008-08-06 09:33:36 +02:00
if ( $GLOBALS [ 'egw_info' ][ 'user' ][ 'preferences' ][ 'common' ][ 'start_and_logout_icons' ] != 'no' &&
2008-03-21 21:11:59 +01:00
$GLOBALS [ 'egw_info' ][ 'user' ][ 'userid' ] != 'anonymous' )
{
2006-12-11 00:44:18 +01:00
$this -> tpl -> set_var ( $apps [ 'logout' ]);
if ( $GLOBALS [ 'egw_info' ][ 'user' ][ 'preferences' ][ 'common' ][ 'navbar_format' ] != 'text' )
{
2008-03-21 21:11:59 +01:00
$this -> tpl -> fp ( 'app_icons' , 'app_icon_block' , true );
2006-12-11 00:44:18 +01:00
}
if ( $GLOBALS [ 'egw_info' ][ 'user' ][ 'preferences' ][ 'common' ][ 'navbar_format' ] != 'icons' )
{
2008-03-21 21:11:59 +01:00
$this -> tpl -> fp ( 'app_titles' , 'app_title_block' , true );
2006-12-11 00:44:18 +01:00
}
2008-03-21 21:11:59 +01:00
}
2008-08-06 09:33:36 +02:00
2008-03-21 21:11:59 +01:00
if ( $GLOBALS [ 'egw_info' ][ 'user' ][ 'preferences' ][ 'common' ][ 'navbar_format' ] == 'icons' )
{
2008-08-06 09:33:36 +02:00
$var [ 'app_titles' ] = '<td colspan="' . $max_icons . '"> </td>' ;
2008-03-21 21:11:59 +01:00
}
2011-07-06 09:19:54 +02:00
// mobile support
2011-07-09 18:35:18 +02:00
$var [ 'menu1top' ] = html :: $ua_mobile ? 0 : 114 ;
$var [ 'menu2top' ] = html :: $ua_mobile ? 0 : 105 ;
2011-07-06 09:19:54 +02:00
2008-03-21 21:11:59 +01:00
return $var ;
}
2008-08-06 09:33:36 +02:00
2008-03-21 21:11:59 +01:00
/**
2008-08-06 09:33:36 +02:00
* Add menu items to the topmenu template class to be displayed
*
* @ param array $app application data
* @ param mixed $alt_label string with alternative menu item label default value = null
2008-03-21 21:11:59 +01:00
* @ param string $urlextra string with alternate additional code inside < a >- tag
* @ access protected
* @ return void
*/
2008-08-06 09:33:36 +02:00
function _add_topmenu_item ( array $app_data , $alt_label = null )
2008-03-21 21:11:59 +01:00
{
2008-08-06 09:33:36 +02:00
$_item [ 'url' ] = $app_data [ 'url' ];
$_item [ 'urlextra' ] = $app_data [ 'target' ];
$_item [ 'label' ] = ( $alt_label ? $alt_label : $app_data [ 'title' ]);
2010-07-27 16:29:20 +02:00
$this -> tplsav2 -> menuitems [] = $_item ;
2008-03-21 21:11:59 +01:00
$this -> tplsav2 -> icon_or_star = $GLOBALS [ 'egw_info' ][ 'server' ][ 'webserver_url' ] . '/phpgwapi/templates/' . $this -> template . '/images' . '/orange-ball.png' ;
}
2008-08-06 09:33:36 +02:00
2008-03-21 21:11:59 +01:00
/**
2008-08-06 09:33:36 +02:00
* Add info items to the topmenu template class to be displayed
*
2008-03-21 21:11:59 +01:00
* @ param string $content html of item
* @ access protected
* @ return void
*/
function _add_topmenu_info_item ( $content )
{
$this -> tplsav2 -> menuinfoitems [] = $content ;
}
2008-08-06 09:33:36 +02:00
2008-03-21 21:11:59 +01:00
/**
* Display the string with html of the topmenu if its enabled
2008-08-06 09:33:36 +02:00
*
* @ param array $vars
* @ param array $apps
* @ return string
2008-03-21 21:11:59 +01:00
*/
2012-03-04 14:33:10 +01:00
function topmenu ( array $vars , array $apps )
2008-03-21 21:11:59 +01:00
{
2009-12-17 19:07:59 +01:00
$this -> tplsav2 -> menuitems = array ();
$this -> tplsav2 -> menuinfoitems = array ();
2008-08-06 09:33:36 +02:00
2010-06-07 13:49:16 +02:00
parent :: topmenu ( $vars , $apps );
2010-12-19 22:17:37 +01:00
2007-11-22 09:29:16 +01:00
$this -> tplsav2 -> assign ( 'info_icons' , $this -> topmenu_icon_arr );
2008-08-06 09:33:36 +02:00
2007-11-22 09:29:16 +01:00
return $this -> tplsav2 -> fetch ( 'topmenu.tpl.php' );
2008-03-21 21:11:59 +01:00
}
2008-08-06 09:33:36 +02:00
2008-03-21 21:11:59 +01:00
/**
2008-08-06 09:33:36 +02:00
* called by hooks to add an icon in the topmenu info location
*
2008-03-21 21:11:59 +01:00
* @ param string $id unique element id
* @ param string $icon_src src of the icon image . Make sure this nog height then 18 pixels
* @ param string $iconlink where the icon links to
* @ param booleon $blink set true to make the icon blink
* @ param mixed $tooltip string containing the tooltip html , or null of no tooltip
* @ access public
* @ return void
*/
function topmenu_info_icon ( $id , $icon_src , $iconlink , $blink = false , $tooltip = null )
{
$icon_arr [ 'id' ] = $id ;
$icon_arr [ 'blink' ] = $blink ;
$icon_arr [ 'link' ] = $iconlink ;
$icon_arr [ 'image' ] = $icon_src ;
2008-08-06 09:33:36 +02:00
2008-03-21 21:11:59 +01:00
if ( ! is_null ( $tooltip ))
{
$icon_arr [ 'tooltip' ] = html :: tooltip ( $tooltip );
}
2008-08-06 09:33:36 +02:00
2008-03-21 21:11:59 +01:00
$this -> topmenu_icon_arr [] = $icon_arr ;
}
2008-08-06 09:33:36 +02:00
2008-03-21 21:11:59 +01:00
/**
* Returns the html from the closing div of the main application area to the closing html - tag
*
* @ return string html or null if no footer needed / wanted
*/
function footer ()
{
static $footer_done ;
if ( $footer_done ++ ) return ; // prevent multiple footers, not sure we still need this (RalfBecker)
2008-08-06 09:33:36 +02:00
2008-03-21 21:11:59 +01:00
if ( ! isset ( $GLOBALS [ 'egw_info' ][ 'flags' ][ 'nofooter' ]) || ! $GLOBALS [ 'egw_info' ][ 'flags' ][ 'nofooter' ])
{
2006-12-11 00:44:18 +01:00
// get the (depricated) application footer
$content = $this -> _get_app_footer ();
2008-08-06 09:33:36 +02:00
2006-12-11 00:44:18 +01:00
// run the hook navbar_end
// ToDo: change to return the content
ob_start ();
$GLOBALS [ 'egw' ] -> hooks -> process ( 'navbar_end' );
$content .= ob_get_contents ();
ob_end_clean ();
2008-08-06 09:33:36 +02:00
2006-12-11 00:44:18 +01:00
// eg. javascript, which need to be at the end of the page
if ( $GLOBALS [ 'egw_info' ][ 'flags' ][ 'need_footer' ])
{
2008-03-21 21:11:59 +01:00
$content .= $GLOBALS [ 'egw_info' ][ 'flags' ][ 'need_footer' ];
2006-12-11 00:44:18 +01:00
}
2008-08-06 09:33:36 +02:00
2006-12-11 00:44:18 +01:00
// do the template sets footer, former parse_navbar_end function
// this closes the application area AND renders the closing body- and html-tag
2009-05-01 09:55:18 +02:00
if ( self :: $navbar_done )
2006-12-11 00:44:18 +01:00
{
2010-11-18 09:08:58 +01:00
if ( ! is_a ( $this -> tpl , 'Template' )) $this -> tpl = new Template ( EGW_TEMPLATE_DIR );
2008-03-21 21:11:59 +01:00
$this -> tpl -> set_file ( array ( 'footer' => 'footer.tpl' ));
$this -> tpl -> set_var ( $this -> _get_footer ());
$content .= $this -> tpl -> fp ( 'out' , 'footer' );
2006-12-11 00:44:18 +01:00
}
2006-12-20 10:24:38 +01:00
elseif ( ! isset ( $GLOBALS [ 'egw_info' ][ 'flags' ][ 'noheader' ]) || ! $GLOBALS [ 'egw_info' ][ 'flags' ][ 'noheader' ])
{
2008-03-21 21:11:59 +01:00
$content .= " </body> \n </html> \n " ; // close body and html tag, eg. for popups
}
return $content ;
}
}
2008-08-06 09:33:36 +02:00
2008-03-21 21:11:59 +01:00
/**
* Parses one sidebox menu and add ' s the html to $this -> sidebox_content for later use by $this -> navbar
*
* @ param string $appname
* @ param string $menu_title
* @ param array $file
*/
function sidebox ( $appname , $menu_title , $file )
2007-05-17 14:31:18 +02:00
{
2008-03-21 21:11:59 +01:00
if (( ! $appname || ( $appname == $GLOBALS [ 'egw_info' ][ 'flags' ][ 'currentapp' ] && $file )) && is_object ( $this -> tpl ))
{
$this -> tpl -> set_var ( 'lang_title' , $menu_title );
$this -> sidebox_content .= $this -> tpl -> fp ( 'out' , 'extra_blocks_header' );
2008-08-06 09:33:36 +02:00
2008-03-21 21:11:59 +01:00
foreach ( $file as $text => $url )
{
$this -> sidebox_content .= $this -> _sidebox_menu_item ( $url , $text );
}
$this -> sidebox_content .= $this -> tpl -> parse ( 'out' , 'extra_blocks_footer' );
}
}
2008-08-06 09:33:36 +02:00
2008-03-21 21:11:59 +01:00
/**
* Return a sidebox menu item
*
* @ internal PHP5 protected
* @ param string $item_link
* @ param string $item_text
* @ return string
*/
function _sidebox_menu_item ( $item_link = '' , $item_text = '' )
{
if ( $item_text === '_NewLine_' || $item_link === '_NewLine_' )
{
return $this -> tpl -> parse ( 'out' , 'extra_block_spacer' );
}
2008-08-06 09:33:36 +02:00
if ( strtolower ( $item_text ) == 'grant access' && $GLOBALS [ 'egw_info' ][ 'server' ][ 'deny_user_grants_access' ])
2008-03-21 21:11:59 +01:00
{
return ;
}
2008-08-06 09:33:36 +02:00
2008-03-21 21:11:59 +01:00
$var [ 'icon_or_star' ] = '<img class="sideboxstar" src="' . $GLOBALS [ 'egw_info' ][ 'server' ][ 'webserver_url' ] . '/phpgwapi/templates/' . $this -> template . '/images' . '/orange-ball.png" width="9" height="9" alt="ball"/>' ;
$var [ 'target' ] = '' ;
if ( is_array ( $item_link ))
2007-05-17 14:31:18 +02:00
{
2008-03-21 21:11:59 +01:00
if ( isset ( $item_link [ 'icon' ]))
{
$app = isset ( $item_link [ 'app' ]) ? $item_link [ 'app' ] : $GLOBALS [ 'egw_info' ][ 'flags' ][ 'currentapp' ];
2009-11-18 21:00:26 +01:00
$var [ 'icon_or_star' ] = $item_link [ 'icon' ] ? '<img style="margin:0px 2px 0px 2px; height: 16px;" src="' . common :: image ( $app , $item_link [ 'icon' ]) . '"/>' : False ;
2008-03-21 21:11:59 +01:00
}
$var [ 'lang_item' ] = isset ( $item_link [ 'no_lang' ]) && $item_link [ 'no_lang' ] ? $item_link [ 'text' ] : lang ( $item_link [ 'text' ]);
$var [ 'item_link' ] = $item_link [ 'link' ];
if ( $item_link [ 'target' ])
{
2008-08-06 09:33:36 +02:00
if ( strpos ( $item_link [ 'target' ], 'target=' ) !== false )
2008-03-21 21:11:59 +01:00
{
$var [ 'target' ] = $item_link [ 'target' ];
2008-08-06 09:33:36 +02:00
}
2008-03-21 21:11:59 +01:00
else
{
$var [ 'target' ] = ' target="' . $item_link [ 'target' ] . '"' ;
}
}
}
else
{
$var [ 'lang_item' ] = lang ( $item_text );
$var [ 'item_link' ] = $item_link ;
}
$this -> tpl -> set_var ( $var );
2008-08-06 09:33:36 +02:00
2008-03-21 21:11:59 +01:00
$block = 'extra_block_row' ;
if ( $var [ 'item_link' ] === False )
{
$block .= $var [ 'icon_or_star' ] === False ? '_raw' : '_no_link' ;
2007-05-17 14:31:18 +02:00
}
2008-03-21 21:11:59 +01:00
return $this -> tpl -> parse ( 'out' , $block );
2007-05-17 14:31:18 +02:00
}
2010-12-19 22:17:37 +01:00
2010-06-08 00:06:35 +02:00
/**
* Return javascript ( eg . for onClick ) to open manual with given url
2010-12-19 22:17:37 +01:00
*
2010-06-08 00:06:35 +02:00
* @ param string $url
* @ return string
*/
function open_manual_js ( $url )
{
return " egw_openWindowCentered2(' $url ','manual',800,600,'yes') " ;
}
2007-01-09 23:44:30 +01:00
}