NxTIC/public_html/test.php

54 lines
957 B
PHP
Raw Normal View History

2016-11-22 10:06:03 +00:00
<?php define('__ROOT__', dirname(__DIR__));
require_once __ROOT__.'/autoloader.php';
debug();
2016-11-22 10:06:03 +00:00
use \lightdb\core\lightdb;
$sl = new lightdb('subject');
$cl = new lightdb('contact');
2016-11-22 16:17:04 +00:00
$LOG = true;
if( $LOG ){
$sub = $sl->fetch(1);
foreach($sub['relations'] as $rel){
if( $rel['idA'] == 1 )
$Aname = $sub['subject']['name'];
else
$Aname = $cl->fetch((int)$rel['idA'])['name'];
echo $Aname.'('.$rel['idA'].') + '.$cl->fetch((int)$rel['idB'])['name'].'('.$rel['idB'].') = '.$rel['type']."<br>";
}
}else{
/* [1] Remove contacts
=========================================================*/
$sub = $sl->fetch(1);
$cl->deleteAll( $sub['contacts'] );
/* [2] Reset subject
=========================================================*/
unset( $sub['contacts'] );
unset( $sub['relations'] );
$sub['subject']['surveys'] = [];
2016-11-22 16:17:04 +00:00
$sl->delete(1);
$sl->insert(1, $sub);
2016-11-22 16:17:04 +00:00
}
2016-11-22 16:17:04 +00:00
$sl->close();
$cl->close();
2016-11-22 10:06:03 +00:00
?>