Details view and access rights

Hi all,

It seems this is a great scheduler plugin for Wordpress.

I want visitors to be able to make an appointment with me. When a visitor makes an event i want:
-after clicking ‘save’, an confirmation email for visitor and admin
-that only this visitor is able to see his event details in week view, so no detail view for other visitors (privacy). Other visitors only see ‘appointment taken’ in the time slot.

Is this possible (i have some php skills)?

Thanks!

Fred

Hi,
email notification can be added in dhtmlxSchedulerConfigurator.php:

$this->scheduler = new schedulerConnector($this->connection);
$this->scheduler->event->attach("beforeProcessing", array($this, "notification"));

After that you have to add method notification which takes as parameter DataAction object and sends necessary emails. Details about DataAction object are here:
docs.dhtmlx.com/doku.php?id=dhtm … ion_object

To prevent showing details to anyone try to add the follow code into scheduler_include.html:

<script>
scheduler.attachEvent("onBeforeLightbox", function(event_id) {
    var event = scheduler.getEvent(event_id);
    // here is logic to decide if to show details
    // returns true - shows details
    // returns false - doesn't show details
});
</script>

Thanks for your suggestions. However i find the plugin does not what i want it to do.
I paid 40$ (one time fee!) for a super scheduler. It works great !