I'm new in using nvault, and I have some questions about timestamp. For ex. yesterday I created 4 values, today 3 values and tomorrow I will create another 6 values.
PHP Code:
public plugin_cfg()
{
set_task(10.0, "prune")
}
public prune()
{
nvault_prune(g_Vault, 0 , get_systime() - (10 * 86400) )
return PLUGIN_HANDLED
}
So, this function will delete all values in 10 days or one by one when the value was created?