forked from extern/egroupware
Add link to find and register all application hooks
This commit is contained in:
parent
0abd9582cd
commit
374b65e0b8
@ -230,6 +230,14 @@ else
|
|||||||
$GLOBALS['egw_setup']->html->show_header(lang('Application Management'),False,'config',$GLOBALS['egw_setup']->ConfigDomain . '(' . $GLOBALS['egw_domain'][$GLOBALS['egw_setup']->ConfigDomain]['db_type'] . ')');
|
$GLOBALS['egw_setup']->html->show_header(lang('Application Management'),False,'config',$GLOBALS['egw_setup']->ConfigDomain . '(' . $GLOBALS['egw_domain'][$GLOBALS['egw_setup']->ConfigDomain]['db_type'] . ')');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if(@get_var('hooks', Array('GET')))
|
||||||
|
{
|
||||||
|
// Find & register all application hooks
|
||||||
|
foreach($setup_info as $appname => $info) {
|
||||||
|
$GLOBALS['egw_setup']->register_hooks($appname);
|
||||||
|
}
|
||||||
|
echo lang('All hooks registered') . '<br />';
|
||||||
|
}
|
||||||
$detail = get_var('detail',Array('GET'));
|
$detail = get_var('detail',Array('GET'));
|
||||||
$resolve = get_var('resolve',Array('GET'));
|
$resolve = get_var('resolve',Array('GET'));
|
||||||
if(@$detail)
|
if(@$detail)
|
||||||
|
@ -135,6 +135,7 @@ class setup_html
|
|||||||
{
|
{
|
||||||
$btn_logout = '<a href="index.php?FormLogout=' . $logoutfrom . '" class="link">' . lang('Logout').'</a>';
|
$btn_logout = '<a href="index.php?FormLogout=' . $logoutfrom . '" class="link">' . lang('Logout').'</a>';
|
||||||
$check_install = '<a class="textsidebox" href="check_install.php">'.lang('Check installation').'</a>';
|
$check_install = '<a class="textsidebox" href="check_install.php">'.lang('Check installation').'</a>';
|
||||||
|
$register_hooks = '<a class="textsidebox" href="applications.php?hooks=1">'.lang('Find and Register all Application Hooks').'</a>';
|
||||||
}
|
}
|
||||||
|
|
||||||
$GLOBALS['setup_tpl']->set_var('lang_setup', lang('setup'));
|
$GLOBALS['setup_tpl']->set_var('lang_setup', lang('setup'));
|
||||||
@ -161,6 +162,7 @@ class setup_html
|
|||||||
'indexbutton' => $index_btn,
|
'indexbutton' => $index_btn,
|
||||||
'indeximg' => $index_img,
|
'indeximg' => $index_img,
|
||||||
'check_install' => $check_install,
|
'check_install' => $check_install,
|
||||||
|
'register_hooks'=> $register_hooks,
|
||||||
'main_menu' => lang('Setup Main Menu'),
|
'main_menu' => lang('Setup Main Menu'),
|
||||||
'user_login' => lang('Back to user login')
|
'user_login' => lang('Back to user login')
|
||||||
));
|
));
|
||||||
|
@ -50,6 +50,7 @@ after retrieving the file, put it into place as the header.inc.php. then, click
|
|||||||
all applications setup en all applications
|
all applications setup en all applications
|
||||||
all core tables and the admin and preferences applications setup en all core tables and the admin and preferences applications
|
all core tables and the admin and preferences applications setup en all core tables and the admin and preferences applications
|
||||||
all exit codes of the command line interface setup en all exit codes of the command line interface
|
all exit codes of the command line interface setup en all exit codes of the command line interface
|
||||||
|
all hooks registered setup en All hooks registered
|
||||||
all languages (incl. not listed ones) setup en all languages (incl. not listed ones)
|
all languages (incl. not listed ones) setup en all languages (incl. not listed ones)
|
||||||
all users setup en All Users
|
all users setup en All Users
|
||||||
allow authentication via cookie setup en Allow authentication via cookie
|
allow authentication via cookie setup en Allow authentication via cookie
|
||||||
|
@ -72,6 +72,9 @@
|
|||||||
<td width="20" align="center" valign="middle" class="textSidebox">{indeximg}</td><td class="textSidebox">{indexbutton}</td>
|
<td width="20" align="center" valign="middle" class="textSidebox">{indeximg}</td><td class="textSidebox">{indexbutton}</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
|
<tr class="divSideboxEntry">
|
||||||
|
<td width="20" align="center" valign="middle" class="textSidebox"><img src="../phpgwapi/templates/idots/images/orange-ball.png" alt="ball" /></td><td class="textSidebox">{register_hooks}</td>
|
||||||
|
</tr>
|
||||||
<tr class="divSideboxEntry">
|
<tr class="divSideboxEntry">
|
||||||
<td width="20" align="center" valign="middle" class="textSidebox"><img src="../phpgwapi/templates/idots/images/orange-ball.png" alt="ball" /></td><td class="textSidebox">{logoutbutton}</td>
|
<td width="20" align="center" valign="middle" class="textSidebox"><img src="../phpgwapi/templates/idots/images/orange-ball.png" alt="ball" /></td><td class="textSidebox">{logoutbutton}</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
Loading…
Reference in New Issue
Block a user