getResourcesByType('comboling', array('resourceID' => $_POST['rid'])); if ( count($objs) == 1 ) { $ob = $objs[0]; if (isset($_POST['get_all_data']) && is_numeric($_POST['get_all_data']) ) { $combo_data = array($ob->getMessages(), $ob->getNumberOfSQ()); print json_encode($combo_data); } else if (isset($_POST['save_data']) && is_numeric($_POST['save_data']) ) { if ( isset($_POST['row']) && is_numeric($_POST['row']) && isset($_POST['col']) && is_numeric($_POST['col'])) { if ( isset($_POST['val']) && $_POST['val']==1 ) { $ob->addCombolingElement($_POST['row'], $_POST['col']); } else { $ob->delCombolingElement($_POST['row'], $_POST['col']); } } $save_message = $ob->actionSaveCompile(); print json_encode($save_message); } } } ?>