// XXX TODO
-function setSynapse($src,$dst,$weight) {
+function setSynapse($params){
global $db,$node,$error,$error_messages;
- if ((!is_numeric($src)) or (!is_numeric($dst)) or (!is_numeric($weight))) {
+ if ((!is_numeric($params['src'])) or (!is_numeric($params['dst'])) or (!is_numeric($params['weight']))) {
return false;
}
+ $src=$params['src'];
+ $dst=$params['dst'];
+ $weight=$params['weight'];
// if already exists
$q="select src from neurons where dst ='$dst' and src = '$src'";
<?php
// Setting weight of the synapse.
-// Synapse is connection betwenn current node and logged user
+// Synapse is connection between current node and logged user
function set_synapse_weight() {
global $db,$error,$node,$permissions,$types;
if (!empty($_POST['synapse_weight'])) {
- $params['synapse_weight']=$_POST['synapse_weight'];
- $params['from']=$_SESSION['user_id'];
- $params['to']=$node['node_id'];
+ $params['weight']=$_POST['synapse_weight'];
+ $params['src']=$_SESSION['user_id'];
+ $params['dst']=$node['node_id'];
nodes::setSynapse($params);
return true;