summaryrefslogtreecommitdiffstats
path: root/modules-available/dozmod/hooks/main-warning.inc.php
blob: ffa8769246faa8f98adb94304fac51b7b4cdddbe (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
<?php

/*
 * Show notification in main window if there are images that should be deleted and are waiting for confirmation
 */

$res = Database::queryFirst("SELECT Count(*) AS cnt FROM sat.imageversion WHERE deletestate = 'SHOULD_DELETE'", array(), true);
if (isset($res['cnt']) && $res['cnt'] > 0) {
	Message::addInfo('dozmod.images-pending-delete-exist', true, $res['cnt']);
}
unset($res);