'Name' => 'name',
'Description' => 'Descr',
'Type' => 'type',
- 'DefaultStatus'=> 'active',
+ 'DefaultStatus' => 'active',
// 'MenuTabs' => 'tabs',
// 'MenuEntries' => 'entries',
'Encoding' => 'encoding',
//
function install_extension($pkg_name)
{
- global $path_to_root, $installed_extensions, $next_extension_id, $Ajax;
+ global $path_to_root, $installed_extensions, $next_extension_id, $Ajax, $db_connections;
$pkg = get_pkg_or_list(array('extension', 'theme', 'chart'), $pkg_name);
if ($pkg) {
'package' => $pkg['Package'],
'version' => $pkg['Version'],
'type' => $pkg['Type'],
- 'active' => true,
+ 'active' => @$pkg['DefaultStatus'] == 'active' ? true : false,
'path' => $pkg['InstallPath'],
);
// if (isset($pkg['MenuTabs']))
// $ext['acc_file'] = $pkg['AccessExtensions'];
if (isset($pkg['SqlScript']))
$ext['sql'] = $pkg['SqlScript'];
+
$local_exts[$ext_id] = $ext;
$ret = update_extensions($local_exts);
+
+ if (($ext['active'] == true) && file_exists($path_to_root.'/'.$ext['path'].'/hooks.php'))
+ {
+ // we need to include the new hooks file to activate extension
+ include_once($path_to_root.'/'.$ext['path'].'/hooks.php');
+ foreach($db_connections as $comp => $db)
+ activate_hooks($ext['package'], $comp);
+ }
+
unlink("$path_to_root/tmp/".$pkg['Filename'].'.pkg');
$Ajax->activate('ext_tbl');
return $ret;