Basically, there are several variables that may be passed to that function. They are listed in the order they need to be passed. The values written in parenthesis are the default values if you don't pass anything. So, for instance, if you don't pass anything in the third slot (where it says " [boolean $doyestoday = false]"), then $doyestoday will be false. Since you want it to be true, you would pass the word "true" (no quotes) in the third slot (as in your exampe above):
PHP Code:
vbdate($this->registry->options['dateformat'], $this->post['lastactivity'], true);
$this->registry->options['dateformat'] means to use the dataformat that you set in your options. If you need that to be changed, as the API says, you would use the same syntax as PHP's
date() function.