mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-06-27 21:32:46 +02:00
allow apps to implement further fsck methods
This commit is contained in:
parent
71456ff8ef
commit
27748e4f50
@ -109,6 +109,13 @@ class sqlfs_utils extends sqlfs_stream_wrapper
|
|||||||
$msgs = array_merge($msgs, self::fsck_fix_unconnected($check_only));
|
$msgs = array_merge($msgs, self::fsck_fix_unconnected($check_only));
|
||||||
$msgs = array_merge($msgs, self::fsck_fix_no_content($check_only));
|
$msgs = array_merge($msgs, self::fsck_fix_no_content($check_only));
|
||||||
|
|
||||||
|
foreach ($GLOBALS['egw']->hooks->process(array(
|
||||||
|
'location' => 'fsck',
|
||||||
|
'check_only' => $check_only)
|
||||||
|
) as $app => $app_msgs)
|
||||||
|
{
|
||||||
|
$msgs = array_merge($msgs, $app_msgs);
|
||||||
|
}
|
||||||
return $msgs;
|
return $msgs;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user