Parse rec_type in PHP

Hi, I am currently working with the Scheduler and need to be able to parse rec_type to show if certain times conflict with pre-existing repeating events in the database. Essentially, if someone is looking at Friday the 18th, I need to be able to indicate that there is an event that day at x time, via PHP. Is there a way to do this already, or will I have to construct a class to parse it on my own?

Hello,
currently scheduler does not provide functionality for parsing recurring events on server side.
However, you may check scheduler wordpress plugin on github, it contains such helper class
github.com/DHTMLX/scheduler-wor … Helper.php
usage:

$helper = new SchedulerHelper($mysql_connection, $table_name); $events = $helper->get_dates($from, $to);