Misc: Database class integration.

This commit is contained in:
Nate
2019-08-28 21:02:08 -06:00
parent 41ce051534
commit c660b27096
23 changed files with 403 additions and 396 deletions
+18 -17
View File
@@ -29,27 +29,28 @@ if ($domains_processed == 1) {
//update the notifications table
if (is_array($_SESSION['switch']['scripts'])) {
$sql = "select count(*) as num_rows from v_notifications ";
$sql = "select count(*) from v_notifications ";
$database = new database;
$num_rows = $database->select($sql, null, 'column');
if ($row['num_rows'] == 0) {
$sql = "insert into v_notifications ";
$sql .= "(";
$sql .= "notification_uuid, ";
$sql .= "project_notifications ";
$sql .= ")";
$sql .= "values ";
$sql .= "(";
$sql .= "'".uuid()."', ";
$sql .= "'false' ";
$sql .= ")";
$database = new database;
$database->execute($sql, null);
unset($sql);
if ($num_rows == 0) {
//build insert array
$array['notifications'][0]['notification_uuid'] = uuid();
$array['notifications'][0]['project_notifications'] = 'false';
//grant temporary permissions
$p = new permissions;
$p->add('notification_add', 'temp');
//execute insert
$database = new database;
$database->app_name = 'notifications';
$database->app_uuid = 'e746fbcb-f67f-4e0e-ab64-c414c01fac11';
$database->save($array);
unset($array);
//revoke temporary permissions
$p->delete('notification_add', 'temp');
}
unset($prep_statement, $row);
unset($sql, $num_rows);
}
}
?>
?>