}
/* {{{ proto int mcal_reopen(int stream_id, string calendar [, int options])
- Reopen MCAL stream to new calendar */
+ Reopen MCAL stream to a new calendar */
PHP_FUNCTION(mcal_reopen)
{
zval **streamind, **calendar, **options;
}
/* }}} */
-
/* {{{ proto int mcal_expunge(int stream_id)
- Delete all messages marked for deletion */
+ Delete all events marked for deletion */
PHP_FUNCTION(mcal_expunge)
{
zval **streamind;
}
/* }}} */
-
/* {{{ proto string mcal_create_calendar(int stream_id, string calendar)
Create a new calendar */
-
PHP_FUNCTION(mcal_create_calendar)
{
zval **streamind, **calendar;
}
/* }}} */
-
/* {{{ proto string mcal_rename(int stream_id, string src_calendar, string dest_calendar)
Rename a calendar */
PHP_FUNCTION(mcal_rename_calendar)
/* }}} */
/* {{{ proto string mcal_delete_event(int stream_id, int uid)
- Delete event */
+ Delete an event */
PHP_FUNCTION(mcal_delete_event)
{
zval **streamind, **uid;
}
/* }}} */
-
/* {{{ proto string mcal_event_set_category(int stream_id, string category)
Attach a category to an event */
PHP_FUNCTION(mcal_event_set_category)
/* }}} */
/* {{{ proto string mcal_event_set_recur_monthly_wday(int stream_id, int year, int month, int day, int interval)
- Create a monthy by week recurrence */
+ Create a monthly by week recurrence */
PHP_FUNCTION(mcal_event_set_recur_monthly_wday)
{
zval **streamind, **year, **month, **day, **interval;